g***l 发帖数: 352 | 1 What are the eclipse hot keys for:
1. go to next break point(In visual studio, it is F5)
2. add/remove a bookmark
3. go to a line during editing (In visual studio, it is ctrl+G)
Thanks. | g*****g 发帖数: 34805 | 2
Not sure about this, I'll just let it run down.
I don't use bookmark but you sure can find it in preference key
shortcut list
Cr+L
【在 g***l 的大作中提到】 : What are the eclipse hot keys for: : 1. go to next break point(In visual studio, it is F5) : 2. add/remove a bookmark : 3. go to a line during editing (In visual studio, it is ctrl+G) : Thanks.
| b******y 发帖数: 1684 | 3
f8? u can define urs...
【在 g***l 的大作中提到】 : What are the eclipse hot keys for: : 1. go to next break point(In visual studio, it is F5) : 2. add/remove a bookmark : 3. go to a line during editing (In visual studio, it is ctrl+G) : Thanks.
| g**********y 发帖数: 14569 | 4 顺便推荐几个很好用的组合:
Ctrl + G: find declaration in Workspace
F3: go to function definition
Ctrl + Shift + G: find reference in Workspace (this is my favorite)
Ctrl + T: show method override hierarchy (very useful if it is true OO, the
biggest headache in reading OO code is: you never know whether child class
override it or not unless you open the source code)
Ctrl + Shift + P: go to matching bracket (I use this combination less now
because I hate multiple brackets; when come to javascript world, it bec | g*****g 发帖数: 34805 | 5
the
Ctrl+T is very useful for going to one of your implementation, it shows
a popup hierachy, sometimes you may use F4 to show the hierachy in
a different view.
Ctrl+O shows a popup outline, that can be useful to find a method.
【在 g**********y 的大作中提到】 : 顺便推荐几个很好用的组合: : Ctrl + G: find declaration in Workspace : F3: go to function definition : Ctrl + Shift + G: find reference in Workspace (this is my favorite) : Ctrl + T: show method override hierarchy (very useful if it is true OO, the : biggest headache in reading OO code is: you never know whether child class : override it or not unless you open the source code) : Ctrl + Shift + P: go to matching bracket (I use this combination less now : because I hate multiple brackets; when come to javascript world, it bec
| b******y 发帖数: 9224 | |
|