skip to Main Content

This is what I am talking about. In this example I have a object of the class Politician who has a function. When I type in the function it autofills the parameters

How do I stop Visual Studio code from doing this? I have inlay parameter names disabled in the settings but it still will auto populate the parameter names.

This is VS code 1.71.0 with Java 8 Update 341

2

Answers


  1. You can try playing with the different auto suggestions mode using the setttings: ->Text-Editor->Suggestions. Maybe one setup could be a good workaround.

    Login or Signup to reply.
  2. You can disable this with java.completion.guessMethodArguments in the VS code settings.

    The setting in VS Code

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search