When I investigate code in Eclipse I do something like:
method1() {
method2(a,b,c);
……
I select method2 and push F3:
method2(int a,String b, long c ){
method3();
……
I select method2 and push F3:
method3() {
....
method4(....
Sometimes chain can be near 10 items! Does exist some shortcut to go back? So I could return to previous point where I was been?
P.S. I know Ctrl+Q for last editing, but this is different.
Alt+Left and Alt+Right traverse the history of navigations (at least on Linux.)