commit 16a90ff4315e42836170acad88a6d02b3a7f4fc3
parent aa0d366330e98f37a6521ddda0a58d381bf84bdb
Author: Wim Dupont <wim@wimdupont.com>
Date: Thu, 20 Jun 2024 22:12:56 +0200
fix open for whitespace in filename
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lfrc b/lfrc
@@ -80,7 +80,7 @@ cmd tar ${{
cmd open &{{
case $(file --mime-type -Lb $f) in
text/*) lf -remote "send $id \$$EDITOR \$fx";;
- *) lf -remote "send $id \$xdg-open $f";;
+ *) lf -remote "send $id \$xdg-open \$f";;
esac
}}