Vojtěch Čihák via Lazarus
2018-06-19 14:57:11 UTC
Hi,
Â
is there a CodeTool command that can take me directly to procedure/method implementation?
Â
Example:
Â
function TTreeNode.GetTop: integer;
begin
 if TreeView <> nil then
  TreeView.UpdateAllTops|; //<-- caret is HERE
 Result := FTop;
end;Â Â
Â
by default, Ctrl+Shift+Up and Ctrl+Shift+Down jump between declaration and implementation of TTreeNode.GetTop;
Alt+Up takes me to declaration of TTreeNode.UpdateAllTops; and Ctrl+Shift+Up/Down takes me to its implementation.
Â
I'm looking for a way to get to implementation of UpdateAllTops directly ( Alt+Down would be nice ).
Â
Thank you,
Â
V.
Â
is there a CodeTool command that can take me directly to procedure/method implementation?
Â
Example:
Â
function TTreeNode.GetTop: integer;
begin
 if TreeView <> nil then
  TreeView.UpdateAllTops|; //<-- caret is HERE
 Result := FTop;
end;Â Â
Â
by default, Ctrl+Shift+Up and Ctrl+Shift+Down jump between declaration and implementation of TTreeNode.GetTop;
Alt+Up takes me to declaration of TTreeNode.UpdateAllTops; and Ctrl+Shift+Up/Down takes me to its implementation.
Â
I'm looking for a way to get to implementation of UpdateAllTops directly ( Alt+Down would be nice ).
Â
Thank you,
Â
V.