[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#18084: closed (24.3.92; python.el: buggy ipython support)
From: |
Fabián Ezequiel Gallina |
Subject: |
bug#18084: closed (24.3.92; python.el: buggy ipython support) |
Date: |
Mon, 28 Jul 2014 18:10:51 -0300 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) |
Carlos Pita <carlosjosepita@gmail.com> writes:
> Good work! It's working very well, che :). Till now I just was able to
> found this one quirk: if you delete the space between the prefix and
> the prompt completion gets broken. That is:
>
> In[20]: str.<TAB>
>
> works as expected, but:
>
> In[20]:str.<TAB>
>
> gets no completions. Looks to me like the prefix parser is not taking
> the prompt into account, feeding it to ipython.
>
Which is expected, as the end of prompt is the last resort for our input
prefix start when looking for completions.
Revno 117605 makes inferior-python-mode to set comint-prompt-read-only
to t so messing around with the input prompt is not allowed.
Regards,
Fabián