Skip to main content

KeyChord

Struct KeyChord 

Source
pub struct KeyChord {
    pub key: Key,
    pub mods: Mods,
}
Expand description

A key plus its modifiers — the unit a keymap binds to a crate::Command.

Fields§

§key: Key§mods: Mods

Implementations§

Source§

impl KeyChord

Source

pub const fn new(key: Key, mods: Mods) -> Self

Source

pub const fn plain(key: Key) -> Self

Source

pub const fn ctrl(key: Key) -> Self

Source

pub const fn ctrl_shift(key: Key) -> Self

Source

pub const fn alt(key: Key) -> Self

Source

pub const fn shift(key: Key) -> Self

Source§

impl KeyChord

Source

pub fn is_terminal_ambiguous(&self) -> bool

Whether a legacy terminal can even deliver this chord distinguishably.

Without the kitty keyboard protocol — which we do not enable — Ctrl+<key> is sent as the control byte key & 0x1f, and several of those bytes are already spoken for by named keys or by each other:

chordbyteindistinguishable from
Ctrl+I0x09Tab
Ctrl+M0x0DEnter
Ctrl+J0x0AEnter (line feed)
Ctrl+H0x08Backspace
Ctrl+[0x1BEsc
Ctrl+` 0x00Ctrl+@, Ctrl+Space (NUL)
Ctrl+@0x00Ctrl+` , Ctrl+Space
Ctrl+Space0x00Ctrl+` , Ctrl+@
Ctrl+Shift+lettersame control byte as Ctrl+lettershift is lost

The NUL family is worse than merely ambiguous: most emulators decline to send anything at all for Ctrl+` , and macOS claims Ctrl+Space for input-source switching before any terminal sees it. Neither is reachable in practice.

Binding one of these does not fail loudly — it silently does whatever the other key is bound to, or nothing, which is indistinguishable from the feature being broken. So the default keymap is tested against this rather than trusted.

Trait Implementations§

Source§

impl Clone for KeyChord

Source§

fn clone(&self) -> KeyChord

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for KeyChord

Source§

impl Debug for KeyChord

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for KeyChord

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for KeyChord

Source§

impl Hash for KeyChord

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for KeyChord

Source§

fn eq(&self, other: &KeyChord) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for KeyChord

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.