I want to disable Capslock functionality in Visual Mode. How can I do that?
Ex:
- In Insert Mode, Capslock=On, A should print A.
- In Visual Mode, Capslock=On, A should trigger append text after cursor (not append text to end of current line)
I want to disable Capslock functionality in Visual Mode. How can I do that?
Ex:
What did you mean by "append to next character" in visual selection?
In your vimrc file or vim session, do following (for command mode):
:map A a
If you just meant that selection should be ended and you must be able to append characters at end of the current position, do:
:map A Ctrl+VEsca
Bingo!