aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-08 12:38:02 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-08 12:44:59 +1300
commitaa8690deaa873c384b9d3eafd2d39059ff0d753e (patch)
tree578fe7143565b251e33ed99b322ecceb259cc25e /vim/ftplugin
parentRemove superfluous augroups around ftdetect defs (diff)
downloaddotfiles-aa8690deaa873c384b9d3eafd2d39059ff0d753e.tar.gz
dotfiles-aa8690deaa873c384b9d3eafd2d39059ff0d753e.zip
Use correct undo variable name in ftplugin/sh.vim
This was likely a copy-paste error.
Diffstat (limited to 'vim/ftplugin')
-rw-r--r--vim/ftplugin/sh.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/ftplugin/sh.vim b/vim/ftplugin/sh.vim
index 7f453e92..50add09b 100644
--- a/vim/ftplugin/sh.vim
+++ b/vim/ftplugin/sh.vim
@@ -18,7 +18,7 @@ endif
" Use han(1df) as a man(1) wrapper for Bash files if available
if exists('b:is_bash') && executable('han')
setlocal keywordprg=han
- let b:undo_user_indent
+ let b:undo_user_ftplugin
\ = 'setlocal keywordprg<'
endif