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
var x = null;
var y = `Hello ${x} World/*`
var z = null;
placed in the same directory and then open visual studio code with: open .
using the following line in .bash_profile:
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $*;}
This results in the second line to be green (because of `/* which starts a block comment), also the last line is compeletely green as if it's a block comment...
If I add var sum = (var1, var2) => var1 + var2 as the first line in backtick.js, is highlighted correctly. If I remove jsconfig.json, it starts complaining. For me this is a check to see if the options jsonfig.json are correct and picked up by Code.
The text was updated successfully, but these errors were encountered:
The template string highlighting is broken (it's announced to be working in 0.5.0: http://blogs.msdn.com/b/vscode/archive/2015/07/06/vs-code-es6.aspx).
My jsconfig.json file:
backtick.js:
placed in the same directory and then open visual studio code with:
open .
using the following line in
.bash_profile
:This results in the second line to be green (because of `/* which starts a block comment), also the last line is compeletely green as if it's a block comment...
If I add
var sum = (var1, var2) => var1 + var2
as the first line in backtick.js, is highlighted correctly. If I remove jsconfig.json, it starts complaining. For me this is a check to see if the options jsonfig.json are correct and picked up by Code.The text was updated successfully, but these errors were encountered: