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
The first ) after the start of an inline command is interpreted as the end.
For example, ^ca(1, echo "$(tty)" > randomfile)
is interpreted as ^ca(1, echo "$(tty)
and the remaining " > randomfile) is printed as plaintext.
I haven't looked too deeply into how dzen handles this, probably with something like ^), but that'll burden the parser with more complexity than I'm comfortable with.
Maybe at this point I should be using a shellscript (that doesn't have ) in its name).
The text was updated successfully, but these errors were encountered:
The first
)
after the start of an inline command is interpreted as the end.For example,
^ca(1, echo "$(tty)" > randomfile)
is interpreted as
^ca(
1, echo "$(tty
)
and the remaining
" > randomfile)
is printed as plaintext.I haven't looked too deeply into how dzen handles this, probably with something like
^)
, but that'll burden the parser with more complexity than I'm comfortable with.Maybe at this point I should be using a shellscript (that doesn't have
)
in its name).The text was updated successfully, but these errors were encountered: