One thing I like about zsh autocompletion is how it handles situation when more than 1 item matches the pattern. Say I have folders:
./
abc/
bbc/
bcd/
In zsh, when I type b
and <TAB>
, I can see all the suggestions starting with b
(same as in ipython).
But, when I type <TAB>
once more in zsh, the autocompleter starts to shift between currently matching suggestions (in the example above bbc
and bcd
) and I can accept a suggestion by pressing <ENTER>
. On the other hand, in ipython I have to type the next letter (b
or c
) to choose the correct completion.
I would like to have zsh-like completion in ipython -- did anyone manage to get that?