From f15784160db1cc1d6ca731086883ca0c9de558c1 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Thu, 11 Jun 2026 21:33:15 +0200 Subject: [PATCH] Replace command history padding '#' with spaces in console output --- Processes/CliProcess.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Processes/CliProcess.cs b/Processes/CliProcess.cs index 2469687..82cffe6 100644 --- a/Processes/CliProcess.cs +++ b/Processes/CliProcess.cs @@ -64,7 +64,7 @@ internal class CliProcess() : Process("Cli") { historyIndex = Math.Max(historyIndex - 1, 0); currentInput = CommandManager.GetCommandHistory()[historyIndex]; - Console.Write("\r> " + currentInput + new string('#', Console.WindowWidth - currentInput.Length - 2)); + Console.Write("\r> " + currentInput + new string(' ', Console.WindowWidth - currentInput.Length - 2)); Console.CursorLeft = 0; Console.CursorTop--; Console.Write("> " + currentInput); @@ -75,7 +75,7 @@ internal class CliProcess() : Process("Cli") { historyIndex = Math.Min(historyIndex + 1, CommandManager.GetCommandHistory().Count - 1); currentInput = CommandManager.GetCommandHistory()[historyIndex]; - Console.Write("\r> " + currentInput + new string('#', Console.WindowWidth - currentInput.Length - 2)); + Console.Write("\r> " + currentInput + new string(' ', Console.WindowWidth - currentInput.Length - 2)); Console.CursorLeft = 0; Console.CursorTop--; Console.Write("> " + currentInput);