rustbox icon indicating copy to clipboard operation
rustbox copied to clipboard

Rust implementation of the termbox library

Results 24 rustbox issues
Sort by recently updated
recently updated
newest added

I replaced the quit key from `Key::Char('q')` to `Key::Ctrl('[')` in [example.rs](https://github.com/gchp/rustbox/blob/1d42771b18412b55dfe1a89f5ba71be5392f27f0/examples/hello-world.rs) but it takes no effect when attempting to quit. I haven't been able to reproduce this problem with any...

My term is completely broken after finishing application with SIGINT/SIGTERM (cursor and input characters are invisible, x axis positioning is broken too), I guess these signals should be handled to...

as https://github.com/nsf/termbox-go

I tried to react to a `Key::Backspace` in my program but I did not receive it, so I displayed the event that occurred and it was read as a `KeyEvent(Ctrl('h'))`....

I tried a transposition of the keyboard's demo of termbox. No exactly the same behavior, having probably some oversights, archi inspirate of c implementation ( not really rust- esque )...

`Style` doesn't have any static constructors or constants for initializing it.

Since the C API has well defined behavior for values under 0 for the x,y coordinates, I feel like it's incorrect to place such a restriction on the Rust API...

I suggest to add the testing target _stable_ to `.travis.yml`. But as this is an administrative decision, I am not going to send a pull-request. Further targets include: - _beta_...

does rust-box have some sort of cell struct? If so how can I access it? Say if i'd like to get the cell at location (x,y), how would I go...