2

emacs' GUD (GrandUnifiedDebugger) provides way to change get pdb command name by using.

 (setq gud-pdb-command-name "python -m pdb")

is there the way to do same with realgud

rho
  • 243
  • 2
  • 10

1 Answers1

2

Yes, there is such a way:

(customize-variable 'realgud:pdb-command-name)
Felipe Lema
  • 737
  • 3
  • 11
  • thanks I added `(setq realgud:pdb-command-name "python -m pdb")` to my init file. – rho Mar 23 '18 at 01:50