We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0afaf0 commit df49558Copy full SHA for df49558
src/jupyter_matlab_kernel/matlab/+jupyter/complete.m
@@ -6,7 +6,7 @@
6
function result = complete(code, cursorPosition)
7
% COMPLETE A helper function to provide tab completion results
8
9
-% Copyright 2023 The MathWorks, Inc.
+% Copyright 2023-2024 The MathWorks, Inc.
10
11
% Get tab completion data for matlab code. Using evalin('base',..) so that the
12
% function workspace does not affect the results.
@@ -117,4 +117,6 @@
117
type = "property";
118
elseif strcmp(inputType, "variable")
119
type = "variable";
120
+else
121
+ type = "function";
122
end
0 commit comments