Will Bush
Will Bush
`evil-ex-nohighlight` should work. ``` evil-ex-nohighlight is an interactive compiled Lisp function in ‘evil-search.el’. ```
I also ran into this and would prefer that it selected the master window after zooming from a non-master window. This will work despite multiple windows with the same buffer...
Here is a simple `init.el` files that reproduces the issue: ```emacs-lisp ;;; init.el -*- lexical-binding: t; -*- (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) (package-initialize) ;; bootstrap use-package with package.el...
I tested `with-eval-after-load 'evil` on the above test `init.el` file I shared and it works for me.
Yea I mean it works the same as loading evil before doing the key bindings. It has the same performance when I tested with `time emacs -kill`.
Here are some reproducible steps I did to get a large amount of diffs: ``` git clone https://github.com/NixOS/nixpkgs.git cd nixpkgs sed -i -e 's/nixpkgs/hello/g' $(find . -name '*.nix') git status...
Does `magit-refresh` after disabling magit-delta-mode fix the syntax highlighting for you guys? For me either I lose all color or the color doesn't look right until I `magit-refresh` when toggling...
This might be related to an issue I have been running into when going through [sudoku tutorial](https://github.com/PistonDevelopers/Piston-Tutorials/tree/master/sudoku). I have been trying to figure out why my y-axis is off the...
I just countered the same issue in version `0.16`. I haven't tried the work around yet.
I decided to go with the approach shared here: https://www.reddit.com/r/xmonad/comments/glkc6r/can_xmonad_apply_window_decorations_nofrillsdeco/fqy1vda/ Here's the commit where I added it to my config in case anyone is wondering how to add and use...