We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduce:
I found that ivy exited but hydra-ivy didn't exit. I changed =evil-escape--escape-normal-state= to
(defun evil-escape--escape-normal-state () "Return the function to escape from normal state." (cond ((and (fboundp 'helm-alive-p) (helm-alive-p)) 'helm-keyboard-quit) ((eq 'ibuffer-mode major-mode) 'ibuffer-quit) ((eq 'image-mode major-mode) 'quit-window) ((evil-escape--is-magit-buffer) 'evil-escape--escape-with-q) ((bound-and-true-p isearch-mode) 'isearch-abort) ((window-minibuffer-p) (kbd "C-g")) (t (lookup-key evil-normal-state-map [escape]))))
And it works. The reason is that hydra-ivy also binds "C-g" to exit.
The text was updated successfully, but these errors were encountered:
Are you still using evil-escape ? If yes and this change has been stable for you, I would be happy to merge this change.
evil-escape
Sorry, something went wrong.
No branches or pull requests
Reproduce:
I found that ivy exited but hydra-ivy didn't exit.
I changed =evil-escape--escape-normal-state= to
And it works. The reason is that hydra-ivy also binds "C-g" to exit.
The text was updated successfully, but these errors were encountered: