Eclipse常用快捷键

Ctrl + shift + R 打开一个类

Ctrl + shift + T 打开一个类  Ctrl + T 打开当前类的层级关系

Ctrl + shift + X 转大写     ctrl + shift + Y 转小写

Ctrl + shift + down/up 向上/向下复制当前行

Ctrl + down/up 向上/向下移动当前行

Ctrl + shift + / 折叠所有可折叠的代码  ctrl + * 展开

Ctrl + E 选择某个已打开的类

Alt + left  跳到上次光标所在的位置

Shift + 回车 向下插入一行    ctrl + shift + 回车 向上插入一行.

Ctrl + Q 回到上次编辑的位置

Ctrl + L 跳到指行

Eclipse快捷键 : Alt + shift + L 抽取变量

Alt + shift + M 抽取成方法.

Alt + shift + Z  saround whith try catch

Alt + shift + A  批量编辑

Ctrl + H 打开搜索窗口

Debug調試快捷鍵的意思 :

Step into F5 : 進入到一個函數的內部

Step over F6 : 不進入到一個函數的內部,直接下一步

Step return/out F7 : 按了F5以后,F7退出來.

去掉eclipse的拼写检查

window - Preferences - General - Editors - Spelling - Enable spell checking

eclipse大括号高亮显示---颜色很淡,改为显眼的颜色

window -> preferences -> javaor c++-> editor -> matching brackets highight, color改为红色

Eclipse插件

Grepcode 插件 grepcode - http://repository.grepcode.com/java/ext-eclipse/

startexplorer 插件   http://fabioz.github.com/startexplorer/update/

原文地址:https://www.cnblogs.com/hoonick/p/9972920.html