-
Hello, I'm fairly new to NeoVim development and I've been trying to configure my setup for java development. I've gotten most of my configurations set up, except I'm running into an issue where my breakpoints are being ignored. Other than that everything else is functioning as intended Here's my ftplugin/java.lua file
Here's an extract of my dap.log file when I try to debug a test
I haven't configured nvim-dap because I under the assumption that nvim-jdtls would handle it for me? Is there anything obvious I am missing here? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
yes if it didn't you wouldn't see the session starting and running. Based on:
The debug-adapter can't resolve the breakpoint. Which means either there's no code at line 8 where it can stop or there's some path mixup. |
Beta Was this translation helpful? Give feedback.
-
I managed to fix it by switching from NVChad to LazyVim, I would love to be able to say what was causing the issue, whether it was something wrong with NvChad or something else on my end but at least I'm happy now that my debugger is working as intended. |
Beta Was this translation helpful? Give feedback.
I managed to fix it by switching from NVChad to LazyVim, I would love to be able to say what was causing the issue, whether it was something wrong with NvChad or something else on my end but at least I'm happy now that my debugger is working as intended.