From 9e293132771e4ce408fa1723104605d69f745022 Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Wed, 22 Jan 2014 13:35:01 -0700 Subject: [PATCH] fixed minor syntax issue for gui colors --- colors/pencil.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/colors/pencil.vim b/colors/pencil.vim index 32eb518..c08f33e 100644 --- a/colors/pencil.vim +++ b/colors/pencil.vim @@ -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})