Vim change case of words
If you want to switch the case in Vim:
gu => lowercase
gU => uppercase
g~ => toogle case
You can also combine with Vim motions like:
g~ip => toogle case for the current paragraph.
If you want to switch the case in Vim:
gu => lowercase
gU => uppercase
g~ => toogle case
You can also combine with Vim motions like:
g~ip => toogle case for the current paragraph.