We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071c186 commit 3bedbaeCopy full SHA for 3bedbae
matlab_kernel/kernel.py
@@ -178,7 +178,7 @@ def get_completions(self, info):
178
179
if "." in name:
180
prefix, _ = name.rsplit(".", 1)
181
- if self._matlab.eval("isstruct({})".format(prefix)) or self._matlab.eval("istable({})".format(prefix)):
+ if self._matlab.eval("isstruct({})".format(prefix)) | self._matlab.eval("istable({})".format(prefix)):
182
compls = ["{}.{}".format(prefix, compl) for compl in compls]
183
184
return compls
0 commit comments