aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-30 01:08:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-30 01:08:07 +1200
commit180ca9f7ab538347ab117d06a9b2bd15a8e9c93d (patch)
treedd36e6d2e378b990b47b6687e822e79953a9acd9 /vim/autoload
parentSplit detect_indent.vim into autoload/plugin (diff)
downloaddotfiles-180ca9f7ab538347ab117d06a9b2bd15a8e9c93d.tar.gz
dotfiles-180ca9f7ab538347ab117d06a9b2bd15a8e9c93d.zip
Correct b:undo_indent setting in detect_indent.vim
Diffstat (limited to 'vim/autoload')
-rw-r--r--vim/autoload/detect_indent.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/autoload/detect_indent.vim b/vim/autoload/detect_indent.vim
index 91952032..6be81eda 100644
--- a/vim/autoload/detect_indent.vim
+++ b/vim/autoload/detect_indent.vim
@@ -47,7 +47,7 @@ function detect_indent#() abort
let &l:softtabstop = shiftwidth
endif
- let undo_indent = 'setlocal expandtab? shiftwidth? softtabstop?'
+ let undo_indent = 'setlocal expandtab< shiftwidth< softtabstop<'
if exists('b:undo_indent')
let b:undo_indent .= '|'.undo_indent
else