diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-19 00:10:17 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-19 00:10:17 +0200 |
commit | 3618414fad6ac488e89895810d3a3da3c3c1c6fd (patch) | |
tree | 3a08f3404a036e9dd282dc2529508dbae9313f25 | |
parent | 88cae16fcad307d2a2c6d7f7ba6e4aecb1c8de0b (diff) | |
download | vim-polyglot-3618414fad6ac488e89895810d3a3da3c3c1c6fd.tar.gz vim-polyglot-3618414fad6ac488e89895810d3a3da3c3c1c6fd.zip |
Do not set tabstop by mistake
-rw-r--r-- | ftdetect/polyglot.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 747c79d2..99fb9413 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -2713,7 +2713,6 @@ if !has_key(s:disabled_packages, 'autoindent') if line[0] == "\t" setlocal noexpandtab let &l:shiftwidth=&tabstop - let &l:tabstop=minindent let b:sleuth_culprit .= ':' . i return 1 elseif line[0] == " " |