Problems making an accurate Visual Studio scheme for Vim (vim scheme specialist needed) .

Posted by janoChen on Stack Overflow See other posts from Stack Overflow or by janoChen
Published on 2010-06-16T14:10:02Z Indexed on 2010/06/16 14:12 UTC
Read the original article Hit count: 115

Filed under:
|

I'm trying to make an accurate Visual Studio scheme.

I set hi function to blood color (#9A1102) for the "CSS function" (selector).

But now the brackets with properties (id, class) in html elements also have blood color: (ironically the same color here in Stackoverflow). But I want them blue (#2902FC)

e.g.:

<div class="first">
     <div id="nopic">

Sample of code:

  " Syntax highlighting
    hi Comment      guifg=#777777 gui=none
    hi Todo         guifg=#8f8f8f gui=none
    hi Constant     guifg=#e5786d gui=none
    hi String       guifg=#2902FC gui=none
    hi Identifier   guifg=#2902FC gui=none
    hi Function     guifg=#9A1102 gui=none
    hi Type         guifg=#EF2811 gui=none
    hi Statement    guifg=#9A1102 gui=none
    hi Keyword      guifg=#9A1102 gui=none
    hi PreProc      guifg=#2902FC gui=none
    hi Number       guifg=#2902FC gui=none
    hi Special      guifg=#2902FC gui=none

    " Bottom
    hi Question guifg=white gui=none
    hi Question ctermfg=white term=none
    hi ModeMsg  guifg=white gui=none

© Stack Overflow or respective owner

Related posts about vim

Related posts about Scheme