feature/find #1

Merged
azpect merged 2 commits from feature/find into master 2026-03-13 10:56:47 -07:00
Showing only changes of commit 8df55c60d2 - Show all commits

View File

@ -104,6 +104,12 @@ func NewVisualKeymap() *Keymap {
"p": action.VisualPaste{Count: 1}, "p": action.VisualPaste{Count: 1},
// ":": action.EnterComandMode{}, // Different OP // ":": 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},
},
} }
} }