Skip to content

Instantly share code, notes, and snippets.

@jvoorhis
Created February 10, 2012 21:39
Show Gist options
  • Save jvoorhis/1793136 to your computer and use it in GitHub Desktop.
Save jvoorhis/1793136 to your computer and use it in GitHub Desktop.
" 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