It would be nice to be able to assign IDE actions to a hotkey. Imagine one or more comment link actions being performed when you press a hotkey. A simple example would be Ctrl-M running the IDE command ide://goto?Module=Main. There could be a separate interface for this, or something like a separate code module.
In the code module, it could be defined something like:
Or:
In the code module, it could be defined something like:
B4X:
#MACRO: Go to Main module
#ACTIVATION: Ctrl-M
#COMMAND1: ide://goto?Module=Main
#MACROEND
Or:
B4X:
'Go to Main module.
#MACRO: Ctrl-M, ide://goto?Module=Main
'Go to Activity_Create
#MACRO: Ctrl-A, ide://goto?Sub=Activity_Create