Add support for csi u characters in alacritty
This commit is contained in:
parent
3332489a02
commit
e9ed8b4816
|
@ -48,6 +48,15 @@ key_bindings:
|
|||
- { key: F11, action: ToggleFullscreen }
|
||||
- { key: Escape, mode: Vi, action: ToggleViMode}
|
||||
- { key: E, mods: Control, mode: Vi, action: ScrollHalfPageUp}
|
||||
- { key: H, mods: Control|Shift, chars: "\x1b[72;6u" }
|
||||
- { key: J, mods: Control|Shift, chars: "\x1b[74;6u" }
|
||||
- { key: K, mods: Control|Shift, chars: "\x1b[75;6u" }
|
||||
- { key: L, mods: Control|Shift, chars: "\x1b[76;6u" }
|
||||
- { key: I, mods: Control, chars: "\x1b[105;5u" }
|
||||
- { key: Period, mods: Control, chars: "\x1b[46;5u" }
|
||||
- { key: Comma, mods: Control, chars: "\x1b[44;5u" }
|
||||
- { key: Semicolon, mods: Control, chars: "\x1b[59;5u" }
|
||||
- { key: Return, mods: Shift, chars: "\x1b[13;2u" }
|
||||
|
||||
scrolling:
|
||||
history: 10000
|
||||
|
|
Loading…
Reference in New Issue