Visual Studio Code: "Line Comment and Move down"组合键的键盘快捷方式

3
有没有办法给“切换行注释并将光标下移一行”分配键盘快捷键?

1
https://dev59.com/N1oU5IYBdhLWcg3w35rN - Alex
太棒了!运行得像魔法一样顺畅! - Michal Molhanec
1个回答

0

源自评论:

  • 安装multi-command
  • 将以下内容添加到你的settings.json文件中:
    "multiCommand.commands": [
        {
            "command": "multiCommand.commentDown",
            "sequence": [
                "editor.action.addCommentLine",
                "cursorDown",
            ]
        },
    ],

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接