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

12
.vscode/launch.json vendored
View File

@@ -7,12 +7,16 @@
"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"]
} }
] ]
} }