NetBeans 代码模板,带注释

发布于 2024-09-18 06:42:10 字数 378 浏览 9 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦屿孤独相伴 2024-09-25 06:42:14

调整代码格式选项(工具菜单->选项,单击顶部的“编辑器”,单击“格式”选项卡,然后将“语言”设置为“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文