Add way to provide extra initCommands
#656
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello,
first of all thanks for this great plugin, it's my daily driver for a long time one 🙏
I have a particular feature that I'm lacking or don't know how to achieve in
rustaceanvim
when it comes to debugging: I have a custom lldb init script in my repo (which adds some custom formatters) which I want to apply to every debuggable target there is (executables, nvim-dap targets & neotest debug targets), when using thecodelldb
adapter.AFAIK I can only provide
initCommands
in the.vscode/launch.json
, which works for executables, but not for the tests, right?My idea was let the user configure an optional command in its config, which gets appended to all other init commands of all targets. My user config now looks like this:
Maybe there is another already built in way how to solve this, comments very welcome (=