aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/php.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftplugin/php.vim')
-rw-r--r--vim/ftplugin/php.vim14
1 files changed, 1 insertions, 13 deletions
diff --git a/vim/ftplugin/php.vim b/vim/ftplugin/php.vim
index 39cec4b1..35292e15 100644
--- a/vim/ftplugin/php.vim
+++ b/vim/ftplugin/php.vim
@@ -6,17 +6,11 @@
" without providing a variable check to stop it. That causes absurd problems
" with defining HTML checkers/linters in the rest of my files.
"
-if exists('b:did_ftplugin')
+if exists('b:did_ftplugin') || &compatible
finish
endif
let b:did_ftplugin = 1
-" Support line continuation for this file
-if &compatible
- let s:cpoptions_save = &cpoptions
- set cpoptions-=C
-endif
-
" Define keywords for matchit.vim
if exists('g:loaded_matchit')
let b:match_words = '<?php:?>'
@@ -30,9 +24,3 @@ endif
" Define how to undo this plugin's settings
let b:undo_ftplugin = 'unlet b:match_words'
-
-" Restore 'cpoptions' setting if we touched it
-if exists('s:cpoptions_save')
- let &cpoptions = s:cpoptions_save
- unlet s:cpoptions_save
-endif