Cannot navigate through macros menu using hotkeys plsql 10

I also can say about hot key's problem in plsql 10.

Open Program Window or Test Window or Command Window.
Hotkeys doesn't work at all. If I choose command from menu it is work, but not through hotkey.

Open SQL window and hotkeys works good.
 
Last edited:
Before 10, when you added macros to menu you could press alt,m and then the first letter of the macro description and the macro was executed, if there is more than one macro with the same starting letter you could press the letter again to go to the next macro and press enter to execute.

Ex.: macros
"create table"
"create view "
"drop table"

ex.1
alt,m (open macro menu)
d ( macro executed: drop table)

ex.2
alt,m (open macro menu)
c ( navigate to "create table")
c ( navigate to "create view")
enter execute selected macro "create view"

 
I seems that you now have to explicitly define the shortcut key by adding an ampersand to the description in the macro definition. For example:

&create table
create &view
&drop table

This will be displayed as:

create table
create view
drop table

You can now use c, t and d to navigate to these menu items.
 
Gerf said:
I also can say about hot key's problem in plsql 10.

Open Program Window or Test Window or Command Window.
Hotkeys doesn't work at all. If I choose command from menu it is work, but not through hotkey.

Open SQL window and hotkeys works good.

This is a bug when working with old plugin Easy_BM.dll.
 
Back
Top