Fix double-f binding in neovim #16
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
There is a
<leader>ff
binding added to neovim currently, which I can not seem to remove. It is set toformat
- so presumably set by formatter.nvim, but this in turn does not seem to set the keymap?It is somewhat of an issue since it delays quickly opening my file search
<leader>f
- since it waits the vim-timeout period for a secondf
before finally opening the file finder.File search in neovim is now on
<leader>ff
, with<leader>f
only opening the +find group. So everything is working as expected. (Formatting with lsp is mapped to<localleader>ll
instead).