Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I just have to ask what the use case is for this? :) – lemonad Jul 9 '09 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 '09 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 '09 at 13:00
1  
VIM website has the answer: vim.wikia.com/wiki/Switching_case_of_characters Thanks. – fnds Nov 9 '12 at 16:43

6 Answers

up vote 21 down vote accepted
  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.

share|improve this answer
1  
right, i actually meant lowercase. thanks! – ksuralta Jul 9 '09 at 10:20
8  
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 '09 at 10:28

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
share|improve this answer
20  
or ggguG if you want to do it without visual selection. :help gu – DrAl Jul 9 '09 at 11:00
2  
this should be the accepted answer – marcosdsanchez Feb 22 at 1:40
Wow, I love VIM, SO and Google. +1 – Viclib yesterday

Similar to mangledorf's solution, but shorter and layman friendly

:%s/.*/\L&/g

share|improve this answer

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.

share|improve this answer

If you are running under a flavor of Unix

:0,$!tr "[A-Z]" "[a-z]"
share|improve this answer
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 '09 at 4:21
  • Toggle case "HellO" to "hELLo" with g~ then a movement. Uppercase
  • "HellO" to "HELLO" with gU then a movement. Lowercase "HellO" to
  • "hello" with gu then a movement.

For examples and more info please read this: http://vim.wikia.com/wiki/Switching_case_of_characters

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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