Replies: 3 comments 1 reply
-
|
This text is generated by VSCode, a debug adapter can't change it. But why aren't you using function breakpoints? |
Beta Was this translation helpful? Give feedback.
-
|
Yes, I am aware of setting function breakpoints this way. However, I usually set function breakpoints with the command br s -n <func_name> from the LLDB command prompt in VSCode. So, setting breakpoints using “Add Function Breakpoint” in the UI, shows the function name. Thank you for your time and assistance. I look forward to your reply. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks a lot for the clarification. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi CodeLLDB Team,
I am currently using CodeLLDB with VScode for my debugging needs and have a question regarding the breakpoints dock. When I set breakpoints using the command "br s -n <function_name>", the breakpoints dock displays the file name and path.
launch configuration :
{
"type": "lldb",
"request": "launch",
"name": "Debug local var",
"program": "C:/Test_code/code1/a.exe",
"args": [],
"cwd": "${workspaceFolder}",
"breakpointMode": "path",
"stopOnEntry": true,
"initCommands": [
"br s -n main"
],
}
I was wondering if there is any support or a way to configure CodeLLDB to display the function name instead of the file name and path in the breakpoints dock. This feature would greatly enhance my debugging experience.
Thank you for your time and assistance. I look forward to your response.
Beta Was this translation helpful? Give feedback.
All reactions