Created
August 30, 2023 03:55
-
-
Save dcb9/54efe6c8674681b39156850f3e9eb7b6 to your computer and use it in GitHub Desktop.
My .pdbrc file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# autocompletion | |
import rlcompleter | |
import pdb | |
pdb.Pdb.complete=rlcompleter.Completer(locals()).complete | |
# show source code context before and after current line | |
alias n next ;; l | |
alias s step ;; l | |
alias u up ;; l | |
alias d down ;; l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment