aboutsummaryrefslogtreecommitdiff
path: root/.vim/functions/set-char-limit.vim
blob: 9269059f1358a4376a2356c8bf44066e01f6f079 (plain)
1
2
3
4
5
6
7
8
9
" SetCharLimit
"
" Set's character limit for a file.
"
" @param int chars The number of chars to put the limit on.
function SetCharLimit (chars)
	exe "set cc=" . a:chars
	exe "set tw=" . a:chars
endfunction