@jupyterlab/lsp 4.0.0-beta.2 → 4.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/schema.d.ts +4 -0
- package/package.json +11 -11
- package/src/schema.ts +4 -0
package/lib/schema.d.ts
CHANGED
|
@@ -141,6 +141,10 @@ export interface ServerSpecProperties {
|
|
|
141
141
|
display_name?: DisplayName;
|
|
142
142
|
env?: EnvironmentVariables;
|
|
143
143
|
extend?: Extensions;
|
|
144
|
+
/**
|
|
145
|
+
* Whether to write un-saved documents to disk in a transient `.virtual_documents` directory. Well-behaved language servers that work against in-memory files should set this to `false`, which will become the default in the future.
|
|
146
|
+
*/
|
|
147
|
+
requires_documents_on_disk?: boolean;
|
|
144
148
|
install?: Installation1;
|
|
145
149
|
languages?: LanguageList;
|
|
146
150
|
mime_types?: MIMETypes;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/lsp",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-rc.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -44,22 +44,22 @@
|
|
|
44
44
|
"vscode-languageserver-protocol": "^3.17.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@jupyterlab/apputils": "^4.0.0-
|
|
48
|
-
"@jupyterlab/codeeditor": "^4.0.0-
|
|
49
|
-
"@jupyterlab/coreutils": "^6.0.0-
|
|
50
|
-
"@jupyterlab/docregistry": "^4.0.0-
|
|
51
|
-
"@jupyterlab/services": "^7.0.0-
|
|
52
|
-
"@jupyterlab/translation": "^4.0.0-
|
|
53
|
-
"@lumino/coreutils": "^2.1.
|
|
54
|
-
"@lumino/disposable": "^2.1.
|
|
55
|
-
"@lumino/signaling": "^2.1.
|
|
47
|
+
"@jupyterlab/apputils": "^4.0.0-rc.0",
|
|
48
|
+
"@jupyterlab/codeeditor": "^4.0.0-rc.0",
|
|
49
|
+
"@jupyterlab/coreutils": "^6.0.0-rc.0",
|
|
50
|
+
"@jupyterlab/docregistry": "^4.0.0-rc.0",
|
|
51
|
+
"@jupyterlab/services": "^7.0.0-rc.0",
|
|
52
|
+
"@jupyterlab/translation": "^4.0.0-rc.0",
|
|
53
|
+
"@lumino/coreutils": "^2.1.1",
|
|
54
|
+
"@lumino/disposable": "^2.1.1",
|
|
55
|
+
"@lumino/signaling": "^2.1.1",
|
|
56
56
|
"lodash.mergewith": "^4.6.1",
|
|
57
57
|
"vscode-jsonrpc": "^6.0.0",
|
|
58
58
|
"vscode-languageserver-protocol": "^3.17.0",
|
|
59
59
|
"vscode-ws-jsonrpc": "~1.0.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@jupyterlab/testing": "^4.0.0-
|
|
62
|
+
"@jupyterlab/testing": "^4.0.0-rc.0",
|
|
63
63
|
"@types/jest": "^29.2.0",
|
|
64
64
|
"@types/lodash.mergewith": "^4.6.1",
|
|
65
65
|
"jest": "^29.2.0",
|
package/src/schema.ts
CHANGED
|
@@ -149,6 +149,10 @@ export interface ServerSpecProperties {
|
|
|
149
149
|
display_name?: DisplayName;
|
|
150
150
|
env?: EnvironmentVariables;
|
|
151
151
|
extend?: Extensions;
|
|
152
|
+
/**
|
|
153
|
+
* Whether to write un-saved documents to disk in a transient `.virtual_documents` directory. Well-behaved language servers that work against in-memory files should set this to `false`, which will become the default in the future.
|
|
154
|
+
*/
|
|
155
|
+
requires_documents_on_disk?: boolean;
|
|
152
156
|
install?: Installation1;
|
|
153
157
|
languages?: LanguageList;
|
|
154
158
|
mime_types?: MIMETypes;
|