From a14bc50707592944bf6e327c912bb197de98ec00 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 4 Jun 2018 22:35:49 +1200 Subject: Move Markdown and PHP ftplugins from after dir Because we use our own private copies of the primary filetype plugins, they'll get loaded in the correct order from here. Also adjust Makefile to accommodate the extra level. --- vim/after/ftplugin/markdown/spell.vim | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 vim/after/ftplugin/markdown/spell.vim (limited to 'vim/after/ftplugin/markdown/spell.vim') diff --git a/vim/after/ftplugin/markdown/spell.vim b/vim/after/ftplugin/markdown/spell.vim deleted file mode 100644 index 05fc7c00..00000000 --- a/vim/after/ftplugin/markdown/spell.vim +++ /dev/null @@ -1,21 +0,0 @@ -" 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_markdown_spell') || &compatible - finish -endif -if !has('spell') - finish -endif -let b:did_ftplugin_markdown_spell = 1 -if exists('b:undo_ftplugin') - let b:undo_ftplugin = b:undo_ftplugin - \ . '|unlet b:did_ftplugin_markdown_spell' -endif - -" Spellcheck documents by default -setlocal spell -if exists('b:undo_ftplugin') - let b:undo_ftplugin = b:undo_ftplugin - \ . '|setlocal spell<' -endif -- cgit v1.2.3