-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tab completion for the expression after “p”/“pp” command #245
Comments
Could you file that issue in their repository ? |
Please correct me if I’m wrong, but I thought |
As far as I know, What I am trying to say is that the debugger is provided by |
How can I verify that? I assume that I’m not supposed to fire the The IPython official documentation didn’t mention how to get in a debugger REPL environment (or I must have missed it). |
What is your usual way to get into |
Here is a resource that might help: https://switowski.com/blog/ipython-debugging/ |
In
pdb
, when I typep foo
before hitting Tab, it finds all variables in scope with prefixfoo
, likefoobar
. Inipdb
it shows wrong completion (magic functions). This feature is useful because I’m used to print variables withp
/pp
command (to avoid collision between variables and commands).The text was updated successfully, but these errors were encountered: