As title, if I\'m in the middle of function body and the function body is very long, how can I jump back to the beginning of the function body .
C language [[
If your C code is in the non-Egyptian style:
[[
[m
only works if you have an enclosing {}
around the function, e.g. class { method(){} }
for Java / C++.
And this is a good bet that works for both Egyptian and non-Egyptian braces:
?^[^ \t#]
Examples:
void egypt() {
#define DONTCARE 1
int indented code = 1;
}
void tpyge()
{
#define DONTCARE 1
int indented code = 1
}