-
I would like to be able to delete the last word of the query I'm typing Example: I'm quite new to Neovim, and I'm sure there are multiple solutions here. What do you recommend? I saw this solution: #1144, but these are two pretty complex keybinds, I'd rather have something simple. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Fzf comes with default binds to help with this:
ctrl-w will delete the last word, ctrl-u deletes the entire line, there is also alt-b to go backwards without deleting, etc, see Fzf-lua matches these defaults but you can also modify these if you wish by setting new binds under |
Beta Was this translation helpful? Give feedback.
Fzf comes with default binds to help with this:
ctrl-w will delete the last word, ctrl-u deletes the entire line, there is also alt-b to go backwards without deleting, etc, see
man fzf
for the complete list of default binds.Fzf-lua matches these defaults but you can also modify these if you wish by setting new binds under
keymap.fzf
.