aboutsummaryrefslogtreecommitdiff
path: root/.vim/functions/set-char-limit.vim
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2019-10-02 11:49:11 +0200
committerPatrick Spek <p.spek@tyil.nl>2019-10-02 11:49:11 +0200
commiteac0f1c0d14a9c3ac33cefb8eed82fe6f6ea9849 (patch)
tree15a91bb31a491a85f690ca1d5ccf2732e7a6e913 /.vim/functions/set-char-limit.vim
parent56bc2df958b655da811f0eb68a5063a962198b08 (diff)
Include vim configuration
Diffstat (limited to '.vim/functions/set-char-limit.vim')
-rw-r--r--.vim/functions/set-char-limit.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/.vim/functions/set-char-limit.vim b/.vim/functions/set-char-limit.vim
new file mode 100644
index 0000000..9269059
--- /dev/null
+++ b/.vim/functions/set-char-limit.vim
@@ -0,0 +1,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