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