VIM数组格式

时间:2017-06-26 15:34:55

标签: vim

在VIM中是否有办法以键和值之间的空间始终相同的方式格式化数组?

喜欢这种格式:

$array = array(
    'key1' => 'value1',
    'key2' => 'value2',
    '3' => 'value3',
    'thisis4' => 'value 4!'
);

以下内容:

$array = array(
    'key1'       =>    'value1',
    'key2'       =>    'value2',
    '3'          =>    'value3',
    'thisis4'    =>    'value 4!'
);

在示例中,我使用了PHP语法,但问题与PHP无关。

0 个答案:

没有答案