跳转至内容
There is a version suitable for your browser's language settings. Would you like to go to the english language of the site?
主页文档

VS Code 菜单栏

H1

Milkio 在 VS Code 中的菜单栏是可以自定义的,拓展菜单栏是一件简单的事。

配置

编辑你的 /milkio.toml 文件,就可以添加菜单项并自定义所执行的脚本。

[menubar]
commands = [
{ name = 'Say Hello', script = 'echo Hello Milkio' },
{ name = 'Test All APIs', script = 'bun run ./index.ts --run-mode:API_TEST' },
]

脚本是通过 Bun 的 $ Shell 来运行的。Bun 实现了一个独立的 Shell,这意味着,你的脚本可以跨平台执行。在 Windows 下也能正常工作。