blob: 7ab5ee7bb867b3de8f8de589fcc40607c0ed6230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# from: https://yazi-rs.github.io/docs/tips
[[manager.prepend_keymap]]
on = "<C-n>"
run = '''
shell 'dragon-drop --and-exit --on-top "$@"' --confirm
'''
desc = "Open the drag and drop utility"
[[manager.prepend_keymap]]
on = "!"
run = 'shell "$SHELL" --block --confirm'
desc = "Open shell in the current directory"
[[manager.prepend_keymap]]
on = ["g", "d"]
run = 'cd ~/dl'
desc = "Open ~/dl"
[[manager.prepend_keymap]]
on = "l"
run = 'plugin --sync smart-enter'
desc = "Enter the child directory, or open the file"
|