how to go to a function definition in the function scope. VS2015

there is a code like next.

1
2
3
4
5
6
7
8
9
10
void function() // The point
{
...
...

// I'm in here.
// I want to go to the point

...
}


Is there any shortcut for this in VS2015?

'Ctrl + F' is not what I want.
'Go to or Peek the definition' is also not what I want.
Last edited on
If you need assistance from the IDE to go from somewhere within the function body to its top,
the function is way, way too large.

More information:
“It doesn’t fit on a screen” is often a good practical definition of “far too large.”
One-to-five-line functions should be considered normal.
https://www.cplusplus.com/forum/general/275224/#msg1187744
Thank you guys.. Maybe I think It's impossible in VS2015.
Topic archived. No new replies allowed.