fix: forgot visual mode keymaps
All checks were successful
Run Test Suite / test (push) Successful in 30s
Run Test Suite / test (pull_request) Successful in 13s

This commit is contained in:
Hayden Hargreaves 2026-03-13 10:54:22 -07:00
parent 050935941c
commit 8df55c60d2

View File

@ -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},
},
}
}