fix: forgot visual mode keymaps
This commit is contained in:
parent
050935941c
commit
8df55c60d2
@ -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},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user