Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

vim: select your text, press the ~ key until you get the case you want ..


> until you get the case you want

The GP was talking about a particular type of formatting:

* https://en.wikipedia.org/wiki/Title_case


Yeah, I love vim, but that’s not its forte


    : help case
To turn one line into title caps, make every first letter of a word uppercase:

    :s/\v<(.)(\w*)/\u\1\L\2/g


That's not title case - you don't capitalize words such as a, the, of, etc. unless they are at the beginning of the title.


> That's not title case - you don't capitalize words such as a, the, of, etc. unless they are at the beginning of the title.

Exactly. Capitalizing every letter is the lazy, half-ass pseudo title case that I always have to correct. Unfortunately its becoming normalized because many major companies that should know better don't even bother to do it right.


You could also use the vim :%!python3 your_script.py (where your_script.py does the work to format the text) command that takes the text of the buffer as stdin to the script and replaces the buffer contents with stdout of the script. This can also be combined with visual mode linewise to only replace specific lines of the buffer (must work on entire lines selected).




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: