Skip to content

Commit

Permalink
Fix scope but with cppSTLconstant coloring function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed Feb 27, 2017
1 parent 973630d commit 0b40dbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions colors/PaperColor.vim
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ fun! s:cpp_highlight_standard_library(value_if_bool, default)
endfun

fun! s:c_highlight_builtins(value_if_bool, default)
" g:PaperColor_CPP_Highlight_Standard_Library
" g:PaperColor_C_Highlight_Builtins
return s:value_if_global_boolean_else_other(
\'PaperColor_C_Highlight_Builtins',
\a:value_if_bool,
Expand Down Expand Up @@ -996,9 +996,9 @@ fun! s:set_highlightings_variable()
call s:HL("cppBoolean", s:navy, "", "")
call s:HL("cppSTLnamespace", s:purple, "", "")
call s:HL("cppSTLconstant",
\cpp_highlight_standard_library(s:green, s:foreground),
\s:cpp_highlight_standard_library(s:green, s:foreground),
\"",
\cpp_highlight_standard_library(s:bold, ""))
\s:cpp_highlight_standard_library(s:bold, ""))
call s:HL("cppSTLtype",
\s:cpp_highlight_standard_library(s:pink, s:foreground),
\"",
Expand Down

0 comments on commit 0b40dbb

Please sign in to comment.