-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
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
Disable ctrl-f bindings in the minibuffer #476
Comments
I read more about (add-hook 'minibuffer-setup-hook
(lambda () (when (not ctrlf--active-p)
(ctrlf-local-mode -1)))) |
I think this should be done by default. There is no good reason for CTRLF to be active in the minibuffer. |
OK, so:
You shouldn't have to disable CTRLF in the minibuffer explicitly for the above to work. |
Hmmm.. That's exactly what I tried in the beginning and it didn't work for me (CTRLF is still called when I press I am using Radian for my config which enables the global mode of CTRLF. The documentation of So if I am understanding this correctly, the CTRLF mode is turned on after the minibuffer mode and the keybindings in |
This is probably a Radian bug, then, so I'll transfer the issue. Radian may have still been on an old commit of CTRLF. I've pushed a new commit to |
Updating worked and remapping |
I use
selectrum
for minibuffer completion and so I rarely need to search for a string in the minibuffer. I would like to disable ctrlf bindings there (to use the key sequences for more useful commands, in that context).Is this possible at all? In particular, it seems that ctrlf bindings override local ones. This might be related to radian-software/ctrlf#62 and radian-software/ctrlf#64, but I am not sure.
The text was updated successfully, but these errors were encountered: