diff options
author | jeremycostanzo <56163564+jeremycostanzo@users.noreply.github.com> | 2022-06-09 23:08:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 00:08:18 +0300 |
commit | fdcf99b0c17214d2318298bc4ea911931c3b9ece (patch) | |
tree | 85acf79129bf9c3e2eaafacd2d4596a9fee4983d /alacritty.yml | |
parent | 90552e3e7f8f085919a39435a8a68b3a2f633e54 (diff) | |
download | alacritty-fdcf99b0c17214d2318298bc4ea911931c3b9ece.tar.gz alacritty-fdcf99b0c17214d2318298bc4ea911931c3b9ece.zip |
Add vi action to center view around vi cursor
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 8b668ca5..3ba6a7f5 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -625,6 +625,8 @@ # - ToggleBlockSelection # - ToggleSemanticSelection # Toggle semantic selection based on `selection.semantic_escape_chars`. +# - CenterAroundViCursor +# Center view around vi mode cursor # # - Vi mode exclusive cursor motion actions: # @@ -778,6 +780,7 @@ #- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection } #- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection } #- { key: Return, mode: Vi|~Search, action: Open } + #- { key: Z, mode: Vi|~Search, action: CenterAroundViCursor } #- { key: K, mode: Vi|~Search, action: Up } #- { key: J, mode: Vi|~Search, action: Down } #- { key: H, mode: Vi|~Search, action: Left } |