diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-04-15 21:25:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-15 21:25:49 +0000 |
commit | 1f46bb7b925e5a6ce2dc4e5eeb88449d4cb8ebc5 (patch) | |
tree | 1ee1b4939b452dd18cc9b7832efd7ce44dc04089 /alacritty/src/config/ui_config.rs | |
parent | 05917b27405f797bca817fa68305c08b74897997 (diff) | |
download | r-alacritty-1f46bb7b925e5a6ce2dc4e5eeb88449d4cb8ebc5.tar.gz r-alacritty-1f46bb7b925e5a6ce2dc4e5eeb88449d4cb8ebc5.tar.bz2 r-alacritty-1f46bb7b925e5a6ce2dc4e5eeb88449d4cb8ebc5.zip |
Add hint action for moving the vi cursor
Fixes #4319.
Diffstat (limited to 'alacritty/src/config/ui_config.rs')
-rw-r--r-- | alacritty/src/config/ui_config.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty/src/config/ui_config.rs b/alacritty/src/config/ui_config.rs index ff013d57..135d12c8 100644 --- a/alacritty/src/config/ui_config.rs +++ b/alacritty/src/config/ui_config.rs @@ -293,6 +293,8 @@ pub enum HintInternalAction { Paste, /// Select the text matching the hint. Select, + /// Move the vi mode cursor to the beginning of the hint. + MoveViModeCursor, } /// Actions for hint bindings. |