about summary refs log tree commit diff stats
path: root/home-manager/config/lf/commands/scripts/fzf_jump
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/config/lf/commands/scripts/fzf_jump')
-rwxr-xr-xhome-manager/config/lf/commands/scripts/fzf_jump4
1 files changed, 3 insertions, 1 deletions
diff --git a/home-manager/config/lf/commands/scripts/fzf_jump b/home-manager/config/lf/commands/scripts/fzf_jump
index 31fad6ef..ef4b510b 100755
--- a/home-manager/config/lf/commands/scripts/fzf_jump
+++ b/home-manager/config/lf/commands/scripts/fzf_jump
@@ -4,10 +4,12 @@
 SHELL_LIBRARY_VERSION="1.1.3" . %SHELL_LIBRARY_PATH
 
 res="$(fd . --maxdepth 3 | fzf --header='Jump to location')"
+
 if [ -f "$res" ]; then
     cmd="select"
 elif [ -d "$res" ]; then
     cmd="cd"
 fi
-lf -remote "send $id $cmd \"$res\""
+
+lf -remote "send '$id' '$cmd' '$res'"
 # vim: ft=sh