fix x in visual mode nvim

This commit is contained in:
Pim Kunis 2023-02-11 14:54:33 +01:00
parent c093037763
commit 48b447929f
2 changed files with 4 additions and 1 deletions

View file

@ -31,7 +31,6 @@ As an intermediate solution, I can just put the password in keepass...
- More cool plugins :)
- dropdown autocomplete
- fzf in vim? telescope or something
- fix control+x in visual mode
## Long-term TODO

View file

@ -1 +1,5 @@
require('leap').add_default_mappings()
-- Don't remap 'x' in visual mode.
vim.keymap.del({'x', 'o'}, 'x')
vim.keymap.del({'x', 'o'}, 'X')