diff options
author | Aaron Goodfellow <amgoodfellow@oakland.edu> | 2019-03-15 16:41:48 -0400 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-03-15 20:41:48 +0000 |
commit | e2eb5bbd2e564710d35d06f04789486b227ffeb8 (patch) | |
tree | 3bbaab6454cb823659ab2acb8df25f86d815f938 /alacritty.yml | |
parent | 94cf97b42d9835976bc99463fc4e96330ceb0068 (diff) | |
download | alacritty-e2eb5bbd2e564710d35d06f04789486b227ffeb8.tar.gz alacritty-e2eb5bbd2e564710d35d06f04789486b227ffeb8.zip |
Add additional key bindings for changing font size
This fixes #2010.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 69268885..b35867c2 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -466,11 +466,14 @@ key_bindings: #- { key: Insert, mods: Shift, action: PasteSelection } #- { key: Key0, mods: Control, action: ResetFontSize } #- { key: Equals, mods: Control, action: IncreaseFontSize } + #- { key: Add, mods: Control, action: IncreaseFontSize } #- { key: Subtract, mods: Control, action: DecreaseFontSize } + #- { key: Minus, mods: Control, action: DecreaseFontSize } # (macOS only) #- { key: Key0, mods: Command, action: ResetFontSize } #- { key: Equals, mods: Command, action: IncreaseFontSize } + #- { key: Add, mods: Command, action: IncreaseFontSize } #- { key: Minus, mods: Command, action: DecreaseFontSize } #- { key: K, mods: Command, action: ClearHistory } #- { key: K, mods: Command, chars: "\x0c" } |