In PhpStrom there are some facilities which are short array
Align when multiline
and many more
Here is an example
Now I want to align array in vs-code ....
How can I do that?
This is a normal Array
$x=array(
0 => "zero",
123122 => "one two three",
251=> "two five"
);
Now I want Like this
$x=[
0 => "zero",
123 => "one two three",
25 => "two five"
];
Is this possible is vs-code?