We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running a java applications requires set dap.configurations.java to be set. However this has to be resolved by communicating with the JDTLS.
dap.configurations.java
resolve main classes -> resolve class paths for main classes -> create dap config
Configuration can be done LspAttach event but when updated the change will not reflect. So good option would be to configure it just before running.
LspAttach
Similar to dap.adapters, accept functions for dap.configurations
dap.adapters
dap.configurations
dap.configurations.java = function(on_config) -- generate the configuration on_config(java_dap_config) end
No response
The text was updated successfully, but these errors were encountered:
There are now configuration providers to do something like this.
See #1237 and for an example implementation https://github.com/mfussenegger/nvim-jdtls/pull/659/files
Sorry, something went wrong.
No branches or pull requests
Problem Statement
Running a java applications requires set
dap.configurations.java
to be set. However this has to be resolved by communicating with the JDTLS.Configuration can be done
LspAttach
event but when updated the change will not reflect. So good option would be to configure it just before running.Possible Solutions
Similar to
dap.adapters
, accept functions fordap.configurations
Considered Alternatives
No response
The text was updated successfully, but these errors were encountered: