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: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@
5
5
- features:
6
6
7
7
- adds `%%bigquery` IPython cell magic support for BigQuery ([#553], thanks @julioyildo)
8
+
- completions filtering can be set to case-insensitive in settings ([#549])
9
+
- completions filtering can hide exact matches ([#549])
10
+
- the extra information displayed next to the completion label now can include 'detail' (usually module/package of origin), and can be customized in settings ([#549])
Copy file name to clipboardExpand all lines: packages/jupyterlab-lsp/schema/completion.json
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,25 @@
58
58
"default": false,
59
59
"description": "In case of ties when sorting completions, should the kernel completions receive higher priority than the language server completions?"
60
60
},
61
+
"caseSensitive": {
62
+
"title": "Case-sensitive filtering",
63
+
"default": true,
64
+
"type": "boolean",
65
+
"description": "Should completion filtering be case-sensitive?"
66
+
},
67
+
"includePerfectMatches": {
68
+
"title": "Include perfect matches",
69
+
"default": true,
70
+
"type": "boolean",
71
+
"description": "Should perfect matches be included in the completion suggestions list?"
72
+
},
73
+
"labelExtra": {
74
+
"title": "Text to display next to completion label",
75
+
"default": "auto",
76
+
"type": "string",
77
+
"enum": ["detail", "type", "source", "auto"],
78
+
"description": "What to display next to the completion label, one of: 'detail', 'type', 'source', 'auto'. The default 'auto' will display whichever information is available."
79
+
},
61
80
"typesMap": {
62
81
"title": "Mapping of custom kernel types to valid completion kind names",
63
82
"description": "Mapping used for icon selection. The kernel types (keys) are case-insensitive. Accepted values are the names of CompletionItemKind and 'Kernel' literal. The defaults aim to provide good initial experience for Julia, Python and R kernels.",
0 commit comments