oracle / javavscode

Java platform support for Visual Studio Code for full featured Java development (edit-compile-debug & test cycle)
Apache License 2.0
231 stars 31 forks source link

Option to disable auto completion of method arguments #197

Open mirojantti opened 4 months ago

mirojantti commented 4 months ago

Hey, I would like to disable the auto completion of method arguments.

When pressing enter here image I don't want the arguments to be guessed or filled in at all like so image Instead, I'd rather have it only complete the method name and potentially add the parentheses, nothing more. I can then use the parameter hint box to view the missing parameters without having to worry about unwanted text being inserted in the document. image

mirojantti commented 4 months ago

Here's another somewhat related issue with parentheses I've noticed when switching from one method call to another. If I were to change the call to from cos to sin, the existing parentheses are ignored:

image image image