dpo / atom-python-debugger

IDE-like Python debugger for Atom
MIT License
42 stars 13 forks source link

Input auto-focus and Empty command entry +keybindings for every button in the debugger #24

Closed DamSenViet closed 6 years ago

DamSenViet commented 7 years ago

Could we please have it auto-focus the debugger command entry upon input() so I don't have to move my mouse?

And the debugger command doesn't register an empty input.

dpo commented 7 years ago

Could we please have it auto-focus the debugger command entry upon input() so I don't have to move my mouse?

I'll be happy to review a pull request.

And the debugger command doesn't register an empty input.

Could you give an example of what you're trying to achieve?

DamSenViet commented 7 years ago

if I have the following python code:

this=input("type something:")

and let's say I want this = "" (empty string) if i attempt to enter nothing into the debugger command, it will not register the command

dpo commented 6 years ago

At this time, this debugger doesn't allow interactive input. The debugger commands box is only for commands sent directly to the debugger, not to the code being debugged.