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
Copy file name to clipboardExpand all lines: packages/jupyterlab-lsp/schema/completion.json
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,19 @@
24
24
"type": "string"
25
25
},
26
26
"default": ["comment", "string"],
27
-
"description": "An array of CodeMirror tokens for which the auto-invoke should be suppressed. The token names vary between languages (modes)."
27
+
"description": "An array of CodeMirror tokens for which the auto-invoke should be suppressed. Adding 'def' will prevent continuous hinting when writing a function name in Python, Julia, JavaScript and other languages. The token names vary between languages (modes)."
28
+
},
29
+
"kernelResponseTimeout": {
30
+
"title": "Kernel completion response timeout",
31
+
"default": 600,
32
+
"type": "number",
33
+
"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)."
34
+
},
35
+
"waitForBusyKernel": {
36
+
"title": "Wait for kernel if busy",
37
+
"default": true,
38
+
"type": "boolean",
39
+
"description": "Should an attempt to get the kernel response (with timeout as specified by kernelResponseTimeout) be made if kernel is busy? If you often write code in notebook while computations are running for long time (e.g. training models), turning this off might give you faster response times."
0 commit comments