aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/php.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:19:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:19:47 +1200
commitbe4189de5c70bc092518c1fe26efa960b7a4d3f6 (patch)
treefa736186679f6d4ee78704497ef39c61e93a1420 /vim/after/ftplugin/php.vim
parentMerge branch 'release/v1.11.0' into develop (diff)
downloaddotfiles-be4189de5c70bc092518c1fe26efa960b7a4d3f6.tar.gz
dotfiles-be4189de5c70bc092518c1fe26efa960b7a4d3f6.zip
Remove unneeded matchit set ex PHP after ftplugin
Diffstat (limited to 'vim/after/ftplugin/php.vim')
-rw-r--r--vim/after/ftplugin/php.vim12
1 files changed, 0 insertions, 12 deletions
diff --git a/vim/after/ftplugin/php.vim b/vim/after/ftplugin/php.vim
index ee38ec3b..41fab89f 100644
--- a/vim/after/ftplugin/php.vim
+++ b/vim/after/ftplugin/php.vim
@@ -15,18 +15,6 @@ setlocal formatoptions+=or
let b:undo_ftplugin = b:undo_ftplugin
\ . '|setlocal comments< formatoptions<'
-" Define keywords for matchit.vim
-if exists('g:loaded_matchit')
- let b:match_words = '<?php:?>'
- \ . ',\<do\>:\<while\>'
- \ . ',\<for\>:\<endfor\>'
- \ . ',\<foreach\>:\<endforeach\>'
- \ . ',\<if\>:\<elseif\>:\<else\>:\<endif\>'
- \ . ',\<switch\>:\<endswitch\>'
- \ . ',\<while\>:\<endwhile\>'
- let b:undo_ftplugin = 'unlet b:match_words'
-endif
-
" Stop here if the user doesn't want ftplugin mappings
if exists('g:no_plugin_maps') || exists('g:no_php_maps')
finish