Added launch profile for attaching to a running codex CLI process (#2372)
This commit is contained in:
36
.vscode/launch.json
vendored
36
.vscode/launch.json
vendored
@@ -1,18 +1,22 @@
|
|||||||
{
|
{
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"type": "lldb",
|
"type": "lldb",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Cargo launch",
|
"name": "Cargo launch",
|
||||||
"cargo": {
|
"cargo": {
|
||||||
"cwd": "${workspaceFolder}/codex-rs",
|
"cwd": "${workspaceFolder}/codex-rs",
|
||||||
"args": [
|
"args": ["build", "--bin=codex-tui"]
|
||||||
"build",
|
},
|
||||||
"--bin=codex-tui"
|
"args": []
|
||||||
]
|
},
|
||||||
},
|
{
|
||||||
"args": []
|
"type": "lldb",
|
||||||
}
|
"request": "attach",
|
||||||
]
|
"name": "Attach to running codex CLI",
|
||||||
|
"pid": "${command:pickProcess}",
|
||||||
|
"sourceLanguages": ["rust"]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user