aboutsummaryrefslogtreecommitdiff
path: root/.vim/functions/set-char-limit.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/functions/set-char-limit.vim')
-rw-r--r--.vim/functions/set-char-limit.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/.vim/functions/set-char-limit.vim b/.vim/functions/set-char-limit.vim
deleted file mode 100644
index 9269059..0000000
--- a/.vim/functions/set-char-limit.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" 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