Skip to content

Commit

Permalink
Highlighting for ColorColumn in v7.3+
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsoutherden committed Oct 18, 2011
1 parent 79d5e78 commit 7853724
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
Original file line number Diff line number Diff line change
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("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

" Standard Highlighting
call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow-Night-Bright.vim
Original file line number Diff line number Diff line change
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("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

" Standard Highlighting
call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow-Night-Eighties.vim
Original file line number Diff line number Diff line change
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("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

" Standard Highlighting
call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow-Night.vim
Original file line number Diff line number Diff line change
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("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

" Standard Highlighting
call <SID>X("Comment", s:comment, "", "")
Expand Down
3 changes: 3 additions & 0 deletions Vim/Tomorrow.vim
Original file line number Diff line number Diff line change
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("PMenuSel", s:foreground, s:selection, "reverse")
end
if version >= 703
call <SID>X("ColorColumn", "", s:line, "none")
end

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

0 comments on commit 7853724

Please sign in to comment.