gpt4 book ai didi

php - eclipse PDT : How do I get it to format my PHP arrays like VIM?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:57:20 24 4
gpt4 key购买 nike

我一直在努力让 Eclipse 像 vim 缩进一样格式化我的 php 数组。

eclipse 做了什么(按 CTRL+SHIFT+F)

<?php
$array = array(
'key1' => 'value1',
'key2' => array(
'child_key1' => 'child_value1',
'child_key2' => 'child_value2',
),
);

vim 做了什么(按键:gg=G)

<?php
$array = array(
'key1' => 'value1',
'key2' => array(
'child_key1' => 'child_value1',
'child_key2' => 'child_value2',
),
);

我试过在 Preferences>PHP>Code Style>Formatter and Preferences>PHP>Editor>Templates 中查找,但没有找到任何东西。
提前致谢。
可汗

最佳答案

查看此项目。把jar文件放在你的eclipse/dropins文件夹下,然后你可以去preferences/php/code style/formatter。它在“杂项”部分(单击选项选项卡上的箭头展开)下有一个很酷的“对齐 => 数组中的列位置”选项,它可以执行与您想要的类似的操作。使用 Ctrl-Shift-F 设置整个文件的格式,或右键单击所选内容并选中“源 -> 格式...”选项。

http://de.sourceforge.jp/projects/pdt-tools/releases/?package_id=8764

关于php - eclipse PDT : How do I get it to format my PHP arrays like VIM?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1643151/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com