23 lines
457 B
JSON
23 lines
457 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Cargo launch",
|
|
"cargo": {
|
|
"cwd": "${workspaceFolder}/codex-rs",
|
|
"args": ["build", "--bin=codex-tui"]
|
|
},
|
|
"args": []
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "attach",
|
|
"name": "Attach to running codex CLI",
|
|
"pid": "${command:pickProcess}",
|
|
"sourceLanguages": ["rust"]
|
|
}
|
|
]
|
|
}
|