readline icon indicating copy to clipboard operation
readline copied to clipboard

Allow user to override the way the prompt is written

Open walljm opened this issue 4 years ago • 0 comments

This allows a user to override the way the Prompt is written so that changes to formatting can be introduced.

i.e.

System.ReadLine.WritePrompt = (prompt) => {
    Console.ForegroundColor = ConsoleColor.Yellow;
    Console.Write(prompt);
    Console.ResetColor();
};

walljm avatar Apr 09 '21 13:04 walljm