How do I stop Visual Studio Code from autofilling in the parameter names when I write a function?

Viewed 56

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

1 Answers

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

Related