Skip to content

Commit 75a374e

Browse files
committed
Add option to disable completion in argument lists
1 parent 30856c8 commit 75a374e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,12 @@
788788
"description": "%configuration.dotnet.completion.provideRegexCompletions%",
789789
"order": 20
790790
},
791+
"dotnet.completion.triggerCompletionInArgumentLists": {
792+
"type": "boolean",
793+
"default": "true",
794+
"description": "%configuration.dotnet.completion.triggerCompletionInArgumentLists%",
795+
"order": 20
796+
},
791797
"dotnet.backgroundAnalysis.analyzerDiagnosticsScope": {
792798
"type": "string",
793799
"enum": [

package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"configuration.dotnet.completion.showCompletionItemsFromUnimportedNamespaces": "Enables support for showing unimported types and unimported extension methods in completion lists. When committed, the appropriate using directive will be added at the top of the current file. (Previously `omnisharp.enableImportCompletion`)",
5252
"configuration.dotnet.completion.showNameCompletionSuggestions": "Perform automatic object name completion for the members that you have recently selected.",
5353
"configuration.dotnet.completion.provideRegexCompletions": "Show regular expressions in completion list.",
54+
"configuration.dotnet.completion.triggerCompletionInArgumentLists": "Automatically show completion list in argument lists",
5455
"configuration.dotnet.backgroundAnalysis.analyzerDiagnosticsScope": "Run background code analysis for: (Previously `omnisharp.enableRoslynAnalyzers`)",
5556
"configuration.dotnet.backgroundAnalysis.analyzerDiagnosticsScope.openFiles": "Open documents",
5657
"configuration.dotnet.backgroundAnalysis.analyzerDiagnosticsScope.fullSolution": "Entire solution",

0 commit comments

Comments
 (0)