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
This seems pretty expected on a shell - multiple space separators get collapsed into one, i think? or are you saying because it's a comment you expect them to be preserved?
Yeah, I would expect the comment field to contain the exact text of the comment. Like there shouldn't be any parsing being applied to the text of a comment!
If I do
parse("#abc def ghi")
, instead of[{ comment: "abc def ghi" }]
, the result is[{ comment: "abcdef ghi" }]
.(Tested with shell-quote version 1.8.0.)
The text was updated successfully, but these errors were encountered: