Skip to content

Commit e5c287c

Browse files
authored
Merge pull request #149 from YutaKudo/master
FIX: issue148 (Auto completion doesn't work for table type)
2 parents 2ae3b3b + 3bedbae commit e5c287c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

matlab_kernel/kernel.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,11 @@ def get_completions(self, info):
174174

175175
# For structs, we need to return `structname.fieldname` instead of just
176176
# `fieldname`, which `mtFindAllTabCompletions` does.
177+
# For tables also.
177178

178179
if "." in name:
179180
prefix, _ = name.rsplit(".", 1)
180-
if self._matlab.eval("isstruct({})".format(prefix)):
181+
if self._matlab.eval("isstruct({})".format(prefix)) | self._matlab.eval("istable({})".format(prefix)):
181182
compls = ["{}.{}".format(prefix, compl) for compl in compls]
182183

183184
return compls

0 commit comments

Comments
 (0)