diff options
| author | bors <bors@rust-lang.org> | 2024-03-28 06:08:47 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-28 06:08:47 +0000 |
| commit | 4bf521df35d7b52b44bf371b8ebb65d983d056d4 (patch) | |
| tree | 4d05da37c55e90145edceee6c6f298535ffcd670 | |
| parent | ad51a17c627b4ca57f83f0dc1f3bb5f3f17e6d0b (diff) | |
| parent | 662ea73e4e2df83de04c4f2936c3db9eb3a1e24c (diff) | |
| download | rust-4bf521df35d7b52b44bf371b8ebb65d983d056d4.tar.gz rust-4bf521df35d7b52b44bf371b8ebb65d983d056d4.zip | |
Auto merge of #16964 - lnicola:debugger-order, r=roife
fix: Revert debug extension priorities Close #16901
| -rw-r--r-- | editors/code/src/debug.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts index 3fc63fc7d81..cd7e7c35e99 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; |
