Closed avl42 closed 10 months ago
Yeah, it's outdated after some of the refactorings. Will see if I can remember what the appropriate way to do this now is.
Made it protected, seems most straight-forward
Commit here: https://github.com/mabe02/lanterna/commit/2f4e3b7f37d8645ef001c0dcc05d7ef2ad749044
For some reason Github didn't auto-detect it
https://github.com/mabe02/lanterna/blob/54f5b4ca6b33eaa41cc666f5d7bce8f08ddc132a/src/main/java/com/googlecode/lanterna/terminal/ansi/UnixTerminal.java#L29
Here it suggests to override
getSTTYCommand()
, but that method is private in UnixLikeTTYTerminal. Either it should suggest overridingrunSTTYCommand()
, orgetSTTYCommand()
should be made "protected". I'd prefer the latter of the two.