blob: 46540a6696ee32c51c3749ee8c643b495f2afdf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
imports = ["~/.config/broot/conf.toml"]
quit_on_last_cancel = true
[[verbs]]
apply_to = "file"
external = ["bash", "-c", "~/.config/tmux/scripts/split.sh -c \"#{?@default-path,#{@default-path},#{pane_current_path}}\" \"hx '{file}'\""]
invocation = "tmux-split"
key = "ctrl-s"
leave_broot = true
[[verbs]]
apply_to = "file"
external = ["tmux", "new-window", "-c", "#{?@default-path,#{@default-path},#{pane_current_path}}", "hx '{file}'"]
invocation = "tmux-window"
key = "ctrl-w"
leave_broot = true
|