diff options
author | zsugabubus <zsugabubus@users.noreply.github.com> | 2019-09-28 00:37:22 +0000 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2019-09-28 02:37:22 +0200 |
commit | fe6f1760b4a4a45de2bb239f0e2de73ce2461d90 (patch) | |
tree | 60773570b07bde19e1ae7f140da42e792a752c40 /alacritty.yml | |
parent | 87cf14a4b79146240b74ab473faf542b72e5e939 (diff) | |
download | alacritty-fe6f1760b4a4a45de2bb239f0e2de73ce2461d90.tar.gz alacritty-fe6f1760b4a4a45de2bb239f0e2de73ce2461d90.zip |
Add `ReceiveChar` action for passing key's text
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/alacritty.yml b/alacritty.yml index 546a15f3..168245de 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -496,6 +496,7 @@ mouse_bindings: # - ToggleFullscreen # - SpawnNewInstance # - ClearLogNotice +# - ReceiveChar # - None # # (macOS only): @@ -536,7 +537,8 @@ mouse_bindings: # # Bindings are always filled by default, but will be replaced when a new # binding with the same triggers is defined. To unset a default binding, it can -# be mapped to the `None` action. +# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for +# a no-op if you do not wish to receive input characters for that binding. key_bindings: # (Windows/Linux only) #- { key: V, mods: Control|Shift, action: Paste } |