ide - phpstorm代码格式化问题

WBOY
Release: 2016-06-06 20:34:39
Original
1510 people have browsed it

使用phpstorm格式化代码的设置 function ')' 与 '{'保持同一行失败, setting中已经打勾设置,也都重启过phpstorm, 并没有作用. 我的设置如:
ide - phpstorm代码格式化问题

设置后phpstrom格式化还是老样:

<code>php</code><code>function you_func()
{
    return xxx;
}
</code>
Copy after login
Copy after login

但我需要的效果是:

<code>php</code><code>function you_func() {
    return xxx;
}
</code>
Copy after login
Copy after login

ps: 本人使用的phpstorm版本是8.0.1

回复内容:

使用phpstorm格式化代码的设置 function ')' 与 '{'保持同一行失败, setting中已经打勾设置,也都重启过phpstorm, 并没有作用. 我的设置如:
ide - phpstorm代码格式化问题

设置后phpstrom格式化还是老样:

<code>php</code><code>function you_func()
{
    return xxx;
}
</code>
Copy after login
Copy after login

但我需要的效果是:

<code>php</code><code>function you_func() {
    return xxx;
}
</code>
Copy after login
Copy after login

ps: 本人使用的phpstorm版本是8.0.1

你设置的不对,需要设置 function 后面的值为 End of Line 就可了
类的}也可以这样设置,希望可以帮到你
ide - phpstorm代码格式化问题

虽然我没用过phpstorm但是我用过同样是jetbrains出品的idea和pycharm,也遇到过类似的问题。
jetbrains产品的格式化选项中,warpping这一项的开头通常都有Keep when reformatting的内容。这一段的用处就是指定哪些地方如果已经有换行了,那么在格式化式保留这些换行,而不是去掉。这个功能我一般都是全关的。

ide - phpstorm代码格式化问题

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!