tkf / emacs-ipython-notebook

IPython notebook client in Emacs
tkf.github.com/emacs-ipython-notebook/
GNU General Public License v3.0
548 stars 51 forks source link

Autocomplete repeats pre-typed expression #171

Open justmytwospence opened 9 years ago

justmytwospence commented 9 years ago

Say I have the following code:

import numpy as np
np.

The completer will then open and I will choose something, say Inf. The code that gets filled in then looks like this:

import numpy as np
np.np.Inf

This happens for all completions, when complete-on-dot is enabled and also when it is not and completion is manually invoked using C-c C-i.

This renders autocompletion completely unusable for me - any ideas?