Skip to content

Commit 4d6c6a6

Browse files
committed
Fix rust-analyzer.debug.openDebugPane option
1 parent 102b7f0 commit 4d6c6a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

editors/code/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export class Config {
117117
return {
118118
engine: this.get<string>("debug.engine"),
119119
engineSettings: this.get<object>("debug.engineSettings"),
120-
openUpDebugPane: this.get<boolean>("debug.openUpDebugPane"),
120+
openDebugPane: this.get<boolean>("debug.openDebugPane"),
121121
sourceFileMap: sourceFileMap
122122
};
123123
}

editors/code/src/debug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async function getDebugConfiguration(ctx: Ctx, runnable: ra.Runnable): Promise<v
8282
}
8383

8484
debugOutput.clear();
85-
if (ctx.config.debug.openUpDebugPane) {
85+
if (ctx.config.debug.openDebugPane) {
8686
debugOutput.show(true);
8787
}
8888

0 commit comments

Comments
 (0)