Skip to content

Commit 5f2739a

Browse files
philipc-mwPrabhakar Kumar
authored andcommitted
Fix Tab completion in JLab 4
1 parent 45c0144 commit 5f2739a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Once installed, you can:
1414
This package supports both Jupyter Notebook and JupyterLab. Some capabilities are limited to the JupyterLab interface.
1515

1616
**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.
1818

1919
This package is under active development. To report any issues or suggestions, see the [Feedback](#feedback) section.
2020

src/jupyter_matlab_kernel/matlab/+jupyter/complete.m

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@
3939
end
4040
end
4141

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-
4742
if ~isempty(result.completions)
4843
result.start = result.completions{1}.start;
4944
result.end = result.completions{1}.end;

0 commit comments

Comments
 (0)