We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
:
\x1e
1 parent 79991a8 commit 84ab53dCopy full SHA for 84ab53d
server/src/server.ts
@@ -412,7 +412,11 @@ async function runCompiler(
412
let stdout = "";
413
try {
414
const script_path_flag =
415
- includeFlagForPath(uri) + ":" + settings.includeDirs.join(":") + '"';
+ includeFlagForPath(uri) +
416
+ "\x1e" + // \x1e is the record separator character (a character that is unlikely to appear in a path)
417
+ settings.includeDirs.join("\x1e") +
418
+ '"';
419
+
420
const max_errors = settings.maxNumberOfProblems;
421
422
if (flags.includes("ide-check")) {
0 commit comments