-
-
Notifications
You must be signed in to change notification settings - Fork 107
Fixed DAPInstall.nvim auto install #154
Fixed DAPInstall.nvim auto install #154
Conversation
Continuing off the comment you left in #153, maintaining a lookup table matching each lang to a DAP wouldn't be too hard. Happy to add that. |
I spent ages refactoring this to give more meaningful error messages: The current implementation works and will automatically install DAP clients, and avoid duplicates. Let me know if you're happy with it. Side note, do you have any recommendations of how to speed up the development cycle when working in a lua config? What I've been doing is having one nvim window that I use for testing my changes and I need to |
Hi buddy, my internet connection is dead since 2 hours ago haha I'm unlucky ig :p
Take your time, there's no hurry imo and since my net is dead then maybe I'll merge this tomorrow or when my net revives haha :p
Yeah this is good enough, thanks per this awesome work!
Hmm don't know if this could work but Doom automatized almost all the plugins stuff, that means if you modify a plugin config Doom will automatically run |
Hi buddy, is it ready to merge? I feel like it's done but I don't know if you want to add extra stuff haha Regards |
Yep, it's good. Ready to merge! |
Question on this: it seems to automatically install dap clients, but will it configure them? I've used DInstall python, but then it states that python is not configured. |
Hi, yeah it should. DAPInstall.nvim handles (un)installation and configuration of DAP clients. You can take a look here |
The automatic installer had the same problem as #87 & #149.
Also it seems like the
ColourScheme
event wasn't triggeringnvim-dap
so I've removed lazy loading from it. Let me know if there's another autocommand that would be more suitable.Additionally the api to install DAPs has changed so I've fixed that.