From 993723865d4368d1c5c3d4d07932f441ff870c01 Mon Sep 17 00:00:00 2001 From: b1ek Date: Mon, 20 Mar 2023 08:57:19 +1000 Subject: [PATCH] print cmds separated by tabs --- src/emulator/commands/cmds.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emulator/commands/cmds.js b/src/emulator/commands/cmds.js index 7fbbd63..2100d07 100644 --- a/src/emulator/commands/cmds.js +++ b/src/emulator/commands/cmds.js @@ -19,7 +19,7 @@ module.exports = (argv, terminal) => { terminal.writeln(''); i = 0; } else i++; - terminal.write('\033[1;32m' + x + '\033[0m '); + terminal.write('\033[1;32m' + x + '\033[0m\t'); }); terminal.writeln(''); } \ No newline at end of file