Skip to content

Commit 7f02a6d

Browse files
committed
Add cortex-debug to the list of supported C++ debuggers
1 parent 2aaddbc commit 7f02a6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debugger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class SessionInfo {
1414
const sessionType = this.session.type;
1515
if (sessionType === undefined)
1616
return undefined;
17-
if (['cppvsdbg', 'cppdbg', 'lldb'].includes(sessionType))
17+
if (['cppvsdbg', 'cppdbg', 'lldb', 'cortex-debug'].includes(sessionType))
1818
return Language.Cpp;
1919
else if (['python', 'Python Kernel Debug Adapter'].includes(sessionType))
2020
return Language.Python;

0 commit comments

Comments
 (0)