You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting an error that zellij pipe does not understand an argument (that star with a "/") while it should not parse the arguments anymore since we are after the -- separator (into the PAYLOAD section).
Minimal reproduction
Doing zellij pipe --plugin zc -- edit /foo 38 (with zc an alias to a local file pointing to my zellij-console plugin build) result in the following message:
error: Found argument '/foo' which wasn't expected, or isn't valid in this context
For plugin authors, accept an argument like: zellij pipe --plugin zc --args="command=edit /foo 38" (kind of the same workaround as the previous one since I’m forced to quote because I have some spaces).
The workarounds works… but ain’t as easy to use. I don’t want to quote the commands since I want the shell to help with auto-completing path among other things. The echo … | … syntax feels a bit heavy and don’t makes for easy to write shell alias like zc <my-command>.
The text was updated successfully, but these errors were encountered:
2. Issues with the Zellij UI / behavior / crash
Issue description
Getting an error that
zellij pipe
does not understand an argument (that star with a "/") while it should not parse the arguments anymore since we are after the--
separator (into thePAYLOAD
section).Minimal reproduction
Doing
zellij pipe --plugin zc -- edit /foo 38
(withzc
an alias to a local file pointing to my zellij-console plugin build) result in the following message:Other relevant information
There are multiples workaround:
'
or double"
)echo edit /foo 38 | zellij pipe --plugin zc
zellij pipe --plugin zc --args="command=edit /foo 38"
(kind of the same workaround as the previous one since I’m forced to quote because I have some spaces).The workarounds works… but ain’t as easy to use. I don’t want to quote the commands since I want the shell to help with auto-completing path among other things. The
echo … | …
syntax feels a bit heavy and don’t makes for easy to write shell alias likezc <my-command>
.The text was updated successfully, but these errors were encountered: