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 current behavior is to transform {string some} to "some". It will be misinterpreted by Bash if before quote we have a dollar sign, like ${string some} -> $"some".
The text was updated successfully, but these errors were encountered:
I think the best solution is to involve Bash parsing to understand how to display quotes: whether surround just placeholder description or a symbol before it too. But it's definitely will not be implemented in Bash parser soon.
EmilyGraceSeville7cf
changed the title
Regret automatic quoting: it can issues with Bash
Automatic placeholder quoting can break shell syntax
Mar 8, 2023
The current behavior is to transform
{string some}
to"some"
. It will be misinterpreted by Bash if before quote we have a dollar sign, like${string some}
->$"some"
.The text was updated successfully, but these errors were encountered: