fixed minor syntax issue for gui colors

This commit is contained in:
Reed Esau
2014-01-22 13:35:01 -07:00
parent afc67a5547
commit 9e29313277

View File

@@ -184,10 +184,10 @@ call s:h("DiffText", {"fg": s:dark_blue})
call s:h("SignColumn", {"fg": s:light_green})
" hi Conceal
if has("gui_running")
call s:h("SpellBad", {"gui": "undercurl", "guisp": s.red})
call s:h("SpellCap", {"gui": "undercurl", "guisp": s.light_green})
call s:h("SpellRare", {"gui": "undercurl", "guisp": s.pink})
call s:h("SpellLocal", {"gui": "undercurl", "guisp": s.dark_green})
call s:h("SpellBad", {"gui": "undercurl", "guisp": s:red})
call s:h("SpellCap", {"gui": "undercurl", "guisp": s:light_green})
call s:h("SpellRare", {"gui": "undercurl", "guisp": s:pink})
call s:h("SpellLocal", {"gui": "undercurl", "guisp": s:dark_green})
else
call s:h("SpellBad", {"cterm": "underline", "fg": s:red})
call s:h("SpellCap", {"cterm": "underline", "fg": s:light_green})