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
- the priority of the completions from kernel can now be changed by switching new `kernelCompletionsFirst` setting ([#520])
8
+
- completer panel will now always render markdown documentation if available ([#520])
9
+
- the implementation re-renders the panel as it is the best we can do until [jupyterlab#9663](https://github.com/jupyterlab/jupyterlab/pull/9663) is merged
10
+
- the completer now uses `filterText` and `sortText` if available to better filter and sort completions ([#520])
11
+
12
+
- bug fixes:
13
+
- completer documentation will now consistently show up after filtering the completion items ([#520])
14
+
- completions containing HTML-like syntax will be displayed properly (an upstream issue) ([#520])
Copy file name to clipboardExpand all lines: packages/jupyterlab-lsp/schema/completion.json
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,12 @@
42
42
"title": "Completer theme",
43
43
"type": ["string", "null"],
44
44
"default": "vscode",
45
-
"description": "The identifier of a completer theme with icons which indicate the kind of completion. Set to null to disable icons."
45
+
"description": "The identifier of a completer theme with icons which indicate the kind of completion. Set to null to disable icons. Search for 'completer themes' in the command palette for a command displaying available themes."
46
+
},
47
+
"kernelCompletionsFirst": {
48
+
"title": "Prioritize completions from kernel",
49
+
"default": false,
50
+
"description": "In case of ties when sorting completions, should the kernel completions receive higher priority than the language server completions?"
46
51
},
47
52
"typesMap": {
48
53
"title": "Mapping of custom kernel types to valid completion kind names",
0 commit comments