Cole Reynolds
Cole Reynolds
I'm currently in the middle of a fairly major rewrite of the library so we can have a fairly stable set of core functionality and I'll definitely be taking this...
Are you calling `Terminal::swap_buffers()`? Without that call no changes will be shown on screen.
Windows support is something I've been thinking about, however it would almost definitely have to be within the context of Cygwin. The low-level parts of the library are all based...
Thank you for reporting this! At the moment we do not have wide character support, however I plan on implementing this soon.
Going off the code written in [termbox](https://github.com/nsf/termbox), I don't believe this will be too hard to implement. This should make in into rustty very soon.
So I've taken a hard look at the issue of supporting wide characters and have encountered a fairly fundamental problem. `rustty`'s abstraction over the underlying terminal relies on the assumption...
Huh, looks to be an oversight in the `libc` crate. I'll submit a pull request shortly to fix this! Thank you for bringing this to my attention.
This is most likely a font issue as the example uses Unicode block characters, would you mind sharing what terminal font you use? Thank you for reporting this!
I could be wrong but I believe `vconsole.conf` will only affect the actual virtual console, and not xterm itself. Your xterm font settings most likely select a font without full...
I may be misunderstanding the issue, but since `Color` implements `Eq`, you shouldn't need to compare colors by calling `as_byte`, simply use the equality operator. Also, with regards to @bestouff...