2072 / PHP-Indenting-for-VIm

The official VIm indent script for PHP
http://www.2072productions.com/to/phpindent.txt
128 stars 29 forks source link

First arm of match expression not indented correctly #86

Closed drrcknlsn closed 1 year ago

drrcknlsn commented 1 year ago

The first line of a match expression is not indented:

<?php

match (null) {
'foo' => 1,
    'bar' => 2,
    'baz' => 3,
};
2072 commented 1 year ago

"New" feature from PHP 8: https://www.php.net/manual/en/control-structures.match.php. match support is not implemented in the current version of the indent script.

Several format to support: