在Textmate中,如何更改注释行的样式?
当我在 Textmate 中选择一行并执行注释行快捷方式(Mac 上的 command-L)时,它使用 C 样式注释(即 /* ... */)。如何将其更改为使用 C++ 样式注释(即 // ...)。我正在编辑 Javascript,如果这有影响的话。谢谢。
When I select a line in Textmate and do the shortcut for comment line (command-L on Mac), it uses C-style comments (ie. /* ... */). How do I change it to use C++ style comments (ie. // ...). I am editing Javascript if that makes a difference. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,在打开的 TM 窗口中:
转到控制栏(位于最底部)
单击灰色圆圈中带有大写“L”的图标(语言
图标),然后
选择语言 (javascript)
您单击(完成此操作后,您应该在语言图标左侧看到javascript)
cmd-/(命令 + 正斜杠)为您提供适合语言的注释符号。
First, in an open TM window:
go to the control bar (at the very bottom)
click the icon with an upper-case "L" in a gray circle (the Language
icon), then
select the language (javascript) from the pop-up that appears after
you click (after you've done this, you should see javascript just to the left of the language icon)
cmd-/ (command + forward slash) will give you the language-appropriate comment symbol.
在默认绑定下,
Cmd-L
在 Textmate 中弹出“转到行”弹出窗口。在 Textmate 2 alpha (.9561) 中,使用 Javascript 或 C,您可以使用:
1)
Cmd-/
用于行注释(Bundles->Source->Comments->Comment Line):// 光标在此行
// 所有这些
// 行
// 已选定
在这一行中,仅选择了哈希字符串
// ######
2)
Cmd-Opt-/
用于块注释选择(捆绑包->源->注释->插入块注释)/* 所有
这些
行
是
<代码>已选择*/
Under default bindings,
Cmd-L
brings up the Go to line popup in Textmate.In Textmate 2 alpha (.9561), with Javascript or C, you can use:
1)
Cmd-/
for line commenting (Bundles->Source->Comments->Comment Line):// cursor on this line
// all these
// lines were
// selected
On this line, only the string of hashes
// ###### was selected
2)
Cmd-Opt-/
for block commenting selection (Bundles->Source->Comments->Insert Block Comment)/* all
these
lines
were
selected */