Files
LeonOS/data/computercraft/lua/rom/completions/app.lua

7 lines
289 B
Lua
Raw Normal View History

local shell = require("shell")
local completion = require("cc.shell.completion")
shell.setCompletionFunction("app", completion.build(
{completion.choice, choices = {"install", "update", "remove", "list"}, desc = "Command"},
{completion.anything, desc = "App name", optional = true}
))