Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

FAQ How do I provide a keyboard shortcut for my action?

Keyboard shortcuts are created by defining a key binding, using the org.eclipse.ui.commands extension point. When you define a key binding, you generally specify four things:

  • The ID of the configuration to which it applies.
  • The context, or scope, for the key binding. For example, the text editor defines a context that can override bindings from the global context.
  • The ID of the command that you are creating a binding for. You can find command IDs by browsing the plugin.xml file of the plug-in that defines that action.
  • The accelerator sequence.

You can also define a key binding that applies only to a particular locale or platform. For example, you can define an accelerator that applies only to a German Linux GTK installation of Eclipse. See the command extension point documentation for more details on these advanced features.

The following is an example key-binding definition. This binding sets the accelerator for the Java Sort Members action, which by default has no key binding:

   <keyBinding
      string="Ctrl+Shift+D"
      context="org.eclipse.ui.globalScope"
      command="org.eclipse.jdt.ui.edit.text.java.sort.members"
      configuration="org.eclipse.faq.sampleConfiguration">
   </keyBinding>

The difference between a configuration and a context can be confusing at first. The configuration is explicitly set by the user; once it is set, it does not change. The context can be changed programmatically by any plug-in. For example, you can change the scope whenever your view or editor becomes active. Scopes can be queried and set by using the IKeyBindingService. This service can be accessed within a workbench part by using the method getKeyBindingService on IWorkbenchPartSite.


See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top