我找不到在Visual Studio code中注释和取消注释多行代码的方法。
是否可以在Visual Studio Code中使用一些快捷方式注释和取消注释多行?如果有,怎么做?
我找不到在Visual Studio code中注释和取消注释多行代码的方法。
是否可以在Visual Studio Code中使用一些快捷方式注释和取消注释多行?如果有,怎么做?
当前回答
您可以在官方文档中看到所有可用的键绑定。
这是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 + /在mac中,您可以使用⌘+ /进行多个注释
// public function index()
// {
// $badgeIcon = BadgeIcon::all();
// return $this->showAll($badgeIcon);
// }
然后如果你想取消注释,那么再次选择这些行,然后再次按ctrl + /(在windows中)⌘+ /(在mac中)。
在mac上执行:CMD + Shift + 7
visual studio 2017我们做了一个:评论选择
Ctrl + K, Ctrl + C
按Ctrl+K快捷键。按Ctrl+C确认 http://visualstudioshortcuts.com/2017/
在我的例子中,Ubuntu的快捷键是ctrl+shift+A。
您可以使用下面相同的步骤查看现有的快捷方式。我发现默认的不方便,所以我使用下面的过程来更改IDE,使用注释中看到的'/'命令。
你可以通过进入“工具”菜单并选择“选项”来自定义键盘快捷键。然后在“环境”分支中选择“键盘”。从这里可以绑定Edit。评论选择和编辑。UncommentSelection命令到你想要的任何键盘快捷键。