We're having some issues with the Jline library terminal when trying to use it's writer. When we try to write a string using the terminal writer's print statement, it's appending characters around the string.
Example:
When printing: terminal.writer().print("Username:");
We get the output string as "�[?1l�>�[?1000l�[?2004lUsername:�[?1h�=�[?2004h", where as we want to get only "Username:" as the output.
We've tried the solution from this link https://github.com/jline/jline3/issues/181 by setting the "BRACKETED_PASTE_OFF". But that didn't work.