mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 15:01:12 +00:00
6 lines
188 B
Lua
6 lines
188 B
Lua
|
|
local shell = require("shell")
|
||
|
|
local completion = require("cc.shell.completion")
|
||
|
|
|
||
|
|
shell.setCompletionFunction("programs", completion.build(
|
||
|
|
-- programs command doesn't take parameters
|
||
|
|
))
|