From 1f46bb7b925e5a6ce2dc4e5eeb88449d4cb8ebc5 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Thu, 15 Apr 2021 21:25:49 +0000 Subject: Add hint action for moving the vi cursor Fixes #4319. --- alacritty/src/config/ui_config.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'alacritty/src/config/ui_config.rs') 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. -- cgit