netbeans 中注释代码的不需要的缩进

发布于 2025-01-04 06:07:14 字数 744 浏览 2 评论 0原文

首先,我使用 NetBeans IDE 7.1(内部版本 201112071828)。

我有这段代码

<script>
    onload = function()
    {
        tooltip.init();
        var myTable = new SortedTable();
    }
</script>

如果将光标放在 tooltip.init(); 行并按 ctrl+shift+ c 它注释掉了这一行。如果我重复此组合,该行将按预期取消注释。

现在,如果我评论了这篇文章并点击 alt+shift+f 来格式化我的代码,注释行将缩进到其余部分像这样的代码块:

<script>
    onload = function()
    {
        //            tooltip.init();
        var myTable = new SortedTable();
    }
</script>

这种缩进破坏了注释快捷方式的行为,按下时它将在行的开头添加第二个注释。

有什么方法可以禁用注释代码的缩进吗?我搜索了完整的工具->选项->编辑器->格式,但找不到此设置。

First of all i am using NetBeans IDE 7.1 (Build 201112071828).

I have this piece of code

<script>
    onload = function()
    {
        tooltip.init();
        var myTable = new SortedTable();
    }
</script>

If if place the cursor at the line tooltip.init(); and press ctrl+shift+c it comments out this line. If i repeat this combination, the line is uncommented as expected.

Now, if i have commented this piece and hit alt+shift+f to format my code, the commented line will be indented to the rest of the codeblock like this:

<script>
    onload = function()
    {
        //            tooltip.init();
        var myTable = new SortedTable();
    }
</script>

This indentation breaks the behavior of the comment shortcut, which will add a second comment at the beginning of the line on press.

Is there any way i can disable indentation of commented code? I have searched the complete Tools->Options->Editor->Formatting and was not able to find this setting.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

魂牵梦绕锁你心扉 2025-01-11 06:07:14

我不确定这在 7.1 中是否可行,但在 Netbeans 7.2 中肯定有效。你可以在Java -> 中找到它。评论 - 启用评论格式。禁用格式化块注释应该就足够了。

netbeans 格式设置

I'm not sure if this was possible in 7.1, but definitely works in Netbeans 7.2. You can find it in Java -> Comments - Enable Comments Formatting. Disabling Format Block Comments should be enough.

netbeans formatting setting

极度宠爱 2025-01-11 06:07:14

打开工具 -> 选项 -> Keymap,然后查找名为“重新缩进当前行或选择”的操作并设置您想要的任何快捷方式。

Open Tools -> Options -> Keymap, then look for the action called "Re-indent current line or Selection" and set whatever shortcut you want.

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