aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/spellfile_local.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-12-19 18:30:10 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-12-19 18:30:10 +1300
commit4d91af5c33739dabd2412c94b57123cb14821bf4 (patch)
treec5a0f0791fc1b696a97d73018017b81daf0667c8 /vim/plugin/spellfile_local.vim
parentMerge branch 'release/v8.7.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-8.8.0.tar.gz (sig)
dotfiles-8.8.0.zip
Merge branch 'release/v8.8.0'v8.8.0
* release/v8.8.0: Update spellfile_local.vim plugin to v0.1.1 Update redact_pass.vim plugin to v2.2.0 Spin spellfile_local plugin out into new plugin Use four spaces for indentation in Markdown in Vim
Diffstat (limited to 'vim/plugin/spellfile_local.vim')
-rw-r--r--vim/plugin/spellfile_local.vim20
1 files changed, 0 insertions, 20 deletions
diff --git a/vim/plugin/spellfile_local.vim b/vim/plugin/spellfile_local.vim
deleted file mode 100644
index 07307754..00000000
--- a/vim/plugin/spellfile_local.vim
+++ /dev/null
@@ -1,20 +0,0 @@
-"
-" spellfile_local.vim: Set extra 'spellfile' elements for full file paths and
-" filetype, to give the option of adding to file-specific or filetype-specific
-" spelling word lists.
-"
-" Author: Tom Ryder <tom@sanctum.geek.nz>
-" License: Same as Vim itself
-"
-if exists('loaded_spellfile_local') || &compatible
- finish
-endif
-let loaded_spellfile_local = 1
-
-" For various events involving establishing or renaming a file buffer or
-" changing its filetype, rebuild the 'spellfile' definition accordingly
-"
-augroup spellfile_local
- autocmd BufFilePost,BufNewFile,BufRead,EncodingChanged,FileType *
- \ call spellfile_local#()
-augroup END