Let's say I'm completing a file with counsel-find-file
. I then press M-o
to show the menu with available actions. If within that menu, I press C-g
, I get the message "C-g is not bound".
The expected behavior would be for the menu to quit (and to go back to where I was completing the file name).
How can I set the behavior I want? (I don't know what is the keymap used by Counsel's menu and also don't know how to quit the menu).
ivy-minibuffer-map
, and it should include(7 . minibuffer-keyboard-quit)
when you view it withC-h v
. – Tyler Jan 22 '20 at 22:36emacs -Q
(no init file)? If not then bisect your init file to find the culprit. – Drew Jan 22 '20 at 22:55