diff options
author | Soispha <soispha@vhack.eu> | 2023-08-19 23:06:38 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-19 23:06:38 +0200 |
commit | bde0dbea224d4a88891e5da55b6cd39af02ef0d0 (patch) | |
tree | de79d218ef10d6be12209addaef28332ff043673 /home-manager/soispha/config/lf/commands | |
parent | Fix(hm/conf/neovim): Put the config file heading at the top (diff) | |
download | nixos-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-x | home-manager/soispha/config/lf/commands/scripts/fzf_jump | 3 |
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 |