Timon
Timon
Crossterm supports those key combinations. I'm sure of windows, though Linux I will have to check. If not, they probably will when the new input parsing library 'anes' is implemented....
@Shnatsel, nope, those combinations are not yet supported for Linux. We do support those for windows. In order to make those work, we have to expand our input parser. With...
I am not sure if it is even possible to support those combinations with ANSI code parsing. I will have to research those key combinations. Linux and Mac are quite...
We do check on different types of ansi strings. However, compared to ncurses it is quite limited. @zrzka, other maintainer of crossterm, wrote https://crates.io/crates/anes, crossterm is going to use this....
I found the bug, it has to do with features depending on other features. async-std contains the 'std' feature, and the std feature depends on the 'alloc' feature. In my...
So somehow I will have to consider original features and their dependent features separately. One way to fix it is to not collect all sub-enabled features and just keep it...
If you're running this library on a binary rather than a library, please make sure to supply '--bin' flag. This might actually solve the issue already. Default the project only...
Flag is made default enabled in https://crates.io/crates/cargo-unused-features/0.1.7
I don't have a clear indication of why this could happen. I would have to debug this issue. A couple of points; - You might want to try reliable ordered...
Yes it is a design choice. Laminar works with the method described by [gaffer](https://gafferongames.com/post/reliable_ordered_messages/): _If bit n is set in ack_bits, then ack - n is acked. Not only is...