vote up 2 vote down star

I was inspired by this (number 2) to make my hard-coded strings ugly.

How can I do this in VIM?

Thanks!

flag

78% accept rate
Just wondering; do you hate the string variable type? – Suroot Feb 16 at 1:52
@Suroot: Hard-coded strings should be avoided just as much as "magic" numbers in your source code. Making hard-coded strings ugly just makes them stand out so you can spot them and remove them more easily. – Bill the Lizard Feb 16 at 2:07
I disagree, Bill. Hardcoded strings are sometimes bad for translation purposes but they're not as bad as magic number since they carry their definition in their content. The string "Can't open file" is every bit as good as ERR_CANNOT_OPEN_FILE. – paxdiablo Feb 16 at 2:52
And even for international programs, it's only necessary to translate those strings the user is expected to see. No point doing it for log messages which will only be viewed by the (e.g., English-speaking) developers. – paxdiablo Feb 16 at 2:53

4 Answers

vote up 3 vote down check

The language-based files are stored in $VIMRUNTIME/syntax, one .vim file per language, so that's where you need to go to change things.

For example, my C file is stored in C:\Program Files\Vim\vim70\syntax\c.vim and, if you add the following line near the end, before the let b:current_syntax = "c", you'll get the exact effect you require:

hi String guifg=#ff0000 guibg=#ffff00

For text-based VIM, the ctermfg and ctermbg options need to be used instead, something like:

hi String ctermfg=Red ctermbg=Yellow

I haven't tested these since I only use gvim nowadays.

link|flag
vote up 0 vote down

Many of the color schemes that come with VIM already do this. You can easily make them uglier if you like. :)

link|flag
Doesn't really address the "How can I..." bit of the question, more the "Can I..." :-) – paxdiablo Feb 16 at 2:57
Give me a break. Ok, here ya go. Start up Vim. Go to the edit menu. Choose color schemes. Now try the various schemes until you find one that highlights strings. A lot of them do. Here is one: morning. – Brian Neal Feb 16 at 14:00
sounds like gvim... not vim – ThomasGHenry Mar 19 at 4:11
Correct. I guess I didn't answer your question then. But, unless you are ssh'ed into another box, why would you use vim over gvim? :) – Brian Neal Mar 19 at 13:12
vote up 3 vote down

In your .vimrc:

highlight String guifg=1 guibg=11
link|flag
hm... this might be setup dependant. that doesn't work for me. You may have given me enough to hunt and peck my way through it though. Thanks! – ThomasGHenry Feb 16 at 2:20
That assumes gvim. For the command-line version, use ctermfg and ctermbg. Plus, you need to tuen syntax highlighting on. – Paul Beckingham Feb 16 at 2:23
whew! that's heinous! Thanks :) – ThomasGHenry Feb 16 at 2:35
vote up 0 vote down
highlight clear String
highlight link String Error

A bit over the top IMO, so you might want to not make it permanent.

link|flag

Your Answer

Get an OpenID
or

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