如何在 PhpStorm IDE 中注释多行?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
选择多行并使用带有行注释的注释(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).
有两种可能性(在注释块可用的情况下,如 php、json 等文件)
第一个
Windows:Ctrl+/
Mac: ⌘+/
将产生
第二个
Windows:Ctrl+Shift+/
Mac: ⌘+⌥+/
将产生
There are two possibilities (in cases where block of comment are available like php, json etc files)
First
Windows: Ctrl+/
Mac: ⌘+/
will produce
Second
Windows: Ctrl+Shift+/
Mac: ⌘+⌥+/
will produce
对于欧洲键盘,您需要添加一个新的快捷方式:
Preferences >键盘映射
添加键盘快捷键
CMD + SHIFT + 7
)然后就可以了For European keyboard you need to add a new shortcut:
Preferences > Keymap
Add keyboard shortcut
CMD + SHIFT + 7
) and OK, that's it在苹果电脑中:
in mac :