I have the following text:
HELLO TO STACKOVERFLOW
WELCOME TO STACKOVERFLOW
I want the text to be changed as follows:
heLLO TO STACKOVERFLOW
weLCOME TO STACKOVERFLOW
How can I do that in Vim?
Highlight a visual block for the first two colums with CTRL-V
Enter gu
or u
to downcase the selected text, gU
or U
to upcase.