jupyter / jupyter-js-notebook

JupyterLab notebook
BSD 3-Clause "New" or "Revised" License
46 stars 18 forks source link

Completion #231

Closed SylvainCorlay closed 8 years ago

SylvainCorlay commented 8 years ago

If the completion is used to type the last word of a cell before execution, the part of the word from the completion is not sent for execution.

1) from ipywidgets import IntS + Hit Tab + Select IntSlider. You see from ipywidgets import IntSlider 2) Hit shift + Enter 3) You get the following error

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-1-ce26a14c7206> in <module>()
----> 1 from ipywidgets import IntS

ImportError: cannot import name 'IntS'