Timon
Timon
I am getting the same error on Linux. It happens only when I change the pitch especially less than the value 1.0.
I have the same
Thanks for filing the PR. If were to go through with this, I would indeed prefer having it directly for all enum structures in the crate. I do wonder how...
Indeed, let's not get it in, I dont think it's a useful feature to support. Tho tcols is a nice library to view the potential supported color schemes, good work!
I am not entirely sure what you mean. Read will return directly if there are events to be read. You can use poll to check if there are events to...
Thanks for filing the PR and contributing to crossterm! > This solution is partial and will only work with fds < 1024 What does this imply? > I'm wondering if...
I like solution 2, lets go for that. 1) it uses the proper not deprecated API's on the platforms that can have problems with the deprecated one 2) Using select...
@gwen-lg thanks for submitting the PR, sorry for the lack of activity, I will get back to the questions in this PR. I can try it for our internal project...
could perhaps create a very small crate for this macos: https://stackoverflow.com/questions/2969987/macosx-file-extension-associate-with-application-programmatically linux: https://stackoverflow.com/questions/30931/register-file-extensions-mime-types-in-linux windows: https://learn.microsoft.com/en-us/windows/win32/shell/how-to-register-a-file-type-for-a-new-application
It's known that windows consoles can be slower than Unix terminals. Prevent unnecessarily draw calls. So \n should not work in raw modes, perhaps this can be fixed. http://winapi.freetechsecrets.com/win32/WIN32SetConsoleMode.htm Over...