Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the shortcut for running java application in mac eclipse

I get used to eclipse and know that ctrl+F9 is used for running java application in eclipse in windows. But now I switch to mac, and find that cmd+F9 is used for debug java application, so what is the short cut for running java application ?

like image 621
zjffdu Avatar asked May 26 '11 15:05

zjffdu


People also ask

How do I run a Java program in Eclipse Mac?

Step 1: Open Eclipse and click File > New > Java Project. Step 2: Provide the Project Name and click on the Finish button. Step 3: In the Package Explorer (left-hand side of the window) select the project which you have created. Step 4: Right-click on the src folder, select New > Class from the submenu.

What is the shortcut for run in Eclipse Mac?

You just answered your own question - press at once Shift+Command+F11 and it will run.

What is Ctrl D in Eclipse?

Ctrl + D. Deletes current line in the editor. Command + Shift + O.


1 Answers

Notice, if you keyboard has multimedia functions, such as sound level control, brightness level etc etc. Then a lot of shortcuts using the F keys, such as Cmd+Shift+F11 and Cmd+F11 will not fire the application specific shortcut, but rather the system-wide shortcut.

In that case, you will need to press fn as well, to fire the application specific shortcut. So in this case it would be: Fn+Cmd+Shift+F11

like image 195
JustDanyul Avatar answered Oct 12 '22 23:10

JustDanyul