Hi
I am writting python debugger plugin which will use a lot of keys. So question:
How can I assign default shortcuts to actions like toggle breakpoint, next command etc so user will not have to assign a lot of keys himself.
Also please add sci_set_marker_at_line and sci_is_marker_set_at_line to plugin API. I will need them to show breakpoints and current line when debugging.
patch is attached
On Wed, 9 Sep 2009 14:04:05 +0300 Yura Siamashka yurand2@gmail.com wrote:
How can I assign default shortcuts to actions like toggle breakpoint, next command etc so user will not have to assign a lot of keys himself.
Just set the key and mods when calling keybindings_set_item(). (Of course if they conflict with key-combinations above it they will get ignored).
Regards, Nick
On Wed, 9 Sep 2009 14:04:05 +0300 Yura Siamashka yurand2@gmail.com wrote:
Also please add sci_set_marker_at_line and sci_is_marker_set_at_line to plugin API. I will need them to show breakpoints and current line when debugging.
Committed, thanks. I split sci_set_marker_at_line into sci_set_marker_at_line and sci_delete_marker_at_line and added dox for all 3.
Regards, Nick