Added launch profile for attaching to a running codex CLI process (#2372)

This commit is contained in:
Eric Traut
2025-08-15 23:35:01 -07:00
committed by GitHub
parent 7a80d3c96c
commit 1930ee720a

36
.vscode/launch.json vendored
View File

@@ -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"]
}
]
} }