From 73285c66290afbf2d35b5532fa04ea88cc81c556 Mon Sep 17 00:00:00 2001 From: Raoul Wols Date: Sun, 27 Feb 2022 10:53:07 +0100 Subject: [PATCH] Update settings for server version 1.38.1 --- LSP-OmniSharp.sublime-settings | 7 ++----- sublime-package.json | 14 ++------------ 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/LSP-OmniSharp.sublime-settings b/LSP-OmniSharp.sublime-settings index bd48f97..10c36e2 100644 --- a/LSP-OmniSharp.sublime-settings +++ b/LSP-OmniSharp.sublime-settings @@ -16,14 +16,11 @@ // Array of custom symbol names for which CodeLens should be disabled. "csharp.referencesCodeLens.filteredSymbols": [], // Enable/disable Semantic Highlighting for C# files (Razor files currently unsupported). - // Defaults to false. Close open files for changes to take effect. - "csharp.semanticHighlighting.enabled": false, + // Defaults to true. Close open files for changes to take effect. + "csharp.semanticHighlighting.enabled": true, // Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in // the editor or the Problems pane. "csharp.suppressHiddenDiagnostics": true, - // Suppress the warning that project.json is no longer a supported project format for .NET - // Core applications - "csharp.suppressProjectJsonWarning": false, // Specifies whether the run and debug test CodeLens should be shown. "csharp.testsCodeLens.enabled": true, // The name of the default solution used at start up if the repo has multiple solutions. diff --git a/sublime-package.json b/sublime-package.json index 3bf59b2..5f8aa0f 100644 --- a/sublime-package.json +++ b/sublime-package.json @@ -45,8 +45,8 @@ "type": "array" }, "csharp.semanticHighlighting.enabled": { - "default": false, - "description": "Enable/disable Semantic Highlighting for C# files (Razor files currently unsupported). Defaults to false. Close open files for changes to take effect.", + "default": true, + "description": "Enable/disable Semantic Highlighting for C# files (Razor files currently unsupported). Defaults to true. Close open files for changes to take effect.", "type": "boolean" }, "csharp.suppressHiddenDiagnostics": { @@ -54,11 +54,6 @@ "description": "Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in the editor or the Problems pane.", "type": "boolean" }, - "csharp.suppressProjectJsonWarning": { - "default": false, - "description": "Suppress the warning that project.json is no longer a supported project format for .NET Core applications", - "type": "boolean" - }, "csharp.testsCodeLens.enabled": { "default": true, "description": "Specifies whether the run and debug test CodeLens should be shown.", @@ -69,11 +64,6 @@ "description": "The name of the default solution used at start up if the repo has multiple solutions. e.g.'MyAwesomeSolution.sln'. Default value is `null` which will cause the first in alphabetical order to be chosen.", "type": "string" }, - "omnisharp.enableAsyncCompletion": { - "default": false, - "description": "(EXPERIMENTAL) Enables support for resolving completion edits asynchronously. This can speed up time to show the completion list, particularly override and partial method completion lists, at the cost of slight delays after inserting a completion item. Most completion items will have no noticeable impact with this feature, but typing immediately after inserting an override or partial method completion, before the insert is completed, can have unpredictable results.", - "type": "boolean" - }, "omnisharp.enableDecompilationSupport": { "default": false, "description": "Enables support for decompiling external references instead of viewing metadata.",