From 3068aab82d06f4fa2082bcaa34d57452247a6cbb Mon Sep 17 00:00:00 2001 From: Veetaha Date: Sun, 16 Feb 2020 11:15:19 +0200 Subject: vscode: fix the default value for withSysroot --- editors/code/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 7866ed7e1..8c033052b 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -153,5 +153,5 @@ export class Config { } // for internal use - get withSysroot() { return this.cfg.get("withSysroot", false); } + get withSysroot() { return this.cfg.get("withSysroot", true) as boolean; } } -- cgit v1.2.3