Reputation: 1607
Is there a quick way to get to the Debug History in eclipse on OS X by just using the keyboard?
On Windows you can do
Alt,R, H, Number
to invoke the nth entry from the history or simply
Alt,R, H, Return
to invoke the last entry (e.g. last test).
What possiblities are there on OS X?
Upvotes: 9
Views: 334
Reputation: 29458
You were using mnemonics in Windows. However, Mac OS X doesn't support mnemonics and you can't do it like in Windows or Linux.
This link would help you understand the problem. According to Mac OS UI guidelines, mnemonics violate the principles of OS X Human Interface Guidelines.
So the most handy way to achieve your goal is to just hit the Debug
button on the toolbar, or expand its popup and select the run configuration what you want to run. You can re-run the last debug by Cmd+F11
.
Upvotes: 3