Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Terminate Keyboard Shortcut

How do I get eclipse to terminate? I use the keyboard shortcut Ctrl+F11 to run a program and I cannot enable the terminate hotkey, since in development I run the program 100s of times per day I waste a lot of time clicking the red terminate square.

I have looked at previous postings of this question and have gone to Windows --> Preferences --> General --> Keys and found "Terminate" command: I have set it to binding Shift+Ctrl+F11 and set the "When" setting to "In Windows". I have tried various other options but the shortcut never works. Why?

like image 959
William Grimes Avatar asked Jul 23 '13 06:07

William Grimes


People also ask

How do I terminate Eclipse?

For newer versions of Eclipse: open the Debug perspective (Window > Open Perspective > Debug) select process in Devices list (bottom right) Hit Stop button (top right of Devices pane)

What is Ctrl Shift R in Eclipse?

Open project, file, etc. Ctrl+Shift+R. Open Resource (file, folder or project) Alt+Enter. Show and access file properties.

What is Ctrl D in Eclipse?

Ctrl + D. Deletes current line in the editor. Command + Shift + O. Ctrl + Shift + O. Organize imports in the current java file.

Which key is used to terminate the program?

To quickly force quit on Windows , use the keyboard shortcut Alt + F4. Make sure the app or program window is open when you click Alt + F4.


3 Answers

Since CTRL + F2 does not work unless you have:

  • previously activated the debug view and
  • selected the process that you want to terminate

The best that I can come up with is to use the "Keys" preferences to assign CTRL + SHIFT + F2 to "Show View Debug", then you can type the following:

CTRL + SHIFT + F2 (activates the debug view) DOWN (move cursor down onto the first process) CTRL + F2 (Terminate) F12 (activate editing window)

like image 124
Malcolm Boekhoff Avatar answered Sep 17 '22 03:09

Malcolm Boekhoff


You can basically use Ctrl+F2 to terminate Eclipse.

like image 36
Chetan Potdar Avatar answered Sep 20 '22 03:09

Chetan Potdar


Addendum: Unfortunately there is no keyboard shortcut for the Terminate/Disconnect All option mentioned below and you cannot manually set one. But at the very least, you should be able to terminate all launches with just one mouse click with the instructions below. I would consider this a solution to a significant part of your problem, which is wasting a lot of time clicking the red Terminate square.

To terminate all launches:

First Time Setup:

  • In the menus, click Window > Show View > Other...
  • Type debug in the search box and select Debug > Debug
  • Click OK. The Debug pane will open.

Following which, how to terminate all launches:

  • Open or switch to the Debug pane.
  • Right-click on any of the items in the pane to get the context menu.
  • Click Terminate/Disconnect All.

Tips:

  • If the Console pane is annoying you by opening automatically, either separate the Debug pane from the Console pane (so they don't share the same section) or disable these two buttons in Console pane's toolbar:
    • Show Console When Standard Out Changes
    • Show Console When Standard Error Changes
  • Some of the items in the Debug pane may not enable the option to terminate all. In this case, try right-clicking other items that look different.

Thanks to this SO Q&A, but it wasn't fully clear: Eclipse : How to terminate all applications at once?

like image 32
ADTC Avatar answered Sep 18 '22 03:09

ADTC