diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-21 11:07:14 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-21 11:07:14 +1200 |
commit | bbafc15c70da6571ff19d4f99386638de5ec8cd0 (patch) | |
tree | e4fd25bec4643d993da2563dbbe4d292fb77fa01 /vim/vimrc | |
parent | Compress/improve .vimrc plugin disabling comments (diff) | |
download | dotfiles-bbafc15c70da6571ff19d4f99386638de5ec8cd0.tar.gz dotfiles-bbafc15c70da6571ff19d4f99386638de5ec8cd0.zip |
Use slightly more correct v:version check
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |