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
Vetur: Restart VLS
Weird arrow function color in latest VSCode + lang="ts"
Every theme produced same result, so theme is fine, I'm using default dark theme here:
<script lang="ts"> export default { methods: { cool() { return () => {}; }, }, }; </script>
The text was updated successfully, but these errors were encountered:
microsoft/vscode#157322 I believe it's an issue with VS Code and its bracket pairing.
As mentioned in vuejs/language-tools#1677 (comment), adding the following to settings.json can be used as a temporary workaround:
"editor.language.colorizedBracketPairs": [ ["{", "}"], ["[", "]"], ["(", ")"] ]
Sorry, something went wrong.
No branches or pull requests
Vetur: Restart VLS
Info
Problem
Weird arrow function color in latest VSCode + lang="ts"
Every theme produced same result, so theme is fine, I'm using default dark theme here:
Reproducible Case
The text was updated successfully, but these errors were encountered: