Skip to content

Commit

Permalink
Merge pull request chriskempson#49 from mattsoutherden/master
Browse files Browse the repository at this point in the history
ColorColumn Highlighting
  • Loading branch information
Chris Kempson committed Oct 31, 2011
2 parents 141e9a4 + 7853724 commit 8f81e5d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Vim/Tomorrow-Night-Blue.vim
Expand Up @@ -252,6 +252,9 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none") call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse") call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end


" Standard Highlighting " Standard Highlighting
call <SID>X("Comment", s:comment, "", "") call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow-Night-Bright.vim
Expand Up @@ -252,6 +252,9 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none") call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse") call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end


" Standard Highlighting " Standard Highlighting
call <SID>X("Comment", s:comment, "", "") call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow-Night-Eighties.vim
Expand Up @@ -252,6 +252,9 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none") call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse") call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end


" Standard Highlighting " Standard Highlighting
call <SID>X("Comment", s:comment, "", "") call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow-Night.vim
Expand Up @@ -259,6 +259,9 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none") call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse") call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end


" Standard Highlighting " Standard Highlighting
call <SID>X("Comment", s:comment, "", "") call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow.vim
Expand Up @@ -251,6 +251,9 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("PMenu", s:foreground, s:selection, "none") call <SID>X("PMenu", s:foreground, s:selection, "none")
call <SID>X("PMenuSel", s:foreground, s:selection, "reverse") call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
end end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end


" Standard Highlighting " Standard Highlighting
call <SID>X("Comment", s:comment, "", "") call <SID>X("Comment", s:comment, "", "")
Expand Down

0 comments on commit 8f81e5d

Please sign in to comment.