You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In VSC 1.8.1, when I use my custom JavaScript grammar on .jsx file, it doesn't show the custom grammar's scope. It seems to prefer displaying the default VSC grammar scopes.
Make sure the language selected is "JavaScript React (Babel)" and then try this line in a jsx file.
console.log(`Running a GraphQL API server at http://localhost:${port}${baseUrl}`)
When you hover over localhost the scopes shown are:
source.js
string.template.js
If you look in F1 Dev Tools though, the classes are this: <span class="token js meta group braces round string interpolated detected-link">http://localhost:</span>
The text was updated successfully, but these errors were encountered:
Per microsoft/vscode#17933 (comment)
In VSC 1.8.1, when I use my custom JavaScript grammar on .jsx file, it doesn't show the custom grammar's scope. It seems to prefer displaying the default VSC grammar scopes.
localhost
the scopes shown are:<span class="token js meta group braces round string interpolated detected-link">http://localhost:</span>
The text was updated successfully, but these errors were encountered: