-
Notifications
You must be signed in to change notification settings - Fork 9
/
sublime-package.json
126 lines (126 loc) · 5.81 KB
/
sublime-package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"contributions": {
"settings": [
{
"file_patterns": [
"/LSP-OmniSharp.sublime-settings"
],
"schema": {
"$id": "sublime://settings/LSP-OmniSharp",
"allOf": [
{
"$ref": "sublime://settings/LSP-plugin-base"
},
{
"$ref": "sublime://settings/LSP-OmniSharp#/definitions/PluginConfig"
}
],
"definitions": {
"PluginConfig": {
"properties": {
"settings": {
"additionalProperties": false,
"properties": {
"omnisharp.defaultLaunchSolution": {
"default": null,
"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.enableDecompilationSupport": {
"default": false,
"description": "Enables support for decompiling external references instead of viewing metadata.",
"type": "boolean"
},
"omnisharp.enableEditorConfigSupport": {
"default": true,
"description": "Enables support for reading code style, naming convention and analyzer settings from .editorconfig.",
"type": "boolean"
},
"omnisharp.enableImportCompletion": {
"default": false,
"description": "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. This option can have a negative impact on initial completion responsiveness, particularly for the first few completion sessions after opening a solution.",
"type": "boolean"
},
"omnisharp.enableMsBuildLoadProjectsOnDemand": {
"default": false,
"description": "If true, MSBuild project system will only load projects for files that were opened in the editor. This setting is useful for big C# codebases and allows for faster initialization of code navigation features only for projects that are relevant to code that is being edited. With this setting enabled OmniSharp may load fewer projects and may thus display incomplete reference lists for symbols.",
"type": "boolean"
},
"omnisharp.enableRoslynAnalyzers": {
"default": false,
"description": "Enables support for roslyn analyzers, code fixes and rulesets.",
"type": "boolean"
},
"omnisharp.loggingLevel": {
"default": "information",
"description": "Specifies the level of logging output from the OmniSharp server.",
"enum": [
"trace",
"debug",
"information",
"warning",
"error",
"critical"
],
"type": "string"
},
"omnisharp.maxFindSymbolsItems": {
"default": 1000,
"description": "The maximum number of items that 'Go to Symbol in Workspace' operation can show. The limit is applied only when a positive number is specified here.",
"type": "number"
},
"omnisharp.maxProjectResults": {
"default": 250,
"description": "The maximum number of projects to be shown in the 'Select Project' dropdown (maximum 250).",
"type": "number"
},
"omnisharp.minFindSymbolsFilterLength": {
"default": 0,
"description": "The minimum number of characters to enter before 'Go to Symbol in Workspace' operation shows any results.",
"type": "number"
},
"omnisharp.organizeImportsOnFormat": {
"default": false,
"description": "Specifies whether 'using' directives should be grouped and sorted during document formatting.",
"type": "boolean"
},
"omnisharp.useEditorFormattingSettings": {
"default": true,
"description": "Specifes whether OmniSharp should use Sublime Text editor settings for C# code formatting (use of tabs, indentation size).",
"type": "boolean"
},
"razor.format.enable": {
"default": true,
"description": "Enable/disable default Razor formatter.",
"type": "boolean"
}
}
}
}
}
}
}
},
{
"file_patterns": [
"/*.sublime-project"
],
"schema": {
"properties": {
"settings": {
"properties": {
"LSP": {
"properties": {
"OmniSharp": {
"$ref": "sublime://settings/LSP-OmniSharp#/definitions/PluginConfig"
}
}
}
}
}
}
}
}
]
}
}