Convert every matching regex (or line) to lowercase or uppercase using vims gsub command. In normal mode this will convert the entire document to lowercase (ie downcase all capitals):
:%s/[A-Z]/\L&/g
Likewise for to upcase:
:%s/[a-z]/\U&/g
Convert every matching regex (or line) to lowercase or uppercase using vims gsub command. In normal mode this will convert the entire document to lowercase (ie downcase all capitals):
:%s/[A-Z]/\L&/g
Likewise for to upcase:
:%s/[a-z]/\U&/g
Dear spammers, you may enjoy posting on auto blog instead
Switch to mobile version