aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/text
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-17 01:01:12 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-17 01:01:12 +1200
commit37ae33b03cb8f7a0ea591c56fae48c5bcb588704 (patch)
tree2ddd07cd9dd348fa4f251d4b83960e24cf75d30f /vim/after/ftplugin/text
parentMerge branch 'release/v0.53.0' (diff)
parentRegenerate dotfiles(7) manual (diff)
downloaddotfiles-37ae33b03cb8f7a0ea591c56fae48c5bcb588704.tar.gz
dotfiles-37ae33b03cb8f7a0ea591c56fae48c5bcb588704.zip
Merge branch 'release/v0.54.0'v0.54.0
* release/v0.54.0: Regenerate dotfiles(7) manual Bump VERSION Add note about compiler scripts Arrange for tidiers to hold window position Update markdown_autoformat.vim Update surround.vim Completely overhaul after/ftplugin files Use short-circuit for no-mapping check Correct g:current_compiler setting Consistently require 'nocompatible' for ftplugins Upgrade insert_suspend_hlsearch.vim Use `function!` consistently in ftplugins Fix comments in vim/filetype.vim Set 'comments' blank by default Add Xresources filenames Add more names to Vim Bash types
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<'