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
#!/bin/sh foo=$(cat <<' EOT' A HereDoc EOT ) echo "$foo"
The scopes at the beginning of the EOT line include this no-indent scope:
no-indent
string.quoted.heredoc.no-indent.EOT meta.argument.shell meta.statement.command.shell meta.statement.shell meta.scope.subshell meta.expression.assignment.shell source.shell
Originally from @sandy-fairsupply in microsoft/vscode#223443
The text was updated successfully, but these errors were encountered:
Small correction:
Note that the closing EOT marker is preceded by four spaces to match the opening marker.
Sorry, something went wrong.
should be easy fix either place \\s* before \\3 or capture the [ \\t]*+ and replace \\3 with \\3?\\4
\\s*
\\3
[ \\t]*+
\\3?\\4
No branches or pull requests
The code with a problem is:
It looks like:
The scopes at the beginning of the EOT line include this
no-indent
scope:It should look like:
Originally from @sandy-fairsupply in microsoft/vscode#223443
The text was updated successfully, but these errors were encountered: