NetBeans 代码模板,带注释
我在 NB 6.9.1 中有以下代码模板:
function ${functionName}($$${param})
{
${selection}${cursor}
} // end: ${functionName} ()
NB 将其格式化为:
function testFuncName($param)
{
}
// end: testFuncName ()
NB 不断将最后一行的注释推到比结束括号低的两个换行符处,但我希望它完全符合包含结束括号的行。 有什么想法吗?
[编辑] 如果针对 PHP 语言,环境:Ubuntu 10.04
I have following code template in NB 6.9.1:
function ${functionName}($${param})
{
${selection}${cursor}
} // end: ${functionName} ()
NB formats this to:
function testFuncName($param)
{
}
// end: testFuncName ()
NB keeps to push comment from last line two linebreaks lower than ending bracket, but i want to have it exactly in line witch contains ending bracket.
Any ideas?
[EDIT]
This if for PHP language, env: Ubuntu 10.04
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调整代码格式选项(工具菜单->选项,单击顶部的“编辑器”,单击“格式”选项卡,然后将“语言”设置为“PHP”)。
在“空行”类别中,将“After Function”设置为零以消除
}
和注释之间的空行。我不确定哪个格式选项正在插入另一个换行符,但您应该能够调整设置并找出答案。Adjust your code formatting options (Tools menu->options, click "Editor" at the top, click the "Formatting" tab, and set "Language" to "PHP").
In the "Blank Lines" category, set "After Function" to zero to eliminate the blank line between the
}
and the comment. I'm not sure which formatting option is inserting the other newline, but you should be able to tweak the settings and figure it out.