aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc.vim b/vim/vimrc.vim
index 977cc05d..60324470 100644
--- a/vim/vimrc.vim
+++ b/vim/vimrc.vim
@@ -508,7 +508,7 @@ set smarttab " Tab at start of line means indent, otherwise means tab
"
" <https://github.com/vim/vim/releases/tag/v7.3.693>
"
-if v:version > 730 || v:version == 730 && has('patch693')
+if v:version > 703 || v:version == 703 && has('patch693')
set softtabstop=-1
else
let &softtabstop = &shiftwidth
@@ -620,7 +620,7 @@ set formatoptions+=1
"
" <https://github.com/vim/vim/releases/tag/v7.3.541>
"
-if v:version > 730 || v:version == 730 && has('patch541')
+if v:version > 703 || v:version == 703 && has('patch541')
set formatoptions+=j
endif