PRESFIL

Results 97 comments of PRESFIL

I found a solution for myself in using the Evil custom search. Look like `evil-search` let take into account current input method in Evil: ```elisp (evil-search-module 'evil-search) ``` When I'm...

I checked the issue in the `make emacs` environment. It is still present.

The solution was found for **Emacs 28**. For some reason this doesn't work: ```elisp ;; Emacs Evil mode (use-package evil :ensure t :requires (undo-tree) :init (setq-default evil-want-integration t) ;; This...

Evaluating `(evil-select-search-module 'evil-search-module 'evil-search)` inside `:config` section works: Inside `:config` section ```elisp ;; Emacs Evil mode (use-package evil :ensure t :requires (undo-tree) :init (setq-default evil-want-integration t) ;; This is optional...

Yes, but it doesn't work in `:custom`, but it worked earlier IMHO. I also noticed that `evil-search-modules` and `evil-select-search-module` are not located in `evil-vars`, but all the others are located...