A lot of clean up

This commit is contained in:
Dan 2025-12-31 12:50:21 +00:00
parent d89744f46f
commit 931fa141dc
62 changed files with 447 additions and 993 deletions

View file

@ -7,9 +7,11 @@ if (window.terminal) {
const commands = Object.keys(window.terminal.commands).sort();
commands.forEach((cmd) => {
const desc =
window.terminal.commands[cmd].description || "No description";
window.terminal.print(` ${cmd.padEnd(15)} - ${desc}`);
const desc = window.terminal.commands[cmd].description;
// Skip commands with no description (hidden commands)
if (desc) {
window.terminal.print(` ${cmd.padEnd(15)} - ${desc}`);
}
});
window.terminal.print("");
});
@ -20,13 +22,13 @@ if (window.terminal) {
});
// Echo command
window.terminal.registerCommand(
"echo",
"Echo text to the terminal",
(args) => {
window.terminal.print(args.join(" "));
},
);
// window.terminal.registerCommand(
// "echo",
// "Echo text to the terminal",
// (args) => {
// window.terminal.print(args.join(" "));
// },
// );
// History command
window.terminal.registerCommand("history", "Show command history", () => {