diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-08-09 22:57:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 01:57:55 +0300 |
commit | 4b516c63654465041604d3e4c816136a902287a4 (patch) | |
tree | e32af1d29d4de7f516268fae1d187904f88f67e6 /alacritty.yml | |
parent | 576252294d09c1f52ec73bde03652349bdf5a529 (diff) | |
download | alacritty-4b516c63654465041604d3e4c816136a902287a4.tar.gz alacritty-4b516c63654465041604d3e4c816136a902287a4.zip |
Add ^C binding to cancel search and leave Vi mode
Fixes #4089.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index da41059a..e1665e66 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -637,6 +637,7 @@ #- { key: Escape, mode: Vi, action: ClearSelection } #- { key: I, mode: Vi, action: ScrollToBottom } #- { key: I, mode: Vi, action: ToggleViMode } + #- { key: C, mods: Control, mode: Vi, action: ToggleViMode } #- { key: Y, mods: Control, mode: Vi, action: ScrollLineUp } #- { key: E, mods: Control, mode: Vi, action: ScrollLineDown } #- { key: G, mode: Vi, action: ScrollToTop } |