diff options
Diffstat (limited to 'alacritty_macos.yml')
-rw-r--r-- | alacritty_macos.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 956cedf8..6659ea92 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -199,9 +199,9 @@ key_bindings: - { key: Q, mods: Command, action: Quit } - { key: W, mods: Command, action: Quit } - { key: Home, chars: "\x1bOH", mode: AppCursor } - - { key: Home, chars: "\x1b[1~", mode: ~AppCursor } + - { key: Home, chars: "\x1b[H", mode: ~AppCursor } - { key: End, chars: "\x1bOF", mode: AppCursor } - - { key: End, chars: "\x1b[4~", mode: ~AppCursor } + - { key: End, chars: "\x1b[F", mode: ~AppCursor } - { key: PageUp, mods: Shift, chars: "\x1b[5;2~" } - { key: PageUp, mods: Control, chars: "\x1b[5;5~" } - { key: PageUp, chars: "\x1b[5~" } |