I want do disable change-to-lowercase key map in Vim. Specifically, the command mentioned here:
Visual select the text, then
u
for lowercase.
I find out from here that I can add :unmap u
to .vimrc
, but it will possibly disable undo command, which I don't want.
How can I disable u
in visual selection mode?