code in cold colors, string/comments in warm ones

This commit is contained in:
nojhan 2011-10-28 16:11:38 +02:00
commit 9bbf93ba5a

View file

@ -538,13 +538,13 @@ endif
exe "hi! Normal" .s:fmt_none .s:fg_base0 .s:bg_back
exe "hi! Comment" .s:fmt_ital .s:fg_orange .s:bg_none
exe "hi! Comment" .s:fmt_ital .s:fg_yellow .s:bg_none
" *Comment any comment
exe "hi! Constant" .s:fmt_none .s:fg_cyan .s:bg_none
" *Constant any constant
" String a string constant: "this is a string"
exe "hi! String" .s:fmt_none .s:fg_blue .s:bg_none
exe "hi! String" .s:fmt_none .s:fg_orange .s:bg_none
" Character a character constant: 'c', '\n'
" Number a number constant: 234, 0xff
" Boolean a boolean constant: TRUE, false
@ -555,7 +555,7 @@ exe "hi! Identifier" .s:fmt_none .s:fg_blue .s:bg_none
" Function function name (also: methods for classes)
exe "hi! cppSTL" .s:fmt_ital .s:fg_base1 .s:bg_none
exe "hi! Statement" .s:fmt_none .s:fg_yellow .s:bg_none
exe "hi! Statement" .s:fmt_none .s:fg_blue .s:bg_none
" *Statement any statement
" Conditional if, then, else, endif, switch, etc.
" Repeat for, do, while, etc.