Author Topic: Jump directly to class/type definition  (Read 1836 times)

Dennis

  • Senior Community Member
  • Posts: 3965
  • Hero Points: 517
Jump directly to class/type definition
« on: June 21, 2023, 06:32:24 PM »
Suppose you have some code like this:

Code: [Select]
struct POINT {
   int x;
   int y;
   int z;
   int t;
};
void score_point(const POINT &p)
{
    // render the given point on a bar of musical score
}
void scale(const POINT &p)
{
   auto c = p;
   for (int i=0; i<8; i++) {
      c.y++;
      score_point(c);
   }
}

You are looking at the line near the end containing "score_point(c)", and you wonder what "c" is.

In SlickEdit, in most emulations, you can just hit Ctrl+Alt+Shift+., to evaluate the return type of "c" and jump directly to it (that is to struct POINT).  Without this, you would have to jump to "c", which would mean then jumping to the argument "p" and then jumping to struct POINT from there.