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
I would like to know this as well, though the link provided is broken.
It is not broken, it is not supported :lol:
is there a way to return to previous position after a Find declaration / find implementation ?
thanks
Hi !
You should try the BrowseTracker plugin
Dje
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
if ( sameFile )
{
BrowseTrackerPlugin;
}
else
{
Ctrl+Tab with smart switching
}
:lol:
can you explain how to use it to browse TheSameFile ?
void functionB(){
}
void functionA(){
functionB(); //------find implementation--->puts my editor to functionB implementation.... how to return here???
}