Skip to content

Commit

Permalink
Merge pull request chriskempson#6 from programble/master
Browse files Browse the repository at this point in the history
Highlight C conditionals and loops
  • Loading branch information
Chris Kempson committed Dec 1, 2011
2 parents f8e1847 + 1dfb440 commit d210ccf
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion colors/Tomorrow-Night-Blue.vim
Expand Up @@ -286,6 +286,8 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
" C Highlighting
call <SID>X("cType", s:yellow, "", "")
call <SID>X("cStorageClass", s:purple, "", "")
call <SID>X("cConditional", s:purple, "", "")
call <SID>X("cRepeat", s:purple, "", "")

" PHP Highlighting
call <SID>X("phpVarSelector", s:red, "", "")
Expand Down Expand Up @@ -335,4 +337,4 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
delf <SID>grey_colour
delf <SID>grey_level
delf <SID>grey_number
endif
endif
4 changes: 3 additions & 1 deletion colors/Tomorrow-Night-Bright.vim
Expand Up @@ -286,6 +286,8 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
" C Highlighting
call <SID>X("cType", s:yellow, "", "")
call <SID>X("cStorageClass", s:purple, "", "")
call <SID>X("cConditional", s:purple, "", "")
call <SID>X("cRepeat", s:purple, "", "")

" PHP Highlighting
call <SID>X("phpVarSelector", s:red, "", "")
Expand Down Expand Up @@ -335,4 +337,4 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
delf <SID>grey_colour
delf <SID>grey_level
delf <SID>grey_number
endif
endif
4 changes: 3 additions & 1 deletion colors/Tomorrow-Night-Eighties.vim
Expand Up @@ -286,6 +286,8 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
" C Highlighting
call <SID>X("cType", s:yellow, "", "")
call <SID>X("cStorageClass", s:purple, "", "")
call <SID>X("cConditional", s:purple, "", "")
call <SID>X("cRepeat", s:purple, "", "")

" PHP Highlighting
call <SID>X("phpVarSelector", s:red, "", "")
Expand Down Expand Up @@ -335,4 +337,4 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
delf <SID>grey_colour
delf <SID>grey_level
delf <SID>grey_number
endif
endif
4 changes: 3 additions & 1 deletion colors/Tomorrow-Night.vim
Expand Up @@ -295,6 +295,8 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
" C Highlighting
call <SID>X("cType", s:yellow, "", "")
call <SID>X("cStorageClass", s:purple, "", "")
call <SID>X("cConditional", s:purple, "", "")
call <SID>X("cRepeat", s:purple, "", "")

" PHP Highlighting
call <SID>X("phpVarSelector", s:red, "", "")
Expand Down Expand Up @@ -344,4 +346,4 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
delf <SID>grey_colour
delf <SID>grey_level
delf <SID>grey_number
endif
endif
4 changes: 3 additions & 1 deletion colors/Tomorrow.vim
Expand Up @@ -285,6 +285,8 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
" C Highlighting
call <SID>X("cType", s:yellow, "", "")
call <SID>X("cStorageClass", s:purple, "", "")
call <SID>X("cConditional", s:purple, "", "")
call <SID>X("cRepeat", s:purple, "", "")

" PHP Highlighting
call <SID>X("phpVarSelector", s:red, "", "")
Expand Down Expand Up @@ -334,4 +336,4 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
delf <SID>grey_colour
delf <SID>grey_level
delf <SID>grey_number
endif
endif

0 comments on commit d210ccf

Please sign in to comment.