Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pty/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ pub enum PtyState {
#[derive(Debug)]
pub enum PtyMessage {
/// Data from local terminal to send to remote
/// SmallVec<[u8; 8]> keeps key sequences stack-allocated
LocalInput(SmallVec<[u8; 8]>),
/// SmallVec<[u8; 64]> handles both key sequences and paste content without allocation
LocalInput(SmallVec<[u8; 64]>),
/// Data from remote to display on local terminal
/// SmallVec<[u8; 64]> handles most terminal output without allocation
RemoteOutput(SmallVec<[u8; 64]>),
Expand Down
Loading