如何在 PhpStorm IDE 中注释多行?

发布于 2024-12-04 13:07:12 字数 434 浏览 2 评论 0原文

我使用 PhpStorm 编辑 Apache 的 PHP 文件和配置文件。如何对选中的块进行注释并设置符号注释? 例如,我

   <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>

想要

   #<Directory />
   #    Options FollowSymLinks
   #    AllowOverride None
   #    Order deny,allow
   #    Deny from all
   #</Directory>

I use PhpStorm to edit PHP files and configuration files for Apache. How to comment on the selected block and set the symbol comment?
I want,for example,

   <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>

to

   #<Directory />
   #    Options FollowSymLinks
   #    AllowOverride None
   #    Order deny,allow
   #    Deny from all
   #</Directory>

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

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

发布评论

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

评论(4

凡间太子 2024-12-11 13:07:12

选择多行并使用带有行注释的注释(Windows 上默认键盘映射中的Ctrl+/,可以在设置中更改| 键盘映射)。

还有带有块注释的注释,适用于具有代码块特殊样式注释的文件类型(不适用于 .htaccess)。

Select multiple lines and use the Comment with Line Comment (Ctrl+/ in the default keymap on Windows, can be changed in Settings | Keymap).

There is also Comment with Block Comment that works for file types that have special style comment for code blocks (not applicable for .htaccess).

方圜几里 2024-12-11 13:07:12

有两种可能性(在注释块可用的情况下,如 php、json 等文件)

第一个
Windows:Ctrl+/
Mac: +/

将产生

// comment

第二个
Windows:Ctrl+Shift+/
Mac: ++/

将产生

/* comment */

There are two possibilities (in cases where block of comment are available like php, json etc files)

First
Windows: Ctrl+/
Mac: +/

will produce

// comment

Second
Windows: Ctrl+Shift+/
Mac: ++/

will produce

/* comment */
太阳男子 2024-12-11 13:07:12

对于欧洲键盘,您需要添加一个新的快捷方式:

  1. 转到 Preferences >键盘映射
  2. 在这里搜索“评论”
  3. 右键单击您的操作(即“使用行注释进行评论”)并选择添加键盘快捷键
  4. 现在在键盘上输入您想要的快捷键(对于MacCMD + SHIFT + 7)然后就可以了

For European keyboard you need to add a new shortcut:

  1. Go to Preferences > Keymap
  2. Here search for "comment"
  3. Right click on your action (ie. "Comment with line comment") and choose Add keyboard shortcut
  4. Now digit on keyboard your wanted shortcut (for Mac CMD + SHIFT + 7) and OK, that's it
桃酥萝莉 2024-12-11 13:07:12

在苹果电脑中:

block some lines of codes
command + /

in mac :

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