标签: visual-studio-code vscode-extensions
我正在寻找vscode API调用来插入关于缩进的换行符
像这样...... vscode.commands.executeCommand("cursorDown"); // this just puts the cursor in the next line
vscode.commands.executeCommand("cursorDown"); // this just puts the cursor in the next line
答案 0 :(得分:1)
您可以使用editor.action.insertLineAfter命令。我使用vscode 1.22.2使用命令调色板尝试了它,它完成了你的gif显示的内容。
editor.action.insertLineAfter