VS代码+用于结束行的JavaScript快捷方式 - ';' - 并且转到下一行

时间:2018-06-05 14:56:06

标签: visual-studio-code

以下是我想要做的例子:

From this to this

我在WebStorm中使用了Ctrl + Shift + T但现在我仍然坚持在VsCode上找到相同的快捷方式。有什么建议吗?

3 个答案:

答案 0 :(得分:2)

我认为您需要为此设置一个宏,它不是内置的。请参阅vscode macro extension

这在您的设置中:

"macros": {

    "insert semicolon and goto next line": [

        "cursorLineEnd",
        {
          "command": "type",
          "args": {
            "text": ";"
          }
        },
        "editor.action.insertLineAfter"
    ]
}

为此设置键绑定:

{
  "key": "ctrl+shift+;",
  "command": "macros.insert semicolon and goto next line"
},

答案 1 :(得分:1)

我遇到了同样的问题,并且使用快捷键 Ctrl + Enter

解决了

答案 2 :(得分:-1)

您可以安装Auto Insert Semicolon扩展名。

对我来说很好。快捷方式: alt+enter