With this .emacs file:
(use-package evil
:load-path "~/evil/"
:init
(setq evil-want-keybinding nil)
(setq evil-want-C-u-scroll t)
(setq evil-search-module 'evil-search)
:config
(evil-mode 1)
)
(use-package evil-collection
:ensure t
:init
(setq evil-collection-setup-minibuffer t)
:config
(evil-collection-init)
)
Before commit a8663a2, I can cancel a search (with '/') by pressing ESC twice. However, after that commit, I cannot cancel a search with ESC anymore. I have to Ctrl G to cancel a search.
With this .emacs file:
Before commit a8663a2, I can cancel a search (with '/') by pressing ESC twice. However, after that commit, I cannot cancel a search with ESC anymore. I have to Ctrl G to cancel a search.