diff options
author | Erik Nilsen <enilsen16@live.com> | 2017-10-16 17:57:05 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-10-16 09:57:05 -0700 |
commit | 07e42b2e25a297b56fefcdbc2a7a53217c157b92 (patch) | |
tree | c81516d1e0d3f8fbaf23595afcb804860bbd1c7a | |
parent | f7cb0009ccf0c895523655d22f167399dcc573ba (diff) | |
download | alacritty-07e42b2e25a297b56fefcdbc2a7a53217c157b92.tar.gz alacritty-07e42b2e25a297b56fefcdbc2a7a53217c157b92.zip |
Use correct keyname for decreasing font size in MacOS (#843)
* Use correct keyname for decreasing font size in MacOS
* Prefer Command instead of Control to match other TEs
-rw-r--r-- | alacritty_macos.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 61f53868..a072823a 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -196,9 +196,9 @@ key_bindings: - { key: Home, chars: "\x1b[H", mode: ~AppCursor } - { key: End, chars: "\x1bOF", mode: AppCursor } - { key: End, chars: "\x1b[F", mode: ~AppCursor } - - { key: Key0, mods: Control, action: ResetFontSize } - - { key: Equals, mods: Control, action: IncreaseFontSize } - - { key: Subtract, mods: Control, action: DecreaseFontSize } + - { key: Key0, mods: Command, action: ResetFontSize } + - { key: Equals, mods: Command, action: IncreaseFontSize } + - { key: Minus, mods: Command, action: DecreaseFontSize } - { key: PageUp, mods: Shift, chars: "\x1b[5;2~" } - { key: PageUp, mods: Control, chars: "\x1b[5;5~" } - { key: PageUp, chars: "\x1b[5~" } |