-
-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add config providers; always load .vscode/launch.json #1237
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mfussenegger
force-pushed
the
config-providers
branch
from
May 30, 2024 12:03
e1cd0f8
to
425e110
Compare
- Introduces a dap.providers.configs table which plugins can extend to add additional sources for dynamic configuration generation - Implements the two built-in configuration sources as providers - `.vscode/launch.json` files are now loaded automatically by one of these providers. The entries from the file always display even if the type doesn't match the current filetype. This gets rid of the `type_to_filetypes` mapping requirements.
mfussenegger
force-pushed
the
config-providers
branch
from
May 30, 2024 13:44
b94edcf
to
8cd2e85
Compare
mfussenegger
added a commit
to mfussenegger/nvim-jdtls
that referenced
this pull request
May 30, 2024
This was referenced May 30, 2024
I should add that the naming is not final and might change before the next release without warning |
mfussenegger
added a commit
to mfussenegger/nvim-jdtls
that referenced
this pull request
Jun 6, 2024
mfussenegger
added a commit
to mfussenegger/nvim-jdtls
that referenced
this pull request
Jun 6, 2024
1 task
folke
pushed a commit
to LazyVim/LazyVim
that referenced
this pull request
Oct 23, 2024
## Description The explicit call to `load_launchjs` is unnecessary, since after mfussenegger/nvim-dap#1237 `.vscode/launch.json` files are loaded automatically. ## Related Issue(s) Fixes #4432 ## Screenshots <!-- Add screenshots of the changes if applicable. --> ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines.
wrightbradley
added a commit
to wrightbradley/nvim
that referenced
this pull request
Nov 8, 2024
The explicit call to `load_launchjs` is unnecessary, since after mfussenegger/nvim-dap#1237 `.vscode/launch.json` files are loaded automatically. Signed-off-by: wrightbradley <bradley.wright.tech@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Introduces a dap.providers.configs table which plugins can extend to
add additional sources for dynamic configuration generation
Implements the two built-in configuration sources as providers
.vscode/launch.json
files are now loaded automatically by one ofthese providers. The entries from the file always display even if the
type doesn't match the current filetype. This gets rid of the
type_to_filetypes
mapping requirements.Closes:
load_launchjs
#1065