aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-21 11:07:14 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-21 11:07:14 +1200
commitbbafc15c70da6571ff19d4f99386638de5ec8cd0 (patch)
treee4fd25bec4643d993da2563dbbe4d292fb77fa01
parentCompress/improve .vimrc plugin disabling comments (diff)
downloaddotfiles-bbafc15c70da6571ff19d4f99386638de5ec8cd0.tar.gz
dotfiles-bbafc15c70da6571ff19d4f99386638de5ec8cd0.zip
Use slightly more correct v:version check
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 1b7dd226..ae0d2e9f 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -61,7 +61,7 @@ set noesckeys
" Try to set the 'j' flag for 'formatoptions', to automatically delete comment
" leaders when joining lines, if supported
-if v:version >= 704 || v:version == 703 && has('patch541')
+if v:version > 703 || v:version == 703 && has('patch541')
set formatoptions+=j
endif