-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeymap.toml
51 lines (39 loc) · 969 Bytes
/
keymap.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Keymaps
"$schema" = "https://yazi-rs.github.io/schemas/keymap.json"
[[manager.prepend_keymap]]
on = [ "T" ]
run = 'close'
desc = "close tab"
[[manager.prepend_keymap]]
on = [ "H" ]
run = 'tab_swap -1'
desc = "swap the to one space back"
[[manager.prepend_keymap]]
on = [ "L" ]
run = 'tab_swap +1'
desc = "swap the to one space forward"
[[manager.prepend_keymap]]
on = [ "<C-h>" ]
run = 'help'
desc = "open help"
[[manager.prepend_keymap]]
on = [ "u" ]
run = 'undo'
desc = "for undo the last operation"
[[manager.prepend_keymap]]
on = [ "U" ]
run = 'redo'
desc = "for redo the last operation"
# example
#[[manager.prepend_keymap]]
#on = [ "<C-a>" ]
#run = 'my-fev-command1'
#desc = "Just for test!"
#[[manager.prepend_keymap]]
#on = [ "<C-b>" ]
#run = 'my-fev-command2'
#[[manager.append_keymap]]
#on = [ "<C-c>" ]
#run = 'my-fev-command3'
#For more modifications please visit :
#https://yazi-rs.github.io/docs/configuration/keymap