Say, we've entered the following in the normal ipython shell.
In [1]: 1+1
Out[1]: 2
In [2]: 1+2
Out[2]: 3
In [3]: 2+4
Out[3]: 6
If I now enter:
In[4]: 1+
and press the up arrow key, ipython will offer +1 and +2, i.e. I can skip over 2+4.
How do I replicate this behaviour using Emacs' ipython shell (IPy mode). I have try to use (comint-previous-matching-input-from-input), but this only work for this session history. it can not recall last session like iptython shell.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Please let us know if this issue is still valid!
Say, we've entered the following in the normal ipython shell.
If I now enter:
In[4]: 1+
and press the up arrow key, ipython will offer +1 and +2, i.e. I can skip over 2+4.
How do I replicate this behaviour using Emacs' ipython shell (IPy mode). I have try to use (comint-previous-matching-input-from-input), but this only work for this session history. it can not recall last session like iptython shell.