2072 / 2072/PHP-Indenting-for-VIm
Indenting of function arguments
Aperta
complex
Feature Request
- Lingua principale
- Vim Script
- Stelle
- 130
- Fork
- 29
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Hi.
There's a case where the indentation is not what I would expect.
For example, I get the following indentation:
```
a(
b(
c(
)
)
)
```
But I get this indentation for similar code:
```
a($o
->b($o
->c(
)
)
)
```
The first argument list gets indented by the following ones use the same indentation level.
I expected this:
```
a($o
->b($o
->c(
)
)
)
```
Is that possible?
Thanks for your work.
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.