Issue 3264: reformat to conform to style guidelines

This commit is contained in:
Alexander McLin
2026-04-10 21:57:23 -04:00
parent 533594b6b6
commit d5d514ec96
2 changed files with 6 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
use crossterm::event::{KeyCode, KeyEvent, KeyEventKind, KeyEventState, KeyModifiers};
use std::io::{Read, Error, ErrorKind};
use std::io::{Error, ErrorKind, Read};
// Provide graceful degradation limited support mode if reading from stdin that does not
// Provide graceful degradation limited support mode if reading from stdin that does not
// support terminal features.
//
// Retrieve a single byte from stdin, does not support full Unicode decoding; only convert
// Retrieve a single byte from stdin, does not support full Unicode decoding; only convert
// byte to KeyEvent char if it falls within the ASCII subset of UTF-8.
//
// Does not support passing through Ctrl-C as a KeyEvent.
@@ -16,8 +16,7 @@ pub(crate) fn limited_support_read() -> std::io::Result<KeyEvent> {
Ok(b) => {
if b.is_ascii() {
Ok(map_ascii_to_keyevent(b as char))
}
else {
} else {
Err(Error::new(ErrorKind::Unsupported, "not supported input"))
}
}
@@ -34,4 +33,4 @@ fn map_ascii_to_keyevent(c: char) -> KeyEvent {
kind: KeyEventKind::Press,
state: KeyEventState::empty(),
}
}
}

View File

@@ -46,4 +46,4 @@ fn supported_terminal() -> bool {
// If OS is Windows and stdin is not a tty, it's either a pipe or an unsupported terminal configuration.
!windows_os || std::io::stdin().is_tty()
}
}