mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 06:47:00 +00:00
6 lines
208 B
Lua
6 lines
208 B
Lua
local shell = require("shell")
|
|
local completion = require("cc.shell.completion")
|
|
|
|
shell.setCompletionFunction("history", completion.build(
|
|
{completion.number, desc = "Number of entries", optional = true}
|
|
)) |