aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/text
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-17 00:19:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-17 00:19:45 +1200
commit81ff3c0f3ae44bb88a129b7395cb050290a37518 (patch)
treed0cf48de5513c8bfff929ff24473dc6bc441f9e9 /vim/after/ftplugin/text
parentUse short-circuit for no-mapping check (diff)
downloaddotfiles-81ff3c0f3ae44bb88a129b7395cb050290a37518.tar.gz
dotfiles-81ff3c0f3ae44bb88a129b7395cb050290a37518.zip
Completely overhaul after/ftplugin files
Should have done some of this in separate commits; oh well. * Rewrite headers for each ftplugin * Require Vim version >= 7.0, and thereby: * Switch back to location list * Don't check for b:undo_ftplugin existence, assume it * Save and restore compiler instead of internal options * Add bash, ksh, sh, and shellcheck compilers * Rename mail/format_flowed.vim to mail/flowed.vim * Rename sh/bash_han.vim to sh/han.vim
Diffstat (limited to 'vim/after/ftplugin/text')
-rw-r--r--vim/after/ftplugin/text/spell.vim26
1 files changed, 13 insertions, 13 deletions
diff --git a/vim/after/ftplugin/text/spell.vim b/vim/after/ftplugin/text/spell.vim
index 73ca5486..a9f5422b 100644
--- a/vim/after/ftplugin/text/spell.vim
+++ b/vim/after/ftplugin/text/spell.vim
@@ -1,21 +1,21 @@
-" Only do this when not done yet for this buffer
-" Also do nothing if 'compatible' enabled, or if the 'spell' feature isn't
-" available
-if exists('b:did_ftplugin_text_spell') || &compatible
+" text/spell.vim: Turn on spell checking for text files
+
+" Don't load if running compatible or too old
+if &compatible || v:version < 700
finish
endif
-if !has('spell')
+
+" Don't load if already loaded
+if exists('b:did_ftplugin_text_spell')
finish
endif
+
+" Flag as loaded
let b:did_ftplugin_text_spell = 1
-if exists('b:undo_ftplugin')
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:did_ftplugin_text_spell'
-endif
+let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|unlet b:did_ftplugin_text_spell'
" Spellcheck documents by default
setlocal spell
-if exists('b:undo_ftplugin')
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|setlocal spell<'
-endif
+let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|setlocal spell<'