mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-26 10:48:45 +02:00
fix(clangd): update the attribute name for process ID (#3047)
The attribute name for picked process id when attaching the debugger is `pid`, not `processId`
This commit is contained in:
parent
1df3c5d70b
commit
3c04789ef1
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ return {
|
||||||
type = "codelldb",
|
type = "codelldb",
|
||||||
request = "attach",
|
request = "attach",
|
||||||
name = "Attach to process",
|
name = "Attach to process",
|
||||||
processId = require("dap.utils").pick_process,
|
pid = require("dap.utils").pick_process,
|
||||||
cwd = "${workspaceFolder}",
|
cwd = "${workspaceFolder}",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue