You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support 'off' mode when fill the argument during completion (#3143)
- Change the option of 'java.completion.guessMethodArguments' from boolean
to four options: "auto", "off", "insertParameterNames" and
"insertBestGuessedArguments". Defaults to "auto", means that for VS Code
Insiders, it will use "off", other platforms will use "insertBestGuessedArguments".
Signed-off-by: Sheng Chen <[email protected]>
*`java.completion.guessMethodArguments` : When set to true, method arguments are guessed when a method is selected from as list of code assist proposals.
144
+
*`java.completion.guessMethodArguments` : Specify how the arguments will be filled during completion. Defaults to `auto`.
145
+
-`auto`: Use `off` only when using Visual Studio Code - Insiders, other platform will defaults to `insertBestGuessedArguments`.
146
+
-`off`: Method arguments will not be inserted during completion.
147
+
-`insertParameterNames`: The parameter names will be inserted during completion.
148
+
-`insertBestGuessedArguments`: The best guessed arguments will be inserted during completion according to the code context.
145
149
*`java.completion.filteredTypes`: Defines the type filters. All types whose fully qualified name matches the selected filter strings will be ignored in content assist or quick fix proposals and when organizing imports. For example 'java.awt.*' will hide all types from the awt packages.
146
150
*`java.completion.favoriteStaticMembers` : Defines a list of static members or types with static members.
147
151
*`java.completion.importOrder` : Defines the sorting order of import statements.
0 commit comments