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
Recent builds of vscode now send code action requests containing a context.only value, like:
Params: { "textDocument": { "uri": "file:///Users/fbricon/Dev/souk/vertx-demo-david/demo/src/main/java/com/example/DemoApplication.java" }, "range": { "start": { "line": 30, "character": 0 }, "end": { "line": 30, "character": 0 } }, "context": { "diagnostics": [], "only": [ "source" ] } }
In https://github.com/eclipse/eclipse.jdt.ls/blob/master/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/text/correction/SourceAssistProcessor.java#L158, context.only values are compared to the code action kind as a whole, instead of checking if the kind has a valid prefix. As a result, no code actions are returned.
The text was updated successfully, but these errors were encountered:
All the quickfixes/code actions to extract to a field/var/constant from eclipse-jdtls/eclipse.jdt.ls#1088 are gone.
Sorry, something went wrong.
Nevermind, my problem was that I was selecting new Vets(); instead of new Vets(). That extra semicolon threw me off
new Vets();
new Vets()
fbricon
No branches or pull requests
Recent builds of vscode now send code action requests containing a context.only value, like:
In https://github.com/eclipse/eclipse.jdt.ls/blob/master/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/text/correction/SourceAssistProcessor.java#L158, context.only values are compared to the code action kind as a whole, instead of checking if the kind has a valid prefix. As a result, no code actions are returned.
The text was updated successfully, but these errors were encountered: