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 6783b4e commit 2d17bf5Copy full SHA for 2d17bf5
execnb/shell.py
@@ -269,7 +269,7 @@ def __call__(self, c):
269
with provisionalcompleter():
270
return [o.text.rpartition('.')[-1]
271
for o in self.completions(c, len(c))
272
- if o.type=='<unknown>']
+ if o.type not in ('magic', 'path')]
273
274
# %% ../nbs/02_shell.ipynb 97
275
@patch
nbs/02_shell.ipynb
@@ -1855,7 +1855,7 @@
1855
" with provisionalcompleter():\n",
1856
" return [o.text.rpartition('.')[-1]\n",
1857
" for o in self.completions(c, len(c))\n",
1858
- " if o.type=='<unknown>']"
+ " if o.type not in ('magic', 'path')]"
1859
]
1860
},
1861
{
0 commit comments