katie/data/scripts/complete.qs
Ivailo Monev a45f8b3bd8 convert resources to static data
images are in PNG format for now but that is likely to change

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-10-29 10:17:54 +03:00

14 lines
361 B
Text

name = "complete";
group = "void";
shortDescription = "List the completions for the rest of the line as a command";
longDescription = "";
function execute() {
var prefix = (arguments.length > 0) ? arguments[0] : "";
var completions = getCommandCompletions(prefix);
for (var i = 0; i < completions.length; ++i)
message(completions[i]);
}