I have the following text

HELLO TO STACKOVERFLOW
WELCOME TO STACKOVERFLOW

I want the text to be like this

heLLO TO STACKOVERFLOW
weLCOME TO STACKOVERFLOW
link|improve this question

25% accept rate
feedback

5 Answers

Highlight a visual block for the first two colums with CTRL-V

enter image description here

Enter gu or u to downcase the selected text, gU or U to upcase.

enter image description here

link|improve this answer
5  
or ~ to invert case. Be cautious when sending screenshots, your window is half-transparent, have special care if you have sensible data behind (here no worries) – Benoit Oct 5 '11 at 7:04
1  
@Benoit Yeah I will, but I don't have anything to hide :) Thanks for the edit and the ~ tip. – Jin Oct 5 '11 at 7:09
feedback

While @Jin provided a good answer for interactive use, here's a way to do it in scripting:

to run to every line of the buffer:

:%normal 0gu2l

or you can specify a line range where to apply the command. This will apply for lines 4 and 5:

:4,5normal 0gu2l
link|improve this answer
6  
+1, you can also specify the columns that you want to work with. :%normal 15|gu3l will downcase columns 15 to 17 for all rows. – Jin Oct 5 '11 at 6:57
feedback

In normal mode:

  • if startofline is set (:verb set sol? will tell you) you can use: lguCTRL-VG.
    Detail :
    • l goes to next character
    • gu is the make lowercase operator, expecting a motion
    • CTRL-V specifies that the motion is blockwise
    • G goes to first column in last line.
  • if startofline is not set, then guCTRL-VGl. (l goes to next character, and . repeats the same command).

For changing to uppercase change gu with gU, for switching case ensure that tildeop is set and use ~ instead.

link|improve this answer
Nice explanation of 'startofline' and use of 'tildeop' – Peter Rincker Oct 5 '11 at 13:13
feedback

In addition to answers given by @Benoit, @Jin and @progo:

:%s/^../\L&\E/

see :help sub-replace-special

link|improve this answer
Thanks for reminding me of sub-replace-special – k.parnell Oct 5 '11 at 21:05
feedback

You can use the substitution

:%s/.*\%3c/\L&

that takes advantage of the \%c search pattern atom matching a specific column. Using that atom you can easily adjust pattern to match whatever number of first characters on a line.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.