diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-09 16:45:51 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-09 16:45:51 +0200 |
commit | cecfb5dd10497d09fc46e85c15c383166d9fb22a (patch) | |
tree | b01758e79e5feb815f8a410ceb9b07c4773d73fe /ftdetect/polyglot.vim | |
parent | a4a9481d372af2e8bb0469f533e4b047b3a384fb (diff) | |
download | vim-polyglot-cecfb5dd10497d09fc46e85c15c383166d9fb22a.tar.gz vim-polyglot-cecfb5dd10497d09fc46e85c15c383166d9fb22a.zip |
Fix disabling autoindent, #541
Diffstat (limited to 'ftdetect/polyglot.vim')
-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 aed797ab..7b243901 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1777,8 +1777,7 @@ au BufNewFile,BufRead,StdinReadPost * \ | call polyglot#Heuristics() | endif -if !has_key(s:disabled_packages, 'helm') - +if !has_key(s:disabled_packages, 'autoindent') " Code below re-implements sleuth for vim-polyglot let g:loaded_sleuth = 1 |