Remove an unused type

This commit is contained in:
ridiculousfish 2024-05-27 11:45:25 -07:00
parent 9e406e4fbc
commit 29b620b56c

View File

@ -393,11 +393,6 @@ pub fn init_input() {
}
}
/// CommandHandler is used to run commands. When a character is encountered that
/// would invoke a fish command, it is unread and CharEventType::CheckExit is returned.
/// Note the handler is not stored.
pub type CommandHandler<'a> = dyn FnMut(&[WString]) + 'a;
pub struct Inputter {
in_fd: RawFd,
queue: VecDeque<CharEvent>,