File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
src/jupyter_matlab_kernel/matlab/+jupyter Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Once installed, you can:
14
14
This package supports both Jupyter Notebook and JupyterLab. Some capabilities are limited to the JupyterLab interface.
15
15
16
16
** Note on JupyterLab 4:**
17
- Features such as tab completion and syntax highlighting are available in JupyterLab 3, but not yet supported in JupyterLab 4.
17
+ Features such as auto-indentation and syntax highlighting are available in JupyterLab 3, but not yet supported in JupyterLab 4.
18
18
19
19
This package is under active development. To report any issues or suggestions, see the [ Feedback] ( #feedback ) section.
20
20
Original file line number Diff line number Diff line change 39
39
end
40
40
end
41
41
42
- % The results might have duplicate entries. We are de-duplicating only 'matches'
43
- % cell array but not 'completions' because it is JupyterLab specific and not part
44
- % of the official Jupyter tab completion API.
45
- result.matches = unique(result .matches );
46
-
47
42
if ~isempty(result .completions )
48
43
result.start = result.completions{1 }.start;
49
44
result.end = result.completions{1 }.end;
You can’t perform that action at this time.
0 commit comments