summaryrefslogtreecommitdiffstats
path: root/alacritty.yml
diff options
context:
space:
mode:
authorDan Aloni <alonid@gmail.com>2017-10-14 20:35:56 +0300
committerJoe Wilm <jwilm@users.noreply.github.com>2017-10-14 10:35:56 -0700
commit8a0b1d9c3f5a9ddb98469a340bbcd06374d4a24e (patch)
tree80768003f9a2f3c99b0238dc68f4c9b119cc77d6 /alacritty.yml
parentfd410f9ec8bc53e35d46cc213244c978ef7c5816 (diff)
Implement user actions for font resize (#625)
Adds support for font resizing at run-time. Three new actions are introduced: * IncreaseFontSize - Increases current font size by 1.0 * DecreaseFontSize - Decreases current font size by 1.0 * ResetFontSize - Resets font size to that specified in the configuration. The stock config files have example configuration for each which should match gnome-terminal. For convenience, the config entries are: - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } - { key: Subtract, mods: Control, action: DecreaseFontSize }
Diffstat (limited to 'alacritty.yml')
-rw-r--r--alacritty.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml
index c5684397..f69640da 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -215,6 +215,9 @@ key_bindings:
- { key: Q, mods: Command, action: Quit }
- { key: W, mods: Command, action: Quit }
- { key: Insert, mods: Shift, action: PasteSelection }
+ - { key: Key0, mods: Control, action: ResetFontSize }
+ - { key: Equals, mods: Control, action: IncreaseFontSize }
+ - { key: Subtract, mods: Control, action: DecreaseFontSize }
- { key: Home, chars: "\x1bOH", mode: AppCursor }
- { key: Home, chars: "\x1b[H", mode: ~AppCursor }
- { key: End, chars: "\x1bOF", mode: AppCursor }