diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-06-16 11:35:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-16 11:35:28 +0000 |
commit | 58e2365abe4bc4b1e92531b94f3c15716407272f (patch) | |
tree | c023782a935fd826c31fe8ed77e2eda310cfae66 | |
parent | 6b273fdf638c5db8783777432a99ea52ee00fb87 (diff) | |
download | alacritty-58e2365abe4bc4b1e92531b94f3c15716407272f.tar.gz alacritty-58e2365abe4bc4b1e92531b94f3c15716407272f.zip |
Fix default fullscreen binding docs
-rw-r--r-- | alacritty.yml | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/alacritty.yml b/alacritty.yml index 75fb3940..93015a84 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -517,19 +517,21 @@ key_bindings: #- { key: Add, mods: Control, action: IncreaseFontSize } #- { key: Subtract, mods: Control, action: DecreaseFontSize } #- { key: Minus, mods: Control, action: DecreaseFontSize } + #- { key: Return, mods: Alt, action: ToggleFullscreen } # (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" } - #- { key: V, mods: Command, action: Paste } - #- { key: C, mods: Command, action: Copy } - #- { key: H, mods: Command, action: Hide } - #- { key: Q, mods: Command, action: Quit } - #- { key: W, mods: Command, action: Quit } + #- { 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" } + #- { key: V, mods: Command, action: Paste } + #- { key: C, mods: Command, action: Copy } + #- { key: H, mods: Command, action: Hide } + #- { key: Q, mods: Command, action: Quit } + #- { key: W, mods: Command, action: Quit } + #- { key: F, mods: Command|Control, action: ToggleFullscreen } - { key: Paste, action: Paste } - { key: Copy, action: Copy } |