Skip to content

Commit

Permalink
Update settings for server version 1.38.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rwols committed Feb 27, 2022
1 parent 23d982d commit 73285c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
7 changes: 2 additions & 5 deletions LSP-OmniSharp.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
14 changes: 2 additions & 12 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,15 @@
"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": {
"default": true,
"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.",
Expand All @@ -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.",
Expand Down

0 comments on commit 73285c6

Please sign in to comment.