aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/text.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-02 11:07:56 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-02 11:07:56 +1200
commitb6cfedbbf4e02e71fbd0e44a70a33227ce03c0ed (patch)
tree45fca8d773e13b2129529ba188f7c39034fd8fbd /vim/after/ftplugin/text.vim
parentMerge branch 'release/v1.14.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-b6cfedbbf4e02e71fbd0e44a70a33227ce03c0ed.tar.gz
dotfiles-b6cfedbbf4e02e71fbd0e44a70a33227ce03c0ed.zip
Merge branch 'release/v1.15.0'v1.15.0
* release/v1.15.0: (37 commits) Bump VERSION Reimplement fallback for fixed_join.vim Add insert_cancel.vim plugin and configuration Clear away stock vim ftplugin's buffer maps Correct \V mapping Include install-vim-plugin in install-vim target Break up \o and \O mapping comment Move plugin-specific settings into ~/.vim/plugin Remove custom digraphs Remove unnecessary value report from \u \z maps Add \m, \M, \v, and \V mappings Allow range for \d and \D bindings Swap \c and \C bindings Rearrange mappings a little more Remove unused mappings Simplify Ctrl-L Vim map Reorder mappings Remove conditional around \d,\D maps Remove range strip from :& rebind Prefer "remap" to "rebind" ...
Diffstat (limited to 'vim/after/ftplugin/text.vim')
-rw-r--r--vim/after/ftplugin/text.vim5
1 files changed, 4 insertions, 1 deletions
diff --git a/vim/after/ftplugin/text.vim b/vim/after/ftplugin/text.vim
index 22b1c27b..cd35231e 100644
--- a/vim/after/ftplugin/text.vim
+++ b/vim/after/ftplugin/text.vim
@@ -1,5 +1,8 @@
" Extra configuration for 'text' filetypes
-if &compatible || v:version < 700 || exists('b:did_ftplugin_after')
+if exists('b:did_ftplugin_after') || &compatible
+ finish
+endif
+if v:version < 700
finish
endif
if &filetype !=# 'text'