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

6 lines
198 B
Lua
Raw Normal View History

local shell = require("shell")
local completion = require("cc.shell.completion")
shell.setCompletionFunction("shell", completion.build(
{completion.anything, desc = "Command", optional = true}
))