crossterm icon indicating copy to clipboard operation
crossterm copied to clipboard

Cross platform terminal library rust

Results 218 crossterm issues
Sort by recently updated
recently updated
newest added

**Describe the bug** TMUX is known to have some limitations and bugs which probably aren't crossterm related. The user should expect some functionalities not to work. Please see this issue...

Not sure why but while I was working on the two PRs that got merged the other day (#555, #552), I noticed that running `cargo test` inside the new Windows...

crossterm is a good terminal library. Recently I want to use it to develop a shell terminal. I want to add a grammar prompt to it. Just like bash, you...

Crossterm currently doesn't have a way to change the style of the user's cursor (e.g. bar vs block vs underscore) - it allows to toggle blinking but nothing more. I...

**Senario** Currently, TPUT is used in cases were `/dev/tty` fails us. TPUT was introduced in #283 because crossterm was unable to fetch the terminal size in a subshell. However, this...

enhancement
help wanted
difficulty: medium

**Is your feature request related to a problem? Please describe.** I want to be able to process input that contains line feeds. Allowing the terminal to enter [bracketed paste mode](https://cirw.in/blog/bracketed-paste)...

# Task Description ``` let ct = Crossterm::from_screen(&alternative.screen); let cursor = ct.cursor(); cursor.hide(); ``` When switching back -- dropping the new screen that was created just for the alternative screen;...

help wanted
difficulty: easy
difficulty: medium

**Is your feature request related to a problem? Please describe.** I'm trying to port my CLI util [skim](https://github.com/lotabout/skim) to crossterm for windows support. And one of the use cases of...

enhancement
in_progress

**Describe the bug** When reading events with read() and matching resize events resize events wont fire when resizing vertically. **To Reproduce** This code demonstrates the problem ```rust use crossterm::{cursor::MoveTo, event::read,...

bug

**Is your feature request related to a problem? Please describe.** This is a great library, probably one of the most complete libraries I have found. The problem I'm finding is...