fix x in visual mode nvim
This commit is contained in:
parent
c093037763
commit
48b447929f
2 changed files with 4 additions and 1 deletions
|
@ -31,7 +31,6 @@ As an intermediate solution, I can just put the password in keepass...
|
||||||
- More cool plugins :)
|
- More cool plugins :)
|
||||||
- dropdown autocomplete
|
- dropdown autocomplete
|
||||||
- fzf in vim? telescope or something
|
- fzf in vim? telescope or something
|
||||||
- fix control+x in visual mode
|
|
||||||
|
|
||||||
## Long-term TODO
|
## Long-term TODO
|
||||||
|
|
||||||
|
|
|
@ -1 +1,5 @@
|
||||||
require('leap').add_default_mappings()
|
require('leap').add_default_mappings()
|
||||||
|
|
||||||
|
-- Don't remap 'x' in visual mode.
|
||||||
|
vim.keymap.del({'x', 'o'}, 'x')
|
||||||
|
vim.keymap.del({'x', 'o'}, 'X')
|
||||||
|
|
Reference in a new issue