Skip to content

Commit

Permalink
Merge pull request #1 from mattsoutherden/master
Browse files Browse the repository at this point in the history
Minor highlighting change and code formatting fix
  • Loading branch information
Chris Kempson committed Nov 22, 2011
2 parents 37f32f9 + 0ddfb40 commit ba3ea86
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 17 deletions.
7 changes: 4 additions & 3 deletions colors/Tomorrow-Night-Blue.vim
Expand Up @@ -233,17 +233,18 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256

" Vim Highlighting
call <SID>X("Normal", s:foreground, s:background, "")
call <SID>X("LineNr", s:foreground, "", "")
call <SID>X("LineNr", s:foreground, s:line, "")
call <SID>X("NonText", s:selection, "", "")
call <SID>X("SpecialKey", s:selection, "", "")
call <SID>X("Search", s:background, s:yellow, "")
call <SID>X("TabLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLineNC", s:foreground, s:background, "reverse")
call <SID>X("VertSplit", s:foreground, s:foreground, "")
call <SID>X("Visual", "", s:selection, "")
call <SID>X("Directory", s:blue, "", "")
call <SID>X("ModeMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("Question", s:green, "", "")
call <SID>X("WarningMsg", s:red, "", "")
if version >= 700
Expand All @@ -252,7 +253,7 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

Expand Down
7 changes: 4 additions & 3 deletions colors/Tomorrow-Night-Bright.vim
Expand Up @@ -233,17 +233,18 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256

" Vim Highlighting
call <SID>X("Normal", s:foreground, s:background, "")
call <SID>X("LineNr", s:foreground, "", "")
call <SID>X("LineNr", s:foreground, s:line, "")
call <SID>X("NonText", s:selection, "", "")
call <SID>X("SpecialKey", s:selection, "", "")
call <SID>X("Search", s:background, s:yellow, "")
call <SID>X("TabLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLineNC", s:foreground, s:background, "reverse")
call <SID>X("VertSplit", s:foreground, s:foreground, "")
call <SID>X("Visual", "", s:selection, "")
call <SID>X("Directory", s:blue, "", "")
call <SID>X("ModeMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("Question", s:green, "", "")
call <SID>X("WarningMsg", s:red, "", "")
if version >= 700
Expand All @@ -252,7 +253,7 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

Expand Down
7 changes: 4 additions & 3 deletions colors/Tomorrow-Night-Eighties.vim
Expand Up @@ -233,17 +233,18 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256

" Vim Highlighting
call <SID>X("Normal", s:foreground, s:background, "")
call <SID>X("LineNr", s:foreground, "", "")
call <SID>X("LineNr", s:foreground, s:line, "")
call <SID>X("NonText", s:selection, "", "")
call <SID>X("SpecialKey", s:selection, "", "")
call <SID>X("Search", s:background, s:yellow, "")
call <SID>X("TabLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLineNC", s:foreground, s:background, "reverse")
call <SID>X("VertSplit", s:foreground, s:foreground, "")
call <SID>X("Visual", "", s:selection, "")
call <SID>X("Directory", s:blue, "", "")
call <SID>X("ModeMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("Question", s:green, "", "")
call <SID>X("WarningMsg", s:red, "", "")
if version >= 700
Expand All @@ -252,7 +253,7 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

Expand Down
13 changes: 8 additions & 5 deletions colors/Tomorrow-Night.vim
Expand Up @@ -16,10 +16,12 @@ let s:green = "b5bd68"
let s:aqua = "8abeb7"
let s:blue = "81a2be"
let s:purple = "b294bb"
let s:window = "4d5057"

" Console 256 Colours
if !has("gui_running")
let s:background = "303030"
let s:window = "5e5e5e"
let s:line = "3a3a3a"
let s:selection = "585858"
end
Expand Down Expand Up @@ -240,17 +242,18 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256

" Vim Highlighting
call <SID>X("Normal", s:foreground, s:background, "")
call <SID>X("LineNr", s:foreground, "", "")
call <SID>X("LineNr", s:foreground, s:line, "")
call <SID>X("NonText", s:selection, "", "")
call <SID>X("SpecialKey", s:selection, "", "")
call <SID>X("Search", s:background, s:yellow, "")
call <SID>X("TabLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLineNC", s:foreground, s:background, "reverse")
call <SID>X("StatusLine", s:window, s:yellow, "reverse")
call <SID>X("StatusLineNC", s:window, s:foreground, "reverse")
call <SID>X("VertSplit", s:window, s:window, "none")
call <SID>X("Visual", "", s:selection, "")
call <SID>X("Directory", s:blue, "", "")
call <SID>X("ModeMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("Question", s:green, "", "")
call <SID>X("WarningMsg", s:red, "", "")
if version >= 700
Expand All @@ -259,7 +262,7 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

Expand Down
7 changes: 4 additions & 3 deletions colors/Tomorrow.vim
Expand Up @@ -232,17 +232,18 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256

" Vim Highlighting
call <SID>X("Normal", s:foreground, s:background, "")
call <SID>X("LineNr", s:foreground, "", "")
call <SID>X("LineNr", s:foreground, s:line, "")
call <SID>X("NonText", s:selection, "", "")
call <SID>X("SpecialKey", s:selection, "", "")
call <SID>X("Search", s:background, s:yellow, "")
call <SID>X("TabLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLine", s:foreground, s:background, "reverse")
call <SID>X("StatusLineNC", s:foreground, s:background, "reverse")
call <SID>X("VertSplit", s:foreground, s:foreground, "")
call <SID>X("Visual", "", s:selection, "")
call <SID>X("Directory", s:blue, "", "")
call <SID>X("ModeMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("MoreMsg", s:green, "", "")
call <SID>X("Question", s:green, "", "")
call <SID>X("WarningMsg", s:red, "", "")
if version >= 700
Expand All @@ -251,7 +252,7 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

Expand Down

0 comments on commit ba3ea86

Please sign in to comment.