aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/php.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-29 23:36:46 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-29 23:36:46 +1300
commit381b85d5067f496d65faa9fab54752299f61ad98 (patch)
treed98a870d8f3f5bdc18e87dd12fa71d960be7daf4 /vim/after/ftplugin/php.vim
parentAdd missing detail to a comment (diff)
downloaddotfiles-381b85d5067f496d65faa9fab54752299f61ad98.tar.gz
dotfiles-381b85d5067f496d65faa9fab54752299f61ad98.zip
Remove some overzealous b:undo_* setting
It's not that these shouldn't be set, it's more that it's the wrong place to do it, especially before they've caused any actual problems.
Diffstat (limited to 'vim/after/ftplugin/php.vim')
-rw-r--r--vim/after/ftplugin/php.vim6
1 files changed, 0 insertions, 6 deletions
diff --git a/vim/after/ftplugin/php.vim b/vim/after/ftplugin/php.vim
index 172256db..688166ba 100644
--- a/vim/after/ftplugin/php.vim
+++ b/vim/after/ftplugin/php.vim
@@ -16,9 +16,3 @@ let b:undo_ftplugin .= '|setlocal keywordprg<'
if exists('g:no_plugin_maps') || exists('g:no_php_maps')
finish
endif
-
-" Get rid of the core ftplugin's square-bracket maps on unload
-let b:undo_ftplugin .= '|nunmap <buffer> [['
- \ . '|ounmap <buffer> [['
- \ . '|nunmap <buffer> ]]'
- \ . '|ounmap <buffer> ]]'