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
I couldn't toggle line comments with // until I changed
"comments": {
"lineComment": ["//", ""],
"blockComment": ["/", "/"]
}
to
"comments": {
"lineComment": "//",
"blockComment": ["/", "*/"]
}
in language_config.json, not sure if that's a general issue or where language_config.json is stored (couldn't find it in the repo). Thanks for the resource!!