diff options
author | stfn <stfnmd@gmail.com> | 2019-03-02 19:57:07 +0100 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-03-02 18:57:07 +0000 |
commit | 9468b50b75be13d6b0d36ba2c01d36d92f008bf2 (patch) | |
tree | 1c414ac03b4450239761abbf87e9005e6a74c405 /src | |
parent | 3c4bb7c11518e1ced9feeb156436d55fe1d4a66b (diff) | |
download | alacritty-9468b50b75be13d6b0d36ba2c01d36d92f008bf2.tar.gz alacritty-9468b50b75be13d6b0d36ba2c01d36d92f008bf2.zip |
Add additional key bindings
Diffstat (limited to 'src')
-rw-r--r-- | src/config/bindings.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config/bindings.rs b/src/config/bindings.rs index 2cf22de9..410b6804 100644 --- a/src/config/bindings.rs +++ b/src/config/bindings.rs @@ -68,17 +68,21 @@ pub fn default_key_bindings() -> Vec<KeyBinding> { Key::Copy; Action::Copy; Key::L, [ctrl: true]; Action::ClearLogNotice; Key::L, [ctrl: true]; Action::Esc("\x0c".into()); + Key::Home, [alt: true]; Action::Esc("\x1b[1;3H".into()); Key::Home, +TermMode::APP_CURSOR; Action::Esc("\x1bOH".into()); Key::Home, ~TermMode::APP_CURSOR; Action::Esc("\x1b[H".into()); + Key::End, [alt: true]; Action::Esc("\x1b[1;3F".into()); Key::End, +TermMode::APP_CURSOR; Action::Esc("\x1bOF".into()); Key::End, ~TermMode::APP_CURSOR; Action::Esc("\x1b[F".into()); Key::PageUp, [shift: true], ~TermMode::ALT_SCREEN; Action::ScrollPageUp; Key::PageUp, [shift: true], +TermMode::ALT_SCREEN; Action::Esc("\x1b[5;2~".into()); Key::PageUp, [ctrl: true]; Action::Esc("\x1b[5;5~".into()); + Key::PageUp, [alt: true]; Action::Esc("\x1b[5;3~".into()); Key::PageUp; Action::Esc("\x1b[5~".into()); Key::PageDown, [shift: true], ~TermMode::ALT_SCREEN; Action::ScrollPageDown; Key::PageDown, [shift: true], +TermMode::ALT_SCREEN; Action::Esc("\x1b[6;2~".into()); Key::PageDown, [ctrl: true]; Action::Esc("\x1b[6;5~".into()); + Key::PageDown, [alt: true]; Action::Esc("\x1b[6;3~".into()); Key::PageDown; Action::Esc("\x1b[6~".into()); Key::Tab, [shift: true]; Action::Esc("\x1b[Z".into()); Key::Back; Action::Esc("\x7f".into()); |