Skip to content

Commit

Permalink
Remove early return in keyboard enhancement check (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis authored Feb 1, 2023
1 parent 338c122 commit 383d9a7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/terminal/sys/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ fn read_supports_keyboard_enhancement_raw() -> Result<bool> {
let mut stdout = io::stdout();
stdout.write_all(QUERY)?;
stdout.flush()?;
return Ok(false);
}

loop {
Expand Down

0 comments on commit 383d9a7

Please sign in to comment.