Skip to content

Commit

Permalink
Add option to disable completion in argument lists
Browse files Browse the repository at this point in the history
  • Loading branch information
dibarbet committed Aug 16, 2024
1 parent 8643fdb commit e620a55
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -788,6 +788,12 @@
"description": "%configuration.dotnet.completion.provideRegexCompletions%",
"order": 20
},
"dotnet.completion.triggerCompletionInArgumentLists": {
"type": "boolean",
"default": "true",
"description": "%configuration.dotnet.completion.triggerCompletionInArgumentLists%",
"order": 20
},
"dotnet.backgroundAnalysis.analyzerDiagnosticsScope": {
"type": "string",
"enum": [
Expand Down
1 change: 1 addition & 0 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"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`)",
"configuration.dotnet.completion.showNameCompletionSuggestions": "Perform automatic object name completion for the members that you have recently selected.",
"configuration.dotnet.completion.provideRegexCompletions": "Show regular expressions in completion list.",
"configuration.dotnet.completion.triggerCompletionInArgumentLists": "Automatically show completion list in argument lists",
"configuration.dotnet.backgroundAnalysis.analyzerDiagnosticsScope": "Run background code analysis for: (Previously `omnisharp.enableRoslynAnalyzers`)",
"configuration.dotnet.backgroundAnalysis.analyzerDiagnosticsScope.openFiles": "Open documents",
"configuration.dotnet.backgroundAnalysis.analyzerDiagnosticsScope.fullSolution": "Entire solution",
Expand Down

0 comments on commit e620a55

Please sign in to comment.