Question

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.

Was it helpful?

Solution

You can figure out where the relevant options were set with

:verbose set smartindent? ai? indentexpr?

There is not much point in scrutinizing the vimrc file if the options are set somewhere else. (I had a quick look: Line 28 is the part that interests me the most.) BTW, I hope you mean ~/.vim/indent/ and not /.vim/indent/.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top