Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hotkey to go to the function the cursor is on - Delphi

To go to a function/procedure I use Control + Click and Delphi will take me there (on a good day).

Is there a fast way to do that without using the mouse?

like image 881
Sentient Avatar asked Feb 20 '14 19:02

Sentient


2 Answers

Yes, that functionality does indeed have keyboard access: ALT + .

These keyboard shortcuts are documented: http://docwiki.embarcadero.com/RADStudio/en/Default_Keyboard_Shortcuts

like image 152
David Heffernan Avatar answered Nov 18 '22 17:11

David Heffernan


In addition to David's answer, a pretty complete list of Delphi's Editor Key and Key Combinations can be found here: DelphiEditorKeyTable.pdf (compiled from Cary Jensen and Brian Long)

like image 23
iamjoosy Avatar answered Nov 18 '22 17:11

iamjoosy