We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fd6662 commit b734022Copy full SHA for b734022
src/browser/pages/vscode.ts
@@ -25,8 +25,10 @@ type NlsConfiguration = {
25
* for getNlsConfiguration.
26
*/
27
export function createBundlePath(_resolvedLanguagePackCoreLocation: string, bundle: string) {
28
- // NOTE@jsjoeio - this comment was here before me but not sure
29
- // why it's here or how to fix.
+ // NOTE@jsjoeio - this comment was here before me
+ // Refers to operating systems that use a different path separator.
30
+ // Probably just Windows but we're not sure if "/" breaks on Windows
31
+ // so we'll leave it alone for now.
32
// FIXME: Only works if path separators are /.
33
return _resolvedLanguagePackCoreLocation + "/" + bundle.replace(/\//g, "!") + ".nls.json"
34
}
0 commit comments