我找不到在Visual Studio code中注释和取消注释多行代码的方法。

是否可以在Visual Studio Code中使用一些快捷方式注释和取消注释多行?如果有,怎么做?


当前回答

VS代码的所有键盘快捷键都可以在链接中找到:link

添加Line注释Ctrl+K Ctrl+C 删除一行注释Ctrl+K Ctrl+U 更多快捷键Ctrl+/

其他回答

CTRL + SHIFT + A CSS多行

Ubuntu 16 VSCode版本1.17.2

您可以在官方文档中看到所有可用的键绑定。

这是osx的相关位:

Key     Command

⌘K ⌘C   Add Line Comment    
⌘K ⌘U   Remove Line Comment 
⌘/      Toggle Line Comment 
⇧⌥A     Toggle Block Comment

您需要首先选择想要注释的行,然后执行上述快捷方式,即在osx上执行⌘/ Ctrl/在Windows上。

在Windows中

选择要注释的行。 然后按“Ctrl + /”

在windows中,您需要按ctrl + /在mac中,您可以使用⌘+ /进行多个注释

// public function index()
// {
//     $badgeIcon = BadgeIcon::all();
//     return $this->showAll($badgeIcon);
// }

然后如果你想取消注释,那么再次选择这些行,然后再次按ctrl + /(在windows中)⌘+ /(在mac中)。

如何注释掉VS Code中的多行/单行:


一样:

Shift + Option + A:

/* multiline    
   comment */

CMD + /:

// single line comment    

窗口:

Shift + Alt + A:

 /* multiline
    comment */

按下CTRL + /:

// single line comment

如何重新映射/更改这些快捷方式?

Windows:文件>首选项>键盘快捷方式。

MacOS:代码>首选项>键盘快捷键。

您可以通过键绑定(键名)和命令名在列表中搜索。


阅读:如何从另一个文本编辑器(Sublime, Atom等)设置快捷方式?

官方文档:Visual Studio代码的键绑定