Consider this scenario :
function name() {
$query = "select { some-value ";
}
Now, While typing the closing curly brace }
, the line automatically indents to the left side like this :
function name() {
$query = "select { some-value }";
}
This is very much annoying. Each time, I have to indent it once again to the right. Secondly, consider this :
Class Name {
$var = 'val'
}
Now, when I type semicolon ;
, the line automatically indents to the left like this :
Class Name {
$var = 'val';
}
I also tried downloading the php-correct-indenting
plugin and putting it inside the ~/.vim/indent/
directory, but still the same problem exists. BTW, I use vim 7.4.