inducer / pudb

Full-screen console debugger for Python
https://documen.tician.de/pudb/
Other
2.99k stars 229 forks source link

Implement "--continue" CLI arg (alias "-c") #559

Closed mvanderkamp closed 2 years ago

mvanderkamp commented 2 years ago

Adds a --continue (alias -c) CLI option. To my knowledge we don't have a command language like pdb does, so I thought it would be simpler to go about supporting this feature this way, as oppose to a generic -c like pdb offers. Alternatively I suppose we could call the keyboard controls a "command language" and try to find a way feed a series of keyboard inputs through.

asmeurer commented 2 years ago

I also prefer this solution. I haven't seen anyone requesting a "command language" beyond this specific feature request. I'd like to see an actual use case for it before attempting something like that.

mvanderkamp commented 2 years ago

Yeah I much prefer things this way too, I just figured I should point out the difference.

inducer commented 2 years ago

Thanks for working on this!