Replies: 1 comment 4 replies
-
Can you elaborate on the use-case? Overriding the whole event handler won't be supported as it sets some state that is important for other operations and extensions to work. I could imagine providing an extension point or options to customize some of the jump behavior. This is a bit related to #676 But all of this needs problem descriptions and use-case scenarios. "Is not extensible enough" is not actionable. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm trying to implement a new type of breakpoints that allows triggering actions using hooks, this type of breakpoint will allow smarter debugging options, such as adding breakpoint A that can only start working after breakpoint B was hit.
Here is the repository https://github.com/LiadOz/meta-breakpoints.nvim
The main issues I have right now are that the nvim-dap is not extensible enough, for example I would like to place and remove breakpoints programmatically, right now I need to move the cursor to do that. Another thing that I would need is a way to change the behaviour that happens on breakpoint being hit. What are your thoughts about that?
Beta Was this translation helpful? Give feedback.
All reactions