aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-03 22:24:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-03 22:24:37 +1200
commit8ca01a93dc1e9139f7dc74036b3b40586b06ae15 (patch)
tree1cc8ce96019d424f2fa515ce5a5054ae5cc4c3fa /vim/vimrc
parentUse autoloaded and correct function for &rtp split (diff)
downloaddotfiles-8ca01a93dc1e9139f7dc74036b3b40586b06ae15.tar.gz
dotfiles-8ca01a93dc1e9139f7dc74036b3b40586b06ae15.zip
Factor out Vim version checks into autoload func
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc11
1 files changed, 4 insertions, 7 deletions
diff --git a/vim/vimrc b/vim/vimrc
index ad582717..302f1388 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -14,9 +14,7 @@ set shiftwidth=4 " Indent with four spaces
" Make insert mode tab key add the same number of spaces as 'shiftwidth', use
" negative value to do this if Vim new enough to support it
-let &softtabstop = v:version > 703
- \ || v:version == 703 && has('patch693')
- \ ? -1 : &shiftwidth
+let &softtabstop = vimrc#Version('7.3.693') ? -1 : &shiftwidth
" Allow me to backspace 'autoindent' spaces in insert mode, and back over the
" end of lines I've inserted in this session
@@ -26,7 +24,7 @@ set backspace=indent,eol
" full path in name, if Vim is new enough to support that
set backup
execute 'set backupdir^='.escape($MYVIM, '\ ').'/cache/backup'
- \ . (has('patch-8.1.251') ? '//' : '')
+ \ . (vimrc#Version('8.1.251') ? '//' : '')
" Add some *nix paths not to back up
if has('unix')
@@ -74,13 +72,12 @@ set foldlevelstart=99
set foldmethod=indent
" Delete comment leaders when joining lines, if supported
-if v:version > 703
- \ || v:version == 703 && has('patch541')
+if vimrc#Version('7.3.541')
set formatoptions+=j
endif
" Don't break a single space after a period, if supported
-if has('patch-8.1.728')
+if vimrc#Version('8.1.728')
set formatoptions+=p
endif