blob: 3ebbd6e410b1e7a5f694f0eae89daded460a83f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Broot
# https://dystroy.org/broot/
provide-module connect-broot %{
# Modules
require-module connect
# Register our paths
set-option -add global connect_paths "%opt{connect_modules_path}/broot/aliases" "%opt{connect_modules_path}/broot/commands"
# Commands
define-command broot -params .. -file-completion -docstring 'Open files with Broot' %{
> broot %arg{@}
}
# Aliases
alias global br broot
}
|