1

After I write sout and use auto completion for it to be System.out.println();

It shows this
enter image description here
and I want to disable it.. Hope someone can help me, thanks in advance!

I tried many configurations related to editor.suggest in vscode settings.json but couldn't find the correct one.

delirium78
  • 612
  • 4
  • 13

1 Answers1

0

Search for java.signatureHelp.enabled in the Settings panel and uncheck it.

enter image description here

Or add the following configuration in settings.json:

    "java.signatureHelp.enabled": false,
JialeDu
  • 6,021
  • 2
  • 5
  • 24