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
# good ls -alh # good ls \ -alh \ # not good, `-alh` should be "blue" as well ls \ -alh \
The -alh options should have the same scopes and color in all three examples.
-alh
The correct -alh tokens have the following scopes:
constant.other.option.dash.shell string.unquoted.argument.shell meta.statement.command.shell meta.statement.shell source.shell
The incorrect one has:
meta.statement.command.shell meta.statement.shell source.shell
Originally from @liufeimath in microsoft/vscode#225561
The text was updated successfully, but these errors were encountered:
.sh
No branches or pull requests
The code with a problem is:
It looks like:
It should look like:
The
-alh
options should have the same scopes and color in all three examples.The correct
-alh
tokens have the following scopes:The incorrect one has:
Originally from @liufeimath in microsoft/vscode#225561
The text was updated successfully, but these errors were encountered: