如何通过命令界面运行 AAA 命令?
How do I run the AAA command through the command interface?
例如,我将使用 asciidoc extension.
命令将文档导出到 html
通过vscode可以在终端中向运行写入什么命令?
或者你可以为命令创建一个任务,我通常通过命令托盘 运行 (Ctrl+Shift+P
)?
p.s。我对如何模拟命令不感兴趣。我想用 vscode 工具来执行它。
此任务(在 tasks.json 中)将 运行 该命令:
"tasks": [
{
"label": "asciiDoc to html", // whatever name you wish
// find the command name from the extension or from Keyboard Shortcuts
"command": "${command:asciidoc.saveHTML}",
"type": "shell",
"problemMatcher": []
}
}
运行 包含您要转换为当前编辑器的 asciiDoc 文件的任务。如果您愿意,可以将该任务分配给快捷方式(keybindings.json):
{
"key": "alt+r", // whatever keybinding you want
"command": "workbench.action.tasks.runTask",
"args": "asciiDoc to html" // same name here as in your task
}
例如,我将使用 asciidoc extension.
命令将文档导出到 html通过vscode可以在终端中向运行写入什么命令?
或者你可以为命令创建一个任务,我通常通过命令托盘 运行 (Ctrl+Shift+P
)?
p.s。我对如何模拟命令不感兴趣。我想用 vscode 工具来执行它。
此任务(在 tasks.json 中)将 运行 该命令:
"tasks": [
{
"label": "asciiDoc to html", // whatever name you wish
// find the command name from the extension or from Keyboard Shortcuts
"command": "${command:asciidoc.saveHTML}",
"type": "shell",
"problemMatcher": []
}
}
运行 包含您要转换为当前编辑器的 asciiDoc 文件的任务。如果您愿意,可以将该任务分配给快捷方式(keybindings.json):
{
"key": "alt+r", // whatever keybinding you want
"command": "workbench.action.tasks.runTask",
"args": "asciiDoc to html" // same name here as in your task
}