Sentient
Sentient

Reputation: 1122

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?

Upvotes: 6

Views: 2477

Answers (2)

iamjoosy
iamjoosy

Reputation: 3349

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)

Upvotes: 4

David Heffernan
David Heffernan

Reputation: 613521

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

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

Upvotes: 9

Related Questions