diff options
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/alacritty.yml b/alacritty.yml index 2978f1dc..b1cfa9f8 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -319,7 +319,7 @@ live_config_reload: true # arguments (`command`). # # Example: -# `- { key: V, mods: Command, action: Paste }` +# `- { key: V, mods: Control|Shift, action: Paste }` # # Available fields: # - key @@ -374,6 +374,7 @@ live_config_reload: true # - Hide # - Quit # - ClearLogNotice +# - SpawnNewInstance # # Values for `command`: # The `command` field must be a map containing a `program` string and @@ -392,8 +393,6 @@ key_bindings: - { key: C, mods: Control|Shift, action: Copy } - { key: Paste, action: Paste } - { key: Copy, action: Copy } - - { 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 } |