-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework fix of terminal width support on MINGW (fixes #290) #291
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You removed support for differentiating stdout
and stderr
, is there any reason for that ?
There are two main reasons:
The |
Supporting both stdout and stderr is important imho.
That's a pretty common use case for java apps running in terminals.
Well, it calls
The output should still be usable and report the correct width.
Then we could go to JNI ? |
You're right, I didn't think about pipes and redirections. So the first reason is not relevant but the second still is. I mean Another any maybe the best option is indeed JNI. The |
No description provided.