diff options
-rw-r--r-- | ftdetect/polyglot.vim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index f0146c74..69d27f08 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -2773,11 +2773,10 @@ if !has_key(s:disabled_packages, 'autoindent') try " Sunchronize tabstop with shiftwidth let &l:softtabstop = -1 - catch /^Vim\%((\a\+)\)\=:E487/ + catch /^Vim\%((\a\+)\)\=:E487/ " -1 was not supported before Vim 7.4 let &l:softtabstop = a:num_spaces endtry - let &l:softtabstop=shiftwidth return 1 endif |