Correctly indented by *php-mode*: ```php <?php $a = [ 'aaa' => [ 'bee' => 2, ], 'foo' => [ 'bar' => 1, ], 'lee' => 2, ]; ``` Comment out an array element: ```php <?php $a = [ 'aaa' => [ 'bee' => 2, ], // 'foo' => [ // 'bar' => 1, // ], 'lee' => 2, ]; ``` Request auto-indentation (i.e., <kbd>Tab</kbd> over lines, `indent-region`, etc.): ```php <?php $a = [ 'aaa' => [ 'bee' => 2, ], // 'foo' => [ // 'bar' => 1, // ], 'lee' => 2, ]; ``` * php-mode 20230103.1226 * `(php-enable-psr2-coding-style)`