From 4d6c6a6b1e00f61af96e16386c7f03f83f96a173 Mon Sep 17 00:00:00 2001 From: vsrs Date: Wed, 10 Jun 2020 16:15:28 +0300 Subject: Fix rust-analyzer.debug.openDebugPane option --- editors/code/src/config.ts | 2 +- editors/code/src/debug.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index d8f0037d4..22ebdf636 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -117,7 +117,7 @@ export class Config { return { engine: this.get("debug.engine"), engineSettings: this.get("debug.engineSettings"), - openUpDebugPane: this.get("debug.openUpDebugPane"), + openDebugPane: this.get("debug.openDebugPane"), sourceFileMap: sourceFileMap }; } diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts index a0c9b3ab2..61c12dbe0 100644 --- a/editors/code/src/debug.ts +++ b/editors/code/src/debug.ts @@ -82,7 +82,7 @@ async function getDebugConfiguration(ctx: Ctx, runnable: ra.Runnable): Promise