tuikit icon indicating copy to clipboard operation
tuikit copied to clipboard

Tool kit for writing TUI applications in Rust.

Results 9 tuikit issues
Sort by recently updated
recently updated
newest added

Create options (disabled by default) to allow "transparency" in tuikit. more precisely: retain cells which don't need to be changed as they were before tuikit was started. ## example With...

A few minor (imo) improvements for the stack example. * React to the right mouse events * Resize the layout when the terminal is resized * Clear the background so...

This change adds a new TermOption, "has_leading_newline". When this option is set to false (default is true), TermLock::ensure_height() would not add a leading newline (=the separator between the original line...

With both xterm (v366) and konsole (20.12.2) using rustc 1.52.1 the shutdown sometimes hangs indefinitely, so a timeout is added. -------------- This happens both with and without `clear_on_exit`, and so...

Did you thought about using "Crossterm" for accessing the terminal and removing the "sys/*" dependecies. So we can run that on Windows and have the nice Splits easily running. Many...

I'm not sure why this is happening, but when I use tuikit in a Rust application the cursor in my terminal disappears after I run that Rust application. So as...

Tuikit does not clear screen nor process newlines correctly on Android in Termux environment (which is prefixed linux installation). Information about the system: ``` $ echo $TERM xterm $ uname...

The format should be: Cursor position report (CPR): Answer is ESC [ y ; x R, where x,y is the cursor location. But if "R" will goes before ";", then...

Hello there, I've used tuikit in several projects and I'm very found of it. Thanks for your work ! Currently I'm working on a [file manager](https://github.com/qkzk/fm) which can preview some...