about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/lf/commands
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-19 23:06:38 +0200
committerSoispha <soispha@vhack.eu>2023-08-19 23:06:38 +0200
commitbde0dbea224d4a88891e5da55b6cd39af02ef0d0 (patch)
treede79d218ef10d6be12209addaef28332ff043673 /home-manager/soispha/config/lf/commands
parentFix(hm/conf/neovim): Put the config file heading at the top (diff)
downloadnixos-config-bde0dbea224d4a88891e5da55b6cd39af02ef0d0.zip
Fix(hm/conf/lf/commands): Correctly quote the id string in 'fzf_jump' cmd
Diffstat (limited to 'home-manager/soispha/config/lf/commands')
-rwxr-xr-xhome-manager/soispha/config/lf/commands/scripts/fzf_jump3
1 files changed, 2 insertions, 1 deletions
diff --git a/home-manager/soispha/config/lf/commands/scripts/fzf_jump b/home-manager/soispha/config/lf/commands/scripts/fzf_jump
index c05216f0..0e53d7ca 100755
--- a/home-manager/soispha/config/lf/commands/scripts/fzf_jump
+++ b/home-manager/soispha/config/lf/commands/scripts/fzf_jump
@@ -11,5 +11,6 @@ elif [ -d "$res" ]; then
     cmd="cd"
 fi
 
-lf -remote "send '$id' '$cmd' '$res'"
+
+lf -remote "send $id $cmd \"$res\""
 # vim: ft=sh