mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 15:17:01 +00:00
8 lines
242 B
Lua
8 lines
242 B
Lua
|
|
-- calc command completion
|
||
|
|
local shell = require("shell")
|
||
|
|
local completion = require("cc.shell.completion")
|
||
|
|
|
||
|
|
shell.setCompletionFunction("calc", function(shell, args)
|
||
|
|
-- Calculator doesn't need parameters, return empty list
|
||
|
|
return {}
|
||
|
|
end)
|