BTW, can you add some one-letter shortcuts to the command prompt entry, the same as other menu entries, so that we can open a cmd without clicking?
From your screenshot it looks like you're using the submenu functionality. A quick hack that might improve upon the arrow key work-around mentioned earlier is:
1. Update to version 0.0.0.4 of the plugin
2. Find the function named augmentContextMenuForPath in the file lib/optv2.js
3. Change the code:
Formatted for
Javascript with the GeSHI Syntax Highlighter [
copy or print]
pu.buildSubmenuStartString({caption: "Prompt Here...",
to:
Formatted for
Javascript with the GeSHI Syntax Highlighter [
copy or print]
pu.buildSubmenuStartString({caption: "Prompt &Here...",
The effect of this should be to make the submenu accessible via typing the H key (assuming the context menu for the result is already displayed).
So once the submenu is brought up using the H key, one of the following should invoke the desired command prompt:
Case 1:
The desired submenu item starts with a letter which no other submenu item starts with. In this case, just typing the first letter in the desired submenu item should invoke the appropriate submenu item.
Case 2:
The desired submenu item starts with a letter which at least one other submenu item also starts with. In this case, type the first letter the appropriate number of times until the desired submenu item is highlighted. Then press Enter to invoke the submenu item.
IIUC, the behavior described above in cases 1 and 2 is pretty common in Windows.
Do you think this is good enough? If not, do you have an alternate suggestion?
I know the idea above is not ideal for the case of not using the submenu, so I'd like to come up with a better idea.