diff options
Diffstat (limited to 'home-manager/config/lf/commands/scripts/broot_jump')
-rwxr-xr-x | home-manager/config/lf/commands/scripts/broot_jump | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home-manager/config/lf/commands/scripts/broot_jump b/home-manager/config/lf/commands/scripts/broot_jump index 6ff63ce9..ea8a8b8d 100755 --- a/home-manager/config/lf/commands/scripts/broot_jump +++ b/home-manager/config/lf/commands/scripts/broot_jump @@ -4,7 +4,7 @@ SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH tmp=$(mktmp) -res="$(broot --outcmd $tmp && cat $tmp | sed 's/cd //')" +res="$(broot --outcmd "$tmp" && sed 's/cd //' "$tmp")" if [ -f "$res" ]; then cmd="select" @@ -12,5 +12,5 @@ elif [ -d "$res" ]; then cmd="cd" fi -lf -remote "send $id $cmd \"$res\"" +lf -remote "send '$id' '$cmd' '$res'" # vim: ft=sh |