Let say I am working on a code which look like this, in C for example.
function foo() {
int a;
int b;
15 kLoC
for (int i = 0; i < n; i++) {
15 kLoC
if (bar) {
while (true) {
**cursor is here**
}
}
}
}
I would like vim display a summary of the context where the cursor is, something like:
funtcion foo()
for (int i = 0; i < n; i++)
if (bar)
while (true)