blob: 996798578250e6c137acbcd007e9a789edc30b3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
bind --preset --mode operator --sets-mode f f ''
bind --preset --mode operator --sets-mode F F ''
bind --preset --mode operator --sets-mode t t ''
bind --preset --mode operator --sets-mode T T ''
bind --preset --mode f '' get-key 'fish_vi_exec_motion commandline --forward-jump=$fish_key' 'set -eg fish_key'
bind --preset --mode F '' get-key 'fish_vi_exec_motion commandline --backward-jump=$fish_key' 'set -eg fish_key'
bind --preset --mode t '' get-key 'fish_vi_exec_motion commandline --forward-jump-till=$fish_key' 'set -eg fish_key'
bind --preset --mode T '' get-key 'fish_vi_exec_motion commandline --backward-jump-till=$fish_key' 'set -eg fish_key'
|