blob: 8f3ca8aee7e00a289feaaf1fa80d6696bf8b3938 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# from: https://yazi-rs.github.io/docs/tips
[[manager.prepend_keymap]]
on = "<C-n>"
run = '''
shell 'dragon-drop -x -i -T "$1"' --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"
|