netbeans 中注释代码的不需要的缩进
首先,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这在 7.1 中是否可行,但在 Netbeans 7.2 中肯定有效。你可以在
Java -> 中找到它。评论
-启用评论格式
。禁用格式化块注释
应该就足够了。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
. DisablingFormat Block Comments
should be enough.打开
工具
->选项
->Keymap
,然后查找名为“重新缩进当前行或选择”的操作并设置您想要的任何快捷方式。Open
Tools
->Options
->Keymap
, then look for the action called "Re-indent current line or Selection" and set whatever shortcut you want.