aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/markdown
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-12 16:38:09 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-12 20:45:38 +1300
commita2281bd121949f2215ee9257e28e2c0966f3f003 (patch)
treec0643cd7c649245c3f355629f5c9a94e464bf68e /vim/after/ftplugin/markdown
parentExclude SC1090 (failed source) shellcheck error (diff)
downloaddotfiles-a2281bd121949f2215ee9257e28e2c0966f3f003.tar.gz
dotfiles-a2281bd121949f2215ee9257e28e2c0966f3f003.zip
Add guards for presence of b:undo_* var
This variable is not set in older Vims (early 6.x), and I think it's worth guarding for.
Diffstat (limited to 'vim/after/ftplugin/markdown')
-rw-r--r--vim/after/ftplugin/markdown/spell.vim12
1 files changed, 8 insertions, 4 deletions
diff --git a/vim/after/ftplugin/markdown/spell.vim b/vim/after/ftplugin/markdown/spell.vim
index 8f9ce4a4..bb344374 100644
--- a/vim/after/ftplugin/markdown/spell.vim
+++ b/vim/after/ftplugin/markdown/spell.vim
@@ -4,12 +4,16 @@ if exists('b:did_ftplugin_markdown_spell') || &compatible
finish
endif
let b:did_ftplugin_markdown_spell = 1
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_markdown_spell'
+if exists('b:undo_ftplugin')
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|unlet b:did_ftplugin_markdown_spell'
+endif
" Spellcheck documents by default
if has('syntax')
setlocal spell
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|setlocal spell<'
+ if exists('b:undo_ftplugin')
+ let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|setlocal spell<'
+ endif
endif