Created
February 10, 2012 21:39
-
-
Save jvoorhis/1793136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Line width nags | |
hi OverLength ctermbg=red ctermfg=white | |
let line_width_nag=0 | |
function! ToggleLineWidthNags() | |
if g:line_width_nag==0 | |
match OverLength /\%80v.\+/ | |
let g:line_width_nag=1 | |
else | |
match OverLength // | |
let g:line_width_nag=0 | |
endif | |
endfunction | |
call ToggleLineWidthNags() | |
nnoremap <Leader>n :call ToggleLineWidthNags()<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment