Skip to content

Commit

Permalink
fix(clangd): update the attribute name for process ID (#3047)
Browse files Browse the repository at this point in the history
The attribute name for picked process id when attaching the debugger is `pid`, not `processId`
  • Loading branch information
xy-lin committed May 14, 2024
1 parent 1df3c5d commit 3c04789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/plugins/extras/lang/clangd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ return {
type = "codelldb",
request = "attach",
name = "Attach to process",
processId = require("dap.utils").pick_process,
pid = require("dap.utils").pick_process,
cwd = "${workspaceFolder}",
},
}
Expand Down

0 comments on commit 3c04789

Please sign in to comment.