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
Allow to disable LSP or Kernel completions independently.
Some use love LSP for many of its features, but prefer to keep
completions via the kernel.
This adds two boolean flags in the configuration to not send completions
request to LSP and not send completions requests to the kernel.
See #440
Copy file name to clipboardExpand all lines: packages/jupyterlab-lsp/schema/completion.json
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,18 @@
41
41
"type": "number",
42
42
"description": "The time to wait for the kernel completions suggestions in milliseconds. Set to 0 to disable kernel completions, or to -1 to wait indefinitely (not recommended)."
43
43
},
44
+
"useKernelCompletions": {
45
+
"title": "Request Kernel Completion",
46
+
"type": "boolean",
47
+
"default": true,
48
+
"description": "Whether to send completions request to the kernel."
49
+
},
50
+
"useLspCompletions": {
51
+
"title": "Request LSP Completion",
52
+
"type": "boolean",
53
+
"default": true,
54
+
"description": "Whether to send completions request to the lsp server."
0 commit comments