I have a similar question to: Commands color in spring shell 2 but I am more interested in how I can override the color of user input.
When I open my Spring Shell 2 application and start typing a command (before a command is executed), the text input is in red until I type a command that is valid, then the text turns a bold white color. Is there a way for me to override the red text input to be another color?
I was able to get the behavior I wanted by overriding the LineReader bean in org.springframework.shell.jline.JLineShellAutoConfiguration
In the 'if (best != null)' block, the if sets the text to bold when a candidate command is matched, where the else block sets the text to red.