pancurses
pancurses copied to clipboard
A Rust curses library, supports Unix platforms and Windows
I've tried looking for how to get input for non-character keys such as control and alt, does anyone know how this can be achieved? I've tried testing with some sample...
hello. i just want to get a character in non blocking way. ```rust use pancurses::{ initscr, endwin, Input, noecho, }; use rand::{ thread_rng, Rng, }; fn main() { let window...
It looks to me like ncurses-sys and pdcurses-sys both have unicode support, but I can't figure out how to enable it here. Is this a planned feature?
Is this possible with pancurses? I looked through all the functions and couldn't find anything.
The Example for Mouse Input throws error[E0308]: mismatched types --> src/main.rs:9:33 expected enum `Option`, found *-ptr note: expected enum `Option` found raw pointer `*mut _` on version 17.0. Sadly I...
I wasn't aware of the issues with multi-byte characters until I found [this issue](https://github.com/ihalila/pancurses/issues/35#issuecomment-368338996), so it's probably worth adding a warning to the documentation. I looked into possible fixes, but...
Fix for #47.
To make `newterm` useful, we need a way to access the screen object. This can be done through `stdscr()` (see #43) or by returning a `Window` from `newterm`, so that...
Fixes #40