# HG changeset patch # User Steve Losh # Date 1332164745 14400 # Node ID 7d5b26907ce4e4d6de7ddf033fee82930733718c # Parent 5db0de524861f4a33d5587723e87a4c20407cf54 Make the HL utility function script-local. diff -r 5db0de524861 -r 7d5b26907ce4 colors/badwolf.vim --- a/colors/badwolf.vim Fri Mar 09 14:24:17 2012 -0500 +++ b/colors/badwolf.vim Mon Mar 19 09:45:45 2012 -0400 @@ -105,7 +105,7 @@ " }}} " Highlighting Function {{{ -function! HL(group, fg, ...) +function! s:HL(group, fg, ...) " Arguments: group, guifg, guibg, gui, guisp let histring = 'hi ' . a:group . ' ' @@ -157,44 +157,44 @@ " General/UI {{{ -call HL('Normal', 'plain', 'blackgravel') +call s:HL('Normal', 'plain', 'blackgravel') -call HL('Folded', 'mediumgravel', 'bg', 'none') +call s:HL('Folded', 'mediumgravel', 'bg', 'none') -call HL('VertSplit', 'lightgravel', 'bg', 'none') +call s:HL('VertSplit', 'lightgravel', 'bg', 'none') -call HL('CursorLine', '', 'darkgravel', 'none') -call HL('CursorColumn', '', 'darkgravel') -call HL('ColorColumn', '', 'darkgravel') +call s:HL('CursorLine', '', 'darkgravel', 'none') +call s:HL('CursorColumn', '', 'darkgravel') +call s:HL('ColorColumn', '', 'darkgravel') -call HL('MatchParen', 'dalespale', 'darkgravel', 'bold') +call s:HL('MatchParen', 'dalespale', 'darkgravel', 'bold') -call HL('NonText', 'deepgravel', 'bg') -call HL('SpecialKey', 'deepgravel', 'bg') +call s:HL('NonText', 'deepgravel', 'bg') +call s:HL('SpecialKey', 'deepgravel', 'bg') -call HL('Visual', '', 'deepgravel') -call HL('VisualNOS', '', 'deepgravel') +call s:HL('Visual', '', 'deepgravel') +call s:HL('VisualNOS', '', 'deepgravel') -call HL('Search', 'coal', 'dalespale', 'bold') -call HL('IncSearch', 'coal', 'tardis', 'bold') +call s:HL('Search', 'coal', 'dalespale', 'bold') +call s:HL('IncSearch', 'coal', 'tardis', 'bold') -call HL('Underlined', 'fg', '', 'underline') +call s:HL('Underlined', 'fg', '', 'underline') -call HL('StatusLine', 'coal', 'tardis', 'bold') -call HL('StatusLineNC', 'snow', 'deepgravel', 'bold') +call s:HL('StatusLine', 'coal', 'tardis', 'bold') +call s:HL('StatusLineNC', 'snow', 'deepgravel', 'bold') -call HL('Directory', 'dirtyblonde', '', 'bold') +call s:HL('Directory', 'dirtyblonde', '', 'bold') -call HL('Title', 'lime') +call s:HL('Title', 'lime') -call HL('ErrorMsg', 'taffy', 'bg', 'bold') -call HL('MoreMsg', 'dalespale', '', 'bold') -call HL('ModeMsg', 'dirtyblonde', '', 'bold') -call HL('Question', 'dirtyblonde', '', 'bold') -call HL('WarningMsg', 'dress', '', 'bold') +call s:HL('ErrorMsg', 'taffy', 'bg', 'bold') +call s:HL('MoreMsg', 'dalespale', '', 'bold') +call s:HL('ModeMsg', 'dirtyblonde', '', 'bold') +call s:HL('Question', 'dirtyblonde', '', 'bold') +call s:HL('WarningMsg', 'dress', '', 'bold') " This is a ctags tag, not an HTML one. 'Something you can use c-] on'. -call HL('Tag', '', '', 'bold') +call s:HL('Tag', '', '', 'bold') " hi IndentGuides guibg=#373737 " hi WildMenu guifg=#66D9EF guibg=#000000 @@ -202,42 +202,42 @@ " }}} " Gutter {{{ -call HL('LineNr', 'mediumgravel', s:gutter) -call HL('SignColumn', '', s:gutter) -call HL('FoldColumn', 'mediumgravel', s:gutter) +call s:HL('LineNr', 'mediumgravel', s:gutter) +call s:HL('SignColumn', '', s:gutter) +call s:HL('FoldColumn', 'mediumgravel', s:gutter) " }}} " Cursor {{{ -call HL('Cursor', 'coal', 'tardis', 'bold') -call HL('vCursor', 'coal', 'tardis', 'bold') -call HL('iCursor', 'coal', 'tardis', 'none') +call s:HL('Cursor', 'coal', 'tardis', 'bold') +call s:HL('vCursor', 'coal', 'tardis', 'bold') +call s:HL('iCursor', 'coal', 'tardis', 'none') " }}} " Syntax highlighting {{{ " Start with a simple base. -call HL('Special', 'plain') +call s:HL('Special', 'plain') " Comments are slightly brighter than folds, to make 'headers' easier to see. -call HL('Comment', 'gravel') -call HL('Todo', 'snow', 'bg', 'bold') -call HL('SpecialComment', 'snow', 'bg', 'bold') +call s:HL('Comment', 'gravel') +call s:HL('Todo', 'snow', 'bg', 'bold') +call s:HL('SpecialComment', 'snow', 'bg', 'bold') " Strings are a nice, pale straw color. Nothing too fancy. -call HL('String', 'dirtyblonde') +call s:HL('String', 'dirtyblonde') " Control flow stuff is taffy. -call HL('Statement', 'taffy', '', 'bold') -call HL('Keyword', 'taffy', '', 'bold') -call HL('Conditional', 'taffy', '', 'bold') -call HL('Operator', 'taffy', '', 'none') -call HL('Label', 'taffy', '', 'none') -call HL('Repeat', 'taffy', '', 'none') +call s:HL('Statement', 'taffy', '', 'bold') +call s:HL('Keyword', 'taffy', '', 'bold') +call s:HL('Conditional', 'taffy', '', 'bold') +call s:HL('Operator', 'taffy', '', 'none') +call s:HL('Label', 'taffy', '', 'none') +call s:HL('Repeat', 'taffy', '', 'none') " Functions and variable declarations are orange, because plain looks weird. -call HL('Identifier', 'orange', '', 'none') -call HL('Function', 'orange', '', 'none') +call s:HL('Identifier', 'orange', '', 'none') +call s:HL('Function', 'orange', '', 'none') " Preprocessor stuff is lime, to make it pop. " @@ -245,60 +245,60 @@ " grouped together at the beginning of a file. If they're in the middle of some " other code they should stand out, because something tricky is " probably going on. -call HL('PreProc', 'lime', '', 'none') -call HL('Macro', 'lime', '', 'none') -call HL('Define', 'lime', '', 'none') -call HL('PreCondit', 'lime', '', 'bold') +call s:HL('PreProc', 'lime', '', 'none') +call s:HL('Macro', 'lime', '', 'none') +call s:HL('Define', 'lime', '', 'none') +call s:HL('PreCondit', 'lime', '', 'bold') " Constants of all kinds are colored together. " I'm not really happy with the color yet... -call HL('Constant', 'toffee', '', 'bold') -call HL('Character', 'toffee', '', 'bold') -call HL('Boolean', 'toffee', '', 'bold') +call s:HL('Constant', 'toffee', '', 'bold') +call s:HL('Character', 'toffee', '', 'bold') +call s:HL('Boolean', 'toffee', '', 'bold') -call HL('Number', 'toffee', '', 'bold') -call HL('Float', 'toffee', '', 'bold') +call s:HL('Number', 'toffee', '', 'bold') +call s:HL('Float', 'toffee', '', 'bold') " Not sure what 'special character in a constant' means, but let's make it pop. -call HL('SpecialChar', 'dress', '', 'bold') +call s:HL('SpecialChar', 'dress', '', 'bold') -call HL('Type', 'dress', '', 'none') -call HL('StorageClass', 'taffy', '', 'none') -call HL('Structure', 'taffy', '', 'none') -call HL('Typedef', 'taffy', '', 'bold') +call s:HL('Type', 'dress', '', 'none') +call s:HL('StorageClass', 'taffy', '', 'none') +call s:HL('Structure', 'taffy', '', 'none') +call s:HL('Typedef', 'taffy', '', 'bold') " Make try/catch blocks stand out. -call HL('Exception', 'lime', '', 'bold') +call s:HL('Exception', 'lime', '', 'bold') " Misc -call HL('Error', 'snow', 'taffy', 'bold') -call HL('Debug', 'snow', '', 'bold') -call HL('Ignore', 'gravel', '', '') +call s:HL('Error', 'snow', 'taffy', 'bold') +call s:HL('Debug', 'snow', '', 'bold') +call s:HL('Ignore', 'gravel', '', '') " }}} " Completion Menu {{{ -call HL('Pmenu', 'plain', 'deepergravel') -call HL('PmenuSel', 'coal', 'tardis', 'bold') -call HL('PmenuSbar', '', 'deepergravel') -call HL('PmenuThumb', 'brightgravel') +call s:HL('Pmenu', 'plain', 'deepergravel') +call s:HL('PmenuSel', 'coal', 'tardis', 'bold') +call s:HL('PmenuSbar', '', 'deepergravel') +call s:HL('PmenuThumb', 'brightgravel') " }}} " Diffs {{{ -call HL('DiffDelete', 'coal', 'coal') -call HL('DiffAdd', '', 'deepergravel') -call HL('DiffChange', '', 'darkgravel') -call HL('DiffText', 'snow', 'deepergravel', 'bold') +call s:HL('DiffDelete', 'coal', 'coal') +call s:HL('DiffAdd', '', 'deepergravel') +call s:HL('DiffChange', '', 'darkgravel') +call s:HL('DiffText', 'snow', 'deepergravel', 'bold') " }}} " Spelling {{{ if has("spell") - call HL('SpellCap', 'dalespale', 'bg', 'undercurl,bold', 'dalespale') - call HL('SpellBad', '', '', 'undercurl', 'dalespale') - call HL('SpellLocal', '', '', 'undercurl', 'dalespale') - call HL('SpellRare', '', '', 'undercurl', 'dalespale') + call s:HL('SpellCap', 'dalespale', 'bg', 'undercurl,bold', 'dalespale') + call s:HL('SpellBad', '', '', 'undercurl', 'dalespale') + call s:HL('SpellLocal', '', '', 'undercurl', 'dalespale') + call s:HL('SpellRare', '', '', 'undercurl', 'dalespale') endif " }}} @@ -309,53 +309,53 @@ " CtrlP {{{ " the message when no match is found - call HL('CtrlPNoEntries', 'snow', 'taffy', 'bold') + call s:HL('CtrlPNoEntries', 'snow', 'taffy', 'bold') " the matched pattern - call HL('CtrlPMatch', 'orange', 'bg', 'none') + call s:HL('CtrlPMatch', 'orange', 'bg', 'none') " the line prefix '>' in the match window - call HL('CtrlPLinePre', 'deepgravel', 'bg', 'none') + call s:HL('CtrlPLinePre', 'deepgravel', 'bg', 'none') " the prompt’s base - call HL('CtrlPPrtBase', 'deepgravel', 'bg', 'none') + call s:HL('CtrlPPrtBase', 'deepgravel', 'bg', 'none') " the prompt’s text - call HL('CtrlPPrtText', 'plain', 'bg', 'none') + call s:HL('CtrlPPrtText', 'plain', 'bg', 'none') " the prompt’s cursor when moving over the text - call HL('CtrlPPrtCursor', 'coal', 'tardis', 'bold') + call s:HL('CtrlPPrtCursor', 'coal', 'tardis', 'bold') " 'prt' or 'win', also for 'regex' - call HL('CtrlPMode1', 'coal', 'tardis', 'bold') + call s:HL('CtrlPMode1', 'coal', 'tardis', 'bold') " 'file' or 'path', also for the local working dir - call HL('CtrlPMode2', 'coal', 'tardis', 'bold') + call s:HL('CtrlPMode2', 'coal', 'tardis', 'bold') " the scanning status - call HL('CtrlPStats', 'coal', 'tardis', 'bold') + call s:HL('CtrlPStats', 'coal', 'tardis', 'bold') " TODO: CtrlP extensions. " CtrlPTabExtra : the part of each line that’s not matched against (Comment) - " CtrlPqfLineCol : the line and column numbers in quickfix mode (|hl-Search|) - " CtrlPUndoT : the elapsed time in undo mode (|hl-Directory|) + " CtrlPqfLineCol : the line and column numbers in quickfix mode (|s:HL-Search|) + " CtrlPUndoT : the elapsed time in undo mode (|s:HL-Directory|) " CtrlPUndoBr : the square brackets [] in undo mode (Comment) " CtrlPUndoNr : the undo number inside [] in undo mode (String) " }}} " EasyMotion {{{ -call HL('EasyMotionTarget', 'tardis', 'bg', 'bold') -call HL('EasyMotionShade', 'deepgravel', 'bg') +call s:HL('EasyMotionTarget', 'tardis', 'bg', 'bold') +call s:HL('EasyMotionShade', 'deepgravel', 'bg') " }}} " Interesting Words {{{ " These are only used if you're me or have copied the hNUM mappings " from my Vimrc. -call HL('InterestingWord1', 'coal', 'orange') -call HL('InterestingWord2', 'coal', 'lime') -call HL('InterestingWord3', 'coal', 'taffy') +call s:HL('InterestingWord1', 'coal', 'orange') +call s:HL('InterestingWord2', 'coal', 'lime') +call s:HL('InterestingWord3', 'coal', 'taffy') " }}} " Makegreen {{{ @@ -366,10 +366,10 @@ " }}} " ShowMarks {{{ -call HL('ShowMarksHLl', 'tardis', 'blackgravel') -call HL('ShowMarksHLu', 'tardis', 'blackgravel') -call HL('ShowMarksHLo', 'tardis', 'blackgravel') -call HL('ShowMarksHLm', 'tardis', 'blackgravel') +call s:HL('ShowMarksHLl', 'tardis', 'blackgravel') +call s:HL('ShowMarksHLu', 'tardis', 'blackgravel') +call s:HL('ShowMarksHLo', 'tardis', 'blackgravel') +call s:HL('ShowMarksHLm', 'tardis', 'blackgravel') " }}} @@ -378,43 +378,43 @@ " Clojure {{{ -call HL('clojureSpecial', 'taffy', '', '') -call HL('clojureDefn', 'taffy', '', '') -call HL('clojureDefMacro', 'taffy', '', '') -call HL('clojureDefine', 'taffy', '', '') -call HL('clojureMacro', 'taffy', '', '') -call HL('clojureCond', 'taffy', '', '') +call s:HL('clojureSpecial', 'taffy', '', '') +call s:HL('clojureDefn', 'taffy', '', '') +call s:HL('clojureDefMacro', 'taffy', '', '') +call s:HL('clojureDefine', 'taffy', '', '') +call s:HL('clojureMacro', 'taffy', '', '') +call s:HL('clojureCond', 'taffy', '', '') -call HL('clojureKeyword', 'orange', '', 'none') +call s:HL('clojureKeyword', 'orange', '', 'none') -call HL('clojureFunc', 'dress', '', 'none') -call HL('clojureRepeat', 'dress', '', 'none') +call s:HL('clojureFunc', 'dress', '', 'none') +call s:HL('clojureRepeat', 'dress', '', 'none') -call HL('clojureParen0', 'lightgravel', '', 'none') +call s:HL('clojureParen0', 'lightgravel', '', 'none') -call HL('clojureAnonArg', 'snow', '', 'bold') +call s:HL('clojureAnonArg', 'snow', '', 'bold') " }}} " CSS {{{ -call HL('cssColorProp', 'fg', '', 'none') -call HL('cssBoxProp', 'fg', '', 'none') -call HL('cssTextProp', 'fg', '', 'none') -call HL('cssRenderProp', 'fg', '', 'none') -call HL('cssGeneratedContentProp', 'fg', '', 'none') +call s:HL('cssColorProp', 'fg', '', 'none') +call s:HL('cssBoxProp', 'fg', '', 'none') +call s:HL('cssTextProp', 'fg', '', 'none') +call s:HL('cssRenderProp', 'fg', '', 'none') +call s:HL('cssGeneratedContentProp', 'fg', '', 'none') -call HL('cssValueLength', 'toffee', '', 'bold') -call HL('cssColor', 'toffee', '', 'bold') -call HL('cssBraces', 'lightgravel', '', 'none') -call HL('cssIdentifier', 'orange', '', 'bold') -call HL('cssClassName', 'orange', '', 'none') +call s:HL('cssValueLength', 'toffee', '', 'bold') +call s:HL('cssColor', 'toffee', '', 'bold') +call s:HL('cssBraces', 'lightgravel', '', 'none') +call s:HL('cssIdentifier', 'orange', '', 'bold') +call s:HL('cssClassName', 'orange', '', 'none') " }}} " Django Templates {{{ -call HL('djangoArgument', 'dirtyblonde', '',) -call HL('djangoTagBlock', 'orange', '') -call HL('djangoVarBlock', 'orange', '') +call s:HL('djangoArgument', 'dirtyblonde', '',) +call s:HL('djangoTagBlock', 'orange', '') +call s:HL('djangoVarBlock', 'orange', '') " hi djangoStatement guifg=#ff3853 gui=bold " hi djangoVarBlock guifg=#f4cf86 @@ -422,115 +422,115 @@ " HTML {{{ " Punctuation -call HL('htmlTag', 'darkroast', 'bg', 'none') -call HL('htmlEndTag', 'darkroast', 'bg', 'none') +call s:HL('htmlTag', 'darkroast', 'bg', 'none') +call s:HL('htmlEndTag', 'darkroast', 'bg', 'none') " Tag names -call HL('htmlTagName', 'coffee', '', 'bold') -call HL('htmlSpecialTagName', 'coffee', '', 'bold') +call s:HL('htmlTagName', 'coffee', '', 'bold') +call s:HL('htmlSpecialTagName', 'coffee', '', 'bold') " Attributes -call HL('htmlArg', 'coffee', '', 'none') +call s:HL('htmlArg', 'coffee', '', 'none') " Stuff inside an tag if g:badwolf_html_link_underline - call HL('htmlLink', 'lightgravel', '', 'underline') + call s:HL('htmlLink', 'lightgravel', '', 'underline') else - call HL('htmlLink', 'lightgravel', '', 'none') + call s:HL('htmlLink', 'lightgravel', '', 'none') endif " }}} " Java {{{ -call HL('javaClassDecl', 'taffy', '', 'bold') -call HL('javaScopeDecl', 'taffy', '', 'bold') -call HL('javaCommentTitle', 'gravel', '') -call HL('javaDocTags', 'snow', '', 'none') -call HL('javaDocParam', 'dalespale', '', '') +call s:HL('javaClassDecl', 'taffy', '', 'bold') +call s:HL('javaScopeDecl', 'taffy', '', 'bold') +call s:HL('javaCommentTitle', 'gravel', '') +call s:HL('javaDocTags', 'snow', '', 'none') +call s:HL('javaDocParam', 'dalespale', '', '') " }}} " LessCSS {{{ -call HL('lessVariable', 'lime', '', 'none') +call s:HL('lessVariable', 'lime', '', 'none') " }}} " Mail {{{ -call HL('mailSubject', 'orange', '', 'bold') -call HL('mailHeader', 'lightgravel', '', '') -call HL('mailHeaderKey', 'lightgravel', '', '') -call HL('mailHeaderEmail', 'snow', '', '') -call HL('mailURL', 'toffee', '', 'underline') -call HL('mailSignature', 'gravel', '', 'none') +call s:HL('mailSubject', 'orange', '', 'bold') +call s:HL('mailHeader', 'lightgravel', '', '') +call s:HL('mailHeaderKey', 'lightgravel', '', '') +call s:HL('mailHeaderEmail', 'snow', '', '') +call s:HL('mailURL', 'toffee', '', 'underline') +call s:HL('mailSignature', 'gravel', '', 'none') -call HL('mailQuoted1', 'gravel', '', 'none') -call HL('mailQuoted2', 'dress', '', 'none') -call HL('mailQuoted3', 'dirtyblonde', '', 'none') -call HL('mailQuoted4', 'orange', '', 'none') -call HL('mailQuoted5', 'lime', '', 'none') +call s:HL('mailQuoted1', 'gravel', '', 'none') +call s:HL('mailQuoted2', 'dress', '', 'none') +call s:HL('mailQuoted3', 'dirtyblonde', '', 'none') +call s:HL('mailQuoted4', 'orange', '', 'none') +call s:HL('mailQuoted5', 'lime', '', 'none') " }}} " Markdown {{{ -call HL('markdownHeadingRule', 'lightgravel', '', 'bold') -call HL('markdownHeadingDelimiter', 'lightgravel', '', 'bold') -call HL('markdownOrderedListMarker', 'lightgravel', '', 'bold') -call HL('markdownListMarker', 'lightgravel', '', 'bold') -call HL('markdownH1', 'orange', '', 'bold') -call HL('markdownH2', 'lime', '', 'bold') -call HL('markdownH3', 'lime', '', 'none') -call HL('markdownH4', 'lime', '', 'none') -call HL('markdownH5', 'lime', '', 'none') -call HL('markdownH6', 'lime', '', 'none') -call HL('markdownLinkText', 'toffee', '', 'underline') -call HL('markdownIdDeclaration', 'toffee') -call HL('markdownAutomaticLink', 'toffee', '', 'bold') -call HL('markdownUrl', 'toffee', '', 'bold') -call HL('markdownUrldelimiter', 'lightgravel', '', 'bold') -call HL('markdownLinkDelimiter', 'lightgravel', '', 'bold') -call HL('markdownLinkTextDelimiter', 'lightgravel', '', 'bold') -call HL('markdownCodeDelimiter', 'dirtyblonde', '', 'bold') -call HL('markdownCode', 'dirtyblonde', '', 'none') -call HL('markdownCodeBlock', 'dirtyblonde', '', 'none') +call s:HL('markdownHeadingRule', 'lightgravel', '', 'bold') +call s:HL('markdownHeadingDelimiter', 'lightgravel', '', 'bold') +call s:HL('markdownOrderedListMarker', 'lightgravel', '', 'bold') +call s:HL('markdownListMarker', 'lightgravel', '', 'bold') +call s:HL('markdownH1', 'orange', '', 'bold') +call s:HL('markdownH2', 'lime', '', 'bold') +call s:HL('markdownH3', 'lime', '', 'none') +call s:HL('markdownH4', 'lime', '', 'none') +call s:HL('markdownH5', 'lime', '', 'none') +call s:HL('markdownH6', 'lime', '', 'none') +call s:HL('markdownLinkText', 'toffee', '', 'underline') +call s:HL('markdownIdDeclaration', 'toffee') +call s:HL('markdownAutomaticLink', 'toffee', '', 'bold') +call s:HL('markdownUrl', 'toffee', '', 'bold') +call s:HL('markdownUrldelimiter', 'lightgravel', '', 'bold') +call s:HL('markdownLinkDelimiter', 'lightgravel', '', 'bold') +call s:HL('markdownLinkTextDelimiter', 'lightgravel', '', 'bold') +call s:HL('markdownCodeDelimiter', 'dirtyblonde', '', 'bold') +call s:HL('markdownCode', 'dirtyblonde', '', 'none') +call s:HL('markdownCodeBlock', 'dirtyblonde', '', 'none') " }}} " Python {{{ hi def link pythonOperator Operator -call HL('pythonBuiltin', 'dress') -call HL('pythonBuiltinObj', 'dress') -call HL('pythonBuiltinFunc', 'dress') -call HL('pythonEscape', 'dress') -call HL('pythonException', 'lime', '', 'bold') -call HL('pythonExceptions', 'lime', '', 'none') -call HL('pythonPrecondit', 'lime', '', 'none') -call HL('pythonDecorator', 'taffy', '', 'none') +call s:HL('pythonBuiltin', 'dress') +call s:HL('pythonBuiltinObj', 'dress') +call s:HL('pythonBuiltinFunc', 'dress') +call s:HL('pythonEscape', 'dress') +call s:HL('pythonException', 'lime', '', 'bold') +call s:HL('pythonExceptions', 'lime', '', 'none') +call s:HL('pythonPrecondit', 'lime', '', 'none') +call s:HL('pythonDecorator', 'taffy', '', 'none') " }}} " SLIMV {{{ " Rainbow parentheses -call HL('hlLevel0', 'gravel') -call HL('hlLevel1', 'orange') -call HL('hlLevel2', 'saltwatertaffy') -call HL('hlLevel3', 'dress') -call HL('hlLevel4', 'coffee') -call HL('hlLevel5', 'dirtyblonde') -call HL('hlLevel6', 'orange') -call HL('hlLevel7', 'saltwatertaffy') -call HL('hlLevel8', 'dress') -call HL('hlLevel9', 'coffee') +call s:HL('hlLevel0', 'gravel') +call s:HL('hlLevel1', 'orange') +call s:HL('hlLevel2', 'saltwatertaffy') +call s:HL('hlLevel3', 'dress') +call s:HL('hlLevel4', 'coffee') +call s:HL('hlLevel5', 'dirtyblonde') +call s:HL('hlLevel6', 'orange') +call s:HL('hlLevel7', 'saltwatertaffy') +call s:HL('hlLevel8', 'dress') +call s:HL('hlLevel9', 'coffee') " }}} " Vim {{{ -call HL('VimCommentTitle', 'lightgravel', '', 'bold') +call s:HL('VimCommentTitle', 'lightgravel', '', 'bold') -call HL('VimMapMod', 'dress', '', 'none') -call HL('VimMapModKey', 'dress', '', 'none') -call HL('VimNotation', 'dress', '', 'none') -call HL('VimBracket', 'dress', '', 'none') +call s:HL('VimMapMod', 'dress', '', 'none') +call s:HL('VimMapModKey', 'dress', '', 'none') +call s:HL('VimNotation', 'dress', '', 'none') +call s:HL('VimBracket', 'dress', '', 'none') " }}}