简体   繁体   中英

How to customize hot keys in eclipse?

Is it really possible to create your own hot keys in Eclipse?

For example, I want to create a hot key for creating folder.

Why you didn't google it?

Windows -> Preferences -> General -> Keys.

In here, there is an option to set hot key to create folder. Just go there and set the keys that you want to use.

i think this may help you little bit. go to Windows > Preferences >Select General > Editor > Keys page. Here the settings will be to configure your own hot key using plug-in org.eclipse.ui.commands .First, you need to define your new configuration

      <keyConfiguration
          name="My Configuration"
          parent="org.eclipse.ui.defaultAcceleratorConfiguration"
          description="This is a simple configuration"
          id="org.eclipse.faq.sampleConfiguration">
       </keyConfiguration>

the below tutorial may help you clearly.. http://www.vogella.com/articles/EclipseCommandsKeybindings/article.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM