Closed John-Boccio closed 1 month ago
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. If you have any new additional information—in particular, if this is still reproducible in the latest version of Electron or in the beta—please include it with your comment!
This issue has been closed due to inactivity, and will not be monitored. If this is a bug and you can reproduce this issue on a supported version of Electron please open a new issue and include instructions for reproducing the issue.
I am having the same issue as of today, please re-open if possible
I can reopen but I don’t use codelldb, so I have no plans on investigating any time soon
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. If you have any new additional information—in particular, if this is still reproducible in the latest version of Electron or in the beta—please include it with your comment!
In case anyone comes across a similar issue, I resolved it by writing my own DAP configuration for cpp
. It is as simple as following the steps described here. For me, doing this verbatim led to a working codelldb
configuration.
@nickmarks00 can you create a PR with the diff?
Hey, yes I can, I'll get onto that shortly ☺️
On Sun, 22 Sept 2024, 11:20 Jay Patel, @.***> wrote:
@nickmarks00 https://github.com/nickmarks00 can you create a PR with the diff?
— Reply to this email directly, view it on GitHub https://github.com/jay-babu/mason-nvim-dap.nvim/issues/113#issuecomment-2366859548, or unsubscribe https://github.com/notifications/unsubscribe-auth/AO6U6XLIOKXXRUZEAHSGWR3ZX3U5BAVCNFSM6AAAAABNFQYTASVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNRWHA2TSNJUHA . You are receiving this because you were mentioned.Message ID: @.***>
So upon further investigation, there isn't actually any meaningful differences between the current configuration and the one I linked to. I am using lazy as my package manager, and so the actual issue was I had the plugin set to load on a command (DapContinue
) rather than on an event like VeryLazy
. This meant the order plugins were loaded once debugging started was probably awry, and hence why my problems were solved when I wrote my own adapter using the link supplied.
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. If you have any new additional information—in particular, if this is still reproducible in the latest version of Electron or in the beta—please include it with your comment!
This issue has been closed due to inactivity, and will not be monitored. If this is a bug and you can reproduce this issue on a supported version of Electron please open a new issue and include instructions for reproducing the issue.
Sorry if this is a dumb question. I am new to neovim and am starting from this kickstart.nvim repository here: https://github.com/John-Boccio/nvim
The changes I have made are in the main branch, all it consists of is the following:
After going into my basic C++ test project, I ran
:DapInstall codelldb
. Then I set a break point and launched "LLDB: Launch" and provided the path to my executable. The error is shown in the screen shot.