Eclipse常用快捷键(英文整理版)及常用设置

CTRL + D

Delete row. Try it! You no more need to grab the mouse and select the line, no more Home, Shift + End, Delete. Quick and clean.

ALT + Up/Down Arrow

Move the row (or the entire selection) up or down. Very useful when rearranging code. You can even select more rows and move them all. Notice, that it will be always correctly indented.

ALT + Left/Right Arrow

Move to the last location you edited. Imagine you just created a class Foo, and now you are working on a class Boo. Now, if you need to look at the Foo class, just press Alt+Left Arrow. Alt+Right Arrow brings you back to Boo.

CTRL+SHIFT+O

Organize imports. What happens when you first use a class you have not yet imported? You will see an error. But when you press this magical combination, all your missing classes will be imported, and the unused imports will vanish.

CTRL+1

Probably the most useful one. It activates the quick fix. Imagine you create a class, which implements some interface. You will get an error, because the inherited methods are not yet implemented. While you are on line where the error occurs, press this combination to activate the quick fix. Now, select the "Add unimplemented methods" option. You can use the quick fix at every error you ever receive.

Quick fix comes handy in other situations too. My favorite is the "Split variable declaration". Sometimes I need to broaden the scope of a variable. I activate the quick fix, split declaration, and use alt + arrow to put it where it belongs. You can find even more usages: Convert local variable to field, rename in file, Inline local variable..

You could use the "Split variable declaration" on the bar variable, and then move it with Alt+Arrows above the try block..

Or you could use the "Add unimplemented methods" fix here.

The best thing you can do if you see an error is to use the quick fix.

CTRL+SHIFT+T

Open Type. Imagine, that you need to have a look at the Foo class. But, where is the Foo class? Is it in the Boo project and in the foo.bar package? Or somewhere else? With this shortcut, you don't need to know. Just press it, type Foo and you are in.

CTRL+E

Shows you a list of all open editors.


CTRL+F6

Use to move between open editors. This is an slower alternative to Ctrl + E. Comes handy in a situation when you want to periodically switch between two editors, something, what is nearly impossible with Ctrl+E as it sorts entries quite randomly. Or you might just use Alt+Arrows..

CTRL+F7

Move between views. When in editor, press Ctrl+F7 to switch to the Package Explorer, or hold Ctrl and press F7 multiple times to switch to other views.

CTRL+F8

Move between perspectives. The same as previous.


CTRL + F11


Runs the application. What gets launched depends on your settings. It will either launch the last launched class (my preffered way) or it will launch currently selected resource (the default way). If you want to change its behavior read the previous post.

CTL + N


Open new type wizard. This is not very quick because you have to select the wizard type (weather you want to create new class, jsp, xml or something else) in the next step. Much faster way would be if you could just hit the shortcut and invoke the particular wizard. It is possible, just keep reading..

CTRL + M

Maximize or umaximize current tab.

CTRL + I


Corrects indentation.

CTRL + SHIFT + F

Formats code. You can make a beautiful looking code out of a mess with this. It requires a bit of setup, but it is well worth it. You can find its settings under Window->Preferences->Java->Code style->Formatter

CTRL + J


Incremental search. Similar to the search in firefox. It shows you results as you type. Don't be surprised, if you hit this combination, nothing happens - at the first glance. Just start typing and eclipse will move your cursor to the first ocurence.

CTRL + SHIFT + L

Shows you a list of your currently defined shortcut keys.

I don't like your shortcuts

Such is life nowadays. Remember, you can always change those bindings to match your preferences. Open Windows->Preferences->General->Keys. Now you can use the filter to find your shortcut and change its binding.
The real fun begins when you cannot find the command you are looking for. The key here, is to have the "Include unbounds commands" checkbox checked. It will show you all commands, even those, which have no keys bound.

While you are here, I recommend to add the following bindings:

CTRL+SHIFT+G

Bind this to "Generate getters and setters". This is a "must have".

ALT+C

Bind this to SVN/CVS "Commit".

ALT+U


Bind this to SVN/CVS "Update".

Now, type "new" (without quotes) in the filter text. You should see a list of all new type wizards. Choose the most frequently used and assign them a shortcut. For example, the most used wizard for me is the new class wizard. Thus I assigned it the CTRL+SHIFT+N keys.

Let me demonstrate a quick way to create new class now.

Hit CTRL + SHIFT + N (or the combination you assigned in the previous step). This should bring up new class wizard. Type in the name and press ALT+E. You can now select a class which will be a superclass for the newly created class. Hit ALT+A and select all implemented interfaces . Now hit ALT+F and your class will be generated. Eclipse will also provide the default implementation for all abstract and interface methods you inherited.

Did you notice the weird underscores everywhere in the dialog? They give you a hint about the shortcut key. Hit ALT and the underlined letter to press the button, check the checkbox or get focus for a textfield.

Did you notice the underscores?

I think that using shortcut keys is the fastest way to productivity and if not, then at least your wrists will say you a silent thanks. Now, don't wait, go on and assign keys to the features you use most.

One final tip from Andriy:

The problem is that there are so many keyboard shortcuts. I used to keep a printout with all the shortcuts I wanted to use. Finally I wrote an Eclipse plugin MouseFeed, which reminds the keyboard shortcuts for the actions called with mouse. You can even tell it to enforce some shortcuts - the action will run only if called with a keyboard shortcut.

So if you are struggling with yourself, if you want to use shortcuts, but always subconsciously touch the mouse, install the plugin and let it enforce the shortcuts - the mouse will be useless and you will be forced to use keyboard.

What shortcuts do you use?

 

CTRL+ALT+H Open Call Heirarchy. Find out where that method is used.

F4 Open Type Heirarchy. See the subclasses and/or superclasses. This one can be tricky sometimes. If there is a class under the cursor it will open that class's heirarchy, if not it will use the class that contains the cursor (including inner classes).

F3 Open Declaration. Jump to the declaration of the variable, method or class. It will try to find the most specific declaration it can for methods, but depending on your code you might end up in an Interface which is probably not what you want. Then just press F4 to get the type heirarchy and find the implementation you are looking for.

ALT+SHIFT+R Refactor->Rename. Works in the editor and in the package explorer. If you haven't learned the power of refactoring, do so now. Think of this one as a super-smart Find-Replace. The new 3.3 feature of inline rename is awesome.

ALT+SHIFT+V Refactor->Move. Again, works in both the edtor and package explorer. Move the method or field to another class.

ALT+SHIFT+M Extract to method. Break up that monolithic code, takes the selection and trys to make it into a method. Will optionally find duplicate code blocks and use the new method there as well. It might take a few trys to get this to work the way you want. Just try it, rearrange thee code a little and try again.

 

Europa version CTRL + 3 

It is an entry point for pratically everything inside Eclipse, fantstic in my opinion and very useful.

Go to line number N in the source file: Ctrl + L, enter line number

 

 

============================分割线===========================

Eclipse常用设置

设置工作空间的项目编码, 防止出现乱码 
    Window - Preferences - General - Workspace 
    将"Text file encoding"选为"Other" - "UTF-8" 
    改变现有项目的编码的步骤: 右击项目属性, 选择"Text file encoding"的编码 

设置其它文件的编码 
    Window -> Preferences -> General -> Content Types 
    将需要设置的文件设置编码, 最好统一设为UTF-8 
    设置后, 如Javascript文件可正常显示中文 

设置创建JSP页面时,将JSP的默认编码设为UTF-8 
    Window -> Preferences -> MyEclipse -> Files and Editors -> JSP 
    将"Encoding"选为"ISO10646/Unicode(UTF-8) 

去掉格式化JSP时页面中的空行 
    Window -> Preferences -> MyEclipse -> HTML -> HTML Source 
    勾选"Clear all blank lines" 

增强Eclipse的自动代码提示功能 
    默认下, 只有按"."或"Alt + /"才出现代码提示功能, 不够强大, 作小小设置, 可将代码提示功能像VS的一样方便 
    1. Window -> Preferences -> Java -> Editor -> Content Assist 
    2. 将"Auto Activation triggers for java"设置为".abc"(默认是"."), 点"Apply"应用 
    3. 导出目前的Eclipse配置文件: File -> Export -> General -> Perferences, 选择保存路径, 保存得到*.epf文件 
    4. 用文本编辑器打开刚才保存的*.epf文件, 搜索".abc", 将".abc"部分改为 
        ".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ(," (以上为自动提示的触发字符, 
        根据个人习惯设置), 保存此配置文件(个人觉得不太好用,容易出错) 
    5. 导入此配置文件: File -> import -> General -> Perferences, 导入修改后的配置文件. 

    第一个选项为反应时间,可设为100左右(默认200) 

高亮类中同一引用的使用位置 
    Window -> Perferences -> General - > Editors -> TextEditors -> Annotations 
    选择"Occurrences",勾引"Text as" -> "Highlighted"(块高亮)或"Squiggles"(虚线) 

Link with Editor 
    打开类后, 自动在包管理器这里显示类的位置 
    


取消Myeclipse的自动文件验证(卡傻的原因) 
    Windows –> Perferences –>Myeclipse –> Validation 
    保留manual(手动)部分,build下只留"classpath dependency Validator" 

    手动验证: 右键文件 -> Myeclipse -> Run Validation 

取消拼写错误检查 
    我爱故意写错单词, 不需要系统帮我检查 
    Windows –> perferences –> General –> Editors-> Text Editors -> Spelling 
    去掉"Enable spell checking"勾选 

关闭不需要的启动项 
    MyEclipse: 
    Windows –> Perferences–> General–> Startup and Shutdown 

    我只保留了 

    
    
    顺序下来: 
    1, Tomcat6: 必备的... 
    2, 内存监视器: 可以查看Myeclipse的使用内存, 我喜欢这工具(在菜单Myeclipse - Utilities - Show Heap Status打开) 
    3, JSP Debug工具, 其实我也没用过, 怕有一天用到... 
    4, 文件创建向导(个人经常用到) 
    5, 向后兼容的意思吧, 怕有一天会用到, 但其实很少用, 可去掉 
    6, 透视图, 应该可以去掉吧... 

    其实就只用选择Tomcat6 

关闭自动更新 
    1, Eclipse: 
        Windows –> Perferences–> Install/Update -> Automatic Updates 
        不勾选"Automatically find new updates and notify me" 

    2, Myeclipse: 
        1)Windows –> Perferences–> MyEclipse... -> Community Essentials 
     &nb sp;  不勾选"Search for new features at startup" 
        2)Windows –> Perferences–> MyEclipse... -> Maven4MyEclipse 
        不勾选"Download repository index updates on startup" 

原文:http://yafei.iteye.com/blog/1218507

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值