From 9ca75421a60362f5a1ebc2c42d208f832f83de16 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 1 Feb 2018 17:57:02 +1300 Subject: Adjust explanation of PHP indent skip Include the variable guard, just for completeness' sake. --- vim/indent/php.vim | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/vim/indent/php.vim b/vim/indent/php.vim index d0fb1f8f..6a61f105 100644 --- a/vim/indent/php.vim +++ b/vim/indent/php.vim @@ -1,4 +1,10 @@ -" Lie to the php.vim indent file and tell it that it's already loaded itself, -" to stop it processing its ridiculous expression-based indenting that never -" seems to do what I want. Just plain autoindent is fine. +" Replace Vim's stock PHP indent rules. They're very complicated and don't +" work in a predictable way. +if exists('b:did_indent') + finish +endif let b:did_indent = 1 + +" Easier just to use 'autoindent'; not perfect, but predictable. +setlocal autoindent +let b:undo_indent = 'setlocal autoindent<' -- cgit v1.2.3