We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a80d3c commit 1930ee7Copy full SHA for 1930ee7
.vscode/launch.json
@@ -1,18 +1,22 @@
1
{
2
- "version": "0.2.0",
3
- "configurations": [
4
- {
5
- "type": "lldb",
6
- "request": "launch",
7
- "name": "Cargo launch",
8
- "cargo": {
9
- "cwd": "${workspaceFolder}/codex-rs",
10
- "args": [
11
- "build",
12
- "--bin=codex-tui"
13
- ]
14
- },
15
- "args": []
16
- }
17
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "lldb",
+ "request": "launch",
+ "name": "Cargo launch",
+ "cargo": {
+ "cwd": "${workspaceFolder}/codex-rs",
+ "args": ["build", "--bin=codex-tui"]
+ },
+ "args": []
+ "request": "attach",
+ "name": "Attach to running codex CLI",
18
+ "pid": "${command:pickProcess}",
19
+ "sourceLanguages": ["rust"]
20
+ }
21
+ ]
22
}
0 commit comments