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
Steps to Reproduce:
const apiKey = 'foo'; const keyName = `filters[${apiKey}][]`; // it's all fine let subject = { [keyName]: checked }; // syntax highlighting ok let breakMe = { [`filters[${apiKey}][]`]: 'bar' }; // template literal without let breaks syntax highlighting breakMe = { [`filters[${apiKey}][]`]: 'bar' }; // ^- syntax highlighting breaks here console.log('syntax broken here as well');
The text was updated successfully, but these errors were encountered:
Dup of #13166
Sorry, something went wrong.
This seems to be fixed in VSCode 1.9 insiders. @benvds, please give 1.9 insiders a try and let me know if you still see this issue.
Thanks
@mjbvz seems to work now, thx!
waderyan
mjbvz
No branches or pull requests
Steps to Reproduce:
The text was updated successfully, but these errors were encountered: