在Textmate中,如何更改注释行的样式?

发布于 2024-08-21 13:25:34 字数 137 浏览 3 评论 0原文

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

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

发布评论

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

评论(2

哎呦我呸! 2024-08-28 13:25:34

首先,在打开的 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.

谈下烟灰 2024-08-28 13:25:34

在默认绑定下,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):

  • current line

// cursor on this line

  • All selected lines

// all these

// lines were

// selected

  • commenting from selection to end of line

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 */

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