We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
foo=foo \ echo foo foo=$() \ echo foo foo=foo \ bar=bar \ echo foobar foo=$() \ bar=bar \ echo foobar
The text was updated successfully, but these errors were encountered:
Sorry but I don't understand. Exactly what did you run and what happened?
Sorry, something went wrong.
Assign a constant to foo, the code will be formatted as below:
foo=foo \ bar=bar \ echo foo bar
Replace with command substitution, and the indent style of formatted code is different from the above
foo=$(echo foo) \ bar=bar \ echo foo bar
Thanks, that does look like a bug.
No branches or pull requests
The text was updated successfully, but these errors were encountered: