Files
LeonOS/data/computercraft/lua/rom/packages/example-pkg/1.0.0/completions/example.lua
Leonmmcoset a7b1ad4cba docs(example-pkg): 将注释和用户界面文本从中文翻译为英文
将示例包的注释和用户界面文本从中文翻译为英文,以提高国际兼容性。修改包括命令补全描述、程序标题格式和用户指南文本。
2025-09-02 08:52:28 +08:00

10 lines
294 B
Lua

-- example command completion
local shell = require('shell')
local completion = require('completion')
-- Set up completion for example command
shell.setCompletionFunction('example', completion.build({
-- 这里可以添加example命令的补全逻辑
completion.choice{'--help', '-h'}
}))