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
case
VSCode version: 1.85.1 vscode-phoenix version: 0.1.2
The following snippet is incorrectly highlighted
<li> <strong>Some:</strong> <%= case some do %> <% map when is_map(map) -> %> <dl> Map </dl> <% other -> %> Other <% end %> </li>
The tokens look OK, most likely it's unmatched bracket
The text was updated successfully, but these errors were encountered:
it appears the -> isn't being marked as non-bracket
->
Sorry, something went wrong.
This line is the culprit here
vscode-phoenix/language-configuration.json
Line 6 in f985313
<
>
This may not be easy to fix without removing it. AFAIK VSCode does not support negative matches nor regex on brackets https://code.visualstudio.com/api/language-extensions/language-configuration-guide#brackets-definition
I had similar issues in elixir-lsp/vscode-elixir-ls#353
you can disable symbols being used as brackets with "unbalancedBracketScopes" for example:
"unbalancedBracketScopes"
"unbalancedBracketScopes": [ "invalid.illegal.characters-not-allowed-here.html", "entity.other.attribute-name.html" ]
No branches or pull requests
VSCode version: 1.85.1
vscode-phoenix version: 0.1.2
The following snippet is incorrectly highlighted
The tokens look OK, most likely it's unmatched bracket
The text was updated successfully, but these errors were encountered: