答案 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