eclipse.jdt.ls
eclipse.jdt.ls copied to clipboard
Hide completions when signature help is enabled
Signed-off-by: Frederik Claus [email protected]
Implementation for https://github.com/redhat-developer/vscode-java/issues/2063
Can one of the admins verify this patch?
@Eskibear can you please look at the code and decide if we can move forward with it or not?
This doesn't seem to have an impact in vscode. I can see the filter text is simplified, but it still shows all completions, shows and inserts all parameters for an overloaded method.
add to whitelist
@fbricon When the filter text is used, vscode will hide completions once the (
is entered:
Without the filter text, vscode will show the completions that match the text being entered:
For this to work, the signatureHelp needs to be active:
"java.signatureHelp.enabled": true,