-
I have the following binding set, ignore the weird syntax it is compiled from Nix [[manager.append_keymap]]
on = ["g", "r"]
run = "shell --confirm 'ripdrag $@" But if a file has a space it seems to ignore everything after the space leading to
I think this was working before a update, but could be wrong. I suspect this is user error though which is why I bring it up here instead of issues section, I could not figure this out myself. I think the file path should be escaped for it to work |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
It's missing the closing |
Beta Was this translation helpful? Give feedback.
-
Ah I think Nix might have done that nice catch |
Beta Was this translation helpful? Give feedback.
-
Yep that did it, feel dumb now. I had to do the following
Those cursed escape sequences me want to throw my computer from the empire state building but it seems to work which is all that matters not touching it |
Beta Was this translation helpful? Give feedback.
It's missing the closing
'
. Also you should use"$@"
instead of$@
since the latter won't escape special characters in filenames, https://stackoverflow.com/questions/3898665/what-is-in-bash