Skip to content

Commit

Permalink
Change debugger type to 'cob-gdb'
Browse files Browse the repository at this point in the history
  • Loading branch information
emilienlemaire committed Dec 12, 2024
1 parent 4249374 commit fa499b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/lsp/superbol_free_lib/vscode_extension.ml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ let contributes =
~path: "./syntaxes/dumpfile.tmLanguage.json"
]
~debuggers: [
Manifest.debugger "gdb"
Manifest.debugger "cob-gdb"
~label: "SuperBOL Debugger for GnuCOBOL"
~languages: ["cobol"; "COBOL"]
~program: "./_dist/superbol-vscode-gdb.js"
Expand Down Expand Up @@ -262,7 +262,7 @@ let contributes =
"description": "New SuperBOL launch request",
"body": {
"name": "${2:SuperBOL: debug (launch)}",
"type": "gdb",
"type": "cob-gdb",
"request": "launch",
"preLaunchTask": "SuperBOL: build (debug)",
"target": "$${_:{file}}",
Expand All @@ -279,7 +279,7 @@ let contributes =
"description": "Attach to a local debug session",
"body": {
"name": "${2:SuperBOL: debug (attach local)}",
"type": "gdb",
"type": "cob-gdb",
"request": "attach",
"pid": "${3:0}",
"target": "$${_:{file}}",
Expand All @@ -294,7 +294,7 @@ let contributes =
"description": "Attach to a remote debug session",
"body": {
"name": "${2:SuperBOL: debug (attach remote)}",
"type": "gdb",
"type": "cob-gdb",
"request": "attach",
"remote-debugger": "${3:host:port}",
"target": "$${_:{file}}",
Expand Down

0 comments on commit fa499b3

Please sign in to comment.