Author Topic: Find declaration / find implementation shortcut  (Read 5210 times)

tobiaslohe

  • Guest
Find declaration / find implementation shortcut
« on: January 24, 2007, 06:00:21 pm »
Is there a keyboard shortcut for the "find declaration" / "find implementation" commands I get on right-clicking into the editor window?

I couldn't find any and in Setting->Editor->Keyboard Shortcuts I didn't find the corresponding command to assign a shortcut myself.

Thanks in advance
Tobias

Jacky_J

  • Guest
Re: Find declaration / find implementation shortcut
« Reply #1 on: April 17, 2008, 07:15:36 pm »
I would like to know this as well, though the link provided is broken.

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: Find declaration / find implementation shortcut
« Reply #2 on: April 17, 2008, 08:41:23 pm »
It is not broken, it is not supported  :lol:

Offline santox

  • Single posting newcomer
  • *
  • Posts: 6
Re: Find declaration / find implementation shortcut
« Reply #3 on: May 28, 2008, 02:28:39 pm »
is there a way to return to previous position after a Find declaration / find implementation ?
thanks

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: Find declaration / find implementation shortcut
« Reply #4 on: May 28, 2008, 02:31:12 pm »
Hi !

You should try the BrowseTracker plugin

Dje

Offline santox

  • Single posting newcomer
  • *
  • Posts: 6
Re: Find declaration / find implementation shortcut
« Reply #5 on: May 28, 2008, 02:32:58 pm »
i tried,
but it remember previous viewed files; not also previous positions in the same file....
or i'm not able to use it?
thanks

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: Find declaration / find implementation shortcut
« Reply #6 on: May 28, 2008, 02:36:32 pm »
if ( sameFile )
{
    BrowseTrackerPlugin;
}
else
{
    Ctrl+Tab with smart switching
}
 :lol:

Offline santox

  • Single posting newcomer
  • *
  • Posts: 6
Re: Find declaration / find implementation shortcut
« Reply #7 on: May 28, 2008, 02:42:10 pm »
can you explain how to use it to browse TheSameFile ?

Offline santox

  • Single posting newcomer
  • *
  • Posts: 6
Re: Find declaration / find implementation shortcut
« Reply #8 on: May 28, 2008, 02:45:25 pm »
void functionB(){







}




void functionA(){

functionB();   //------find implementation--->puts my editor to functionB implementation.... how to return here???

}