vote up 0 vote down star

Hi,

How do you convert all text in vim to lowercase? Is it even possible?

Thanks, Kenneth

flag

I just have to ask what the use case is for this? :) – lemonad Jul 9 at 9:50
We have a lot of html pages with all characters in uppercase. This saves me time re-typing everything in lowercase. – ksuralta Jul 13 at 5:30
Before the question was edited, it was how to convert of all text in vim to small caps. Obviously, there's a use case for converting text to lowercase. – lemonad Aug 8 at 13:00

4 Answers

vote up 6 vote down check
  1. If you really mean small caps, then no, that is not possible – just as it is’t possible to convert text to bold or italic in any text editor (as opposed to word processor). If you want to convert text to lowercase, create a visual block and press u (or U to convert to uppercase). Tidle (~) in command mode reverses case.

  2. If you want to see all text in Vim in small caps, you might want to look at the guifont option, or type :set guifont=* if your Vim flavour supports GUI font chooser.

link|flag
right, i actually meant lowercase. thanks! – ksuralta Jul 9 at 10:20
2  
I think it's worth mentioning that you don't necessarily have to create a visual block to lowercase a block of text. guu will lowercase a line, and gu[motion] will lowercase that motion's worth of text. Likewise, gUU and gU[motion] work the same way, only for uppercase. – Zachary Murray Jul 9 at 10:28
vote up 0 vote down

Many ways to skin a cat... here's the way I just posted about:


:%s/[A-Z]/\L&/g

Likewise for upper case:


:%s/[A-Z]/\U&/g

I prefer this way because I am using this construct (:%s/[pattern]/replace/g) all the time so it's more natural.

link|flag
vote up 0 vote down

If you are running under a flavor of Unix

:0,$!tr "[A-Z]" "[a-z]"
link|flag
1  
The square brackets are superfluous, and once you remove those, the quotes aren't necessary either. :%!tr A-Z a-z – ephemient Jul 13 at 4:21
vote up 9 vote down

I assume you want lowercase the text. Solution is pretty simple:

ggVGu

Explanation:

  1. gg - goes to first line of text
  2. V - turns on Visual selection, in line mode
  3. G - goes to end of file (at the moment you have whole text selected)
  4. u - lowercase selected area
link|flag
3  
or ggguG if you want to do it without visual selection. :help gu – Al Jul 9 at 11:00

Your Answer

Get an OpenID
or

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