This commit is contained in:
Young-Flash 2025-10-14 04:58:22 -07:00 committed by GitHub
commit 7f941181e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,11 +112,13 @@ async function getDebugConfiguration(
const commandCodeLLDB: string = createCommandLink("vadimcn.vscode-lldb");
const commandNativeDebug: string = createCommandLink("webfreak.debug");
const commandLLDBDap: string = createCommandLink("llvm-vs-code-extensions.lldb-dap");
const commandProbeRS: string = createCommandLink("probe-rs.probe-rs-debugger");
await vscode.window.showErrorMessage(
`Install [CodeLLDB](command:${commandCodeLLDB} "Open CodeLLDB")` +
`, [lldb-dap](command:${commandLLDBDap} "Open lldb-dap")` +
`, [C/C++](command:${commandCCpp} "Open C/C++") ` +
`, [probe-rs](command:${commandProbeRS} "Open probe-rs") ` +
`or [Native Debug](command:${commandNativeDebug} "Open Native Debug") for debugging.`,
);
return;