From 8df55c60d200cea09fb2e6fc35038acd9a421076 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Fri, 13 Mar 2026 10:54:22 -0700 Subject: [PATCH] fix: forgot visual mode keymaps --- internal/input/keymap.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internal/input/keymap.go b/internal/input/keymap.go index 08a0d7b..4a20ec1 100644 --- a/internal/input/keymap.go +++ b/internal/input/keymap.go @@ -104,6 +104,12 @@ func NewVisualKeymap() *Keymap { "p": action.VisualPaste{Count: 1}, // ":": action.EnterComandMode{}, // Different OP }, + charMotions: map[string]action.Motion{ + "f": action.FindChar{Forward: true, Inclusive: true}, + "F": action.FindChar{Forward: false, Inclusive: true}, + "t": action.FindChar{Forward: true, Inclusive: false}, + "T": action.FindChar{Forward: false, Inclusive: false}, + }, } }