Skip to content

Commit

Permalink
Remove old terminal enhancement APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
sholderbach committed Nov 13, 2023
1 parent b94c272 commit fa6a4b8
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,27 +259,6 @@ impl Reedline {
self.kitty_protocol.set(enable);
self
}
/// Enable BracketedPaste feature.
pub fn enable_bracketed_paste(&mut self) -> Result<()> {
self.bracketed_paste.set(true);
Ok(())
}

/// Disable BracketedPaste feature.
pub fn disable_bracketed_paste(&mut self) -> Result<()> {
self.bracketed_paste.set(false);
Ok(())
}

/// Enable keyboard enhancement to disambiguate escape code
pub fn enable_kitty_protocol(&mut self) {
self.kitty_protocol.set(true);
}

/// Disable keyboard enhancement to disambiguate escape code
pub fn disable_kitty_protocol(&mut self) {
self.kitty_protocol.set(false);
}

/// Return the previously generated history session id
pub fn get_history_session_id(&self) -> Option<HistorySessionId> {
Expand Down

0 comments on commit fa6a4b8

Please sign in to comment.