Skip to content

Commit f62272a

Browse files
authored
Merge pull request #7446 from dibarbet/completion_trigger_argument
Add option to disable completion in argument lists
2 parents 39c80ec + fc9d3c0 commit f62272a

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)
55

66
# Latest
7+
* Add option `dotnet.completion.triggerCompletionInArgumentLists` to disable completion in argument lists (PR: [#7446](https://github.com/dotnet/vscode-csharp/pull/7446))
8+
* Bump Roslyn to 4.12.0-2.24417.1 (PR: [#7446](https://github.com/dotnet/vscode-csharp/pull/7446))
9+
* Fix issue projects would fail to load with missing output path error (PR: [#74791](https://github.com/dotnet/roslyn/pull/74791))
10+
* Expose option to disable completion triggers argument list (PR: [#74792](https://github.com/dotnet/roslyn/pull/74792))
11+
12+
# 2.44.x
713
* Bump Roslyn to 4.12.0-2.24416.3 (PR: [#7448](https://github.com/dotnet/vscode-csharp/pull/7448))
814
* Use EnableCodeStyleSeverity instead of AnalysisLevel to control new diagnostic severity behavior (PR: [#73843](https://github.com/dotnet/roslyn/pull/73843))
915
* Cleanup LSP error reporting (PR: [#74530](https://github.com/dotnet/roslyn/pull/74530))

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"defaults": {
40-
"roslyn": "4.12.0-2.24416.3",
40+
"roslyn": "4.12.0-2.24417.1",
4141
"omniSharp": "1.39.11",
4242
"razor": "9.0.0-preview.24366.2",
4343
"razorOmnisharp": "7.0.0-preview.23363.1",
@@ -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)