Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #16964 - lnicola:debugger-order, r=roife
fix: Revert debug extension priorities Close #16901
bors 2024-03-28
parent ad51a17 · parent 662ea73 · commit 4bf521d
-rw-r--r--editors/code/src/debug.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts
index 3fc63fc7d8..cd7e7c35e9 100644
--- a/editors/code/src/debug.ts
+++ b/editors/code/src/debug.ts
@@ -81,8 +81,8 @@ async function getDebugConfiguration(
if (!editor) return;
const knownEngines: Record<string, DebugConfigProvider> = {
- "ms-vscode.cpptools": getCCppDebugConfig,
"vadimcn.vscode-lldb": getCodeLldbDebugConfig,
+ "ms-vscode.cpptools": getCCppDebugConfig,
"webfreak.debug": getNativeDebugConfig,
};
const debugOptions = ctx.config.debug;