You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 22, 2024. It is now read-only.
|`sourcekit-lsp.serverPath`|`string`|| The path of the sourcekit-lsp executable\nIn SDE: defaults to the toolchain's sourcekit-lsp. |
68
+
|`sourcekit-lsp.toolchainPath`|`string`|| The path of the swift toolchain.\nIn SDE: defaults to Xcode's default toolchain. |
69
+
|`swift.languageServerPath`|`string`|`/usr/local/bin/langserver-swift`|[DEPRECATED] The fully qualified path to the Swift Language Server executable. |
70
+
|`swift.path.sourcekite`|`string`|| The fully path to the sourcekite(SDE's LS backend). |
71
+
|`swift.path.swift_driver_bin`|`string`|`/usr/bin/swift`| The fully path to the swift driver binary. |
72
+
|`swift.path.shell`|`string`|`/bin/sh`| The fully path to the shell binary. |
73
+
|`sde.sourcekit.compilerOptions`|`string[]`|`[]`| Optional compiler options like the target or search paths. Will only be used as default. `(debug|release).yaml` builds will override these settings. |
74
+
|`swift.targets`|`object[]`|`[]`| If SDE cannot reliably detect all targets, you can manually configure them. |
|`sde.languageServerMode`|`string`|`sourcekite`| Decides which language server should be used. `sourcekite` is the default LSP for SDE, `sourcekit-lsp` is Apple's official one and `langserver` is RLovelett's Langserver. |
77
+
|`sde.enableTracing.client`|`boolean`|`false`| Enable tracing output for SDE client |
78
+
|`sde.enableTracing.LSPServer`|`boolean`|`false`| Enable tracing output for SDE LS server |
79
+
|`sde.buildOnSave`|`boolean`|`true`| Indicates wether SDE shall build the project on save. |
80
+
|`sde.swiftBuildingParams`|`string[]`|`["build"]`| The params that shall be passed to the swift command. |
81
+
|`swift.diagnosis.max_num_problems`|`number`|`100`| Controls the maximum number of problems produced by the server. NOET: Not used now. |
Copy file name to clipboardExpand all lines: package.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
"url": "https://github.com/vknabel"
9
9
},
10
10
"license": "Apache-2.0",
11
-
"version": "2.10.1",
11
+
"version": "2.11.0-beta.0",
12
12
"publisher": "vknabel",
13
13
"icon": "icons/icon.png",
14
14
"galleryBanner": {
@@ -117,7 +117,7 @@
117
117
"swift.languageServerPath": {
118
118
"type": "string",
119
119
"default": "/usr/local/bin/langserver-swift",
120
-
"description": "The fully qualified path to the Swift Language Server executable."
120
+
"description": "[DEPRECATED] The fully qualified path to the Swift Language Server executable."
121
121
},
122
122
"swift.path.sourcekite": {
123
123
"type": "string",
@@ -126,7 +126,7 @@
126
126
"swift.path.sourcekiteDockerMode": {
127
127
"type": "boolean",
128
128
"default": false,
129
-
"description": "(Experimental)Enable to run dedicated docker shell command. It is the responsibility of user to guarantee that the docker cmd 'docker run --rm -i jinmingjian/docker-sourcekite' works in your system."
129
+
"description": "[DEPRECATED] (Experimental)Enable to run dedicated docker shell command. It is the responsibility of user to guarantee that the docker cmd 'docker run --rm -i jinmingjian/docker-sourcekite' works in your system."
0 commit comments