Suppose you have a C code like this:
void f1() {
int var1;
var1 = 1; // local use of var1
}
void f2() {
int var1;
var1 = 2; // local use of var1
}
void f3() {
int var1;
var 1 = 3; // local use of var1
}
How do I go to the defition of a local variable with Emacs and GNU Global (gtags.el) while pointing at a local use of it?
I've tried gtags-find-tag (with "var1" as argument) and it doesn't find anything (looks like tags are supposed to be functions) and I've tried gtags-find-symbol, which shows me a list with all three var1 definitions (and possible uses as well).
You do not need the help of Global, but it can be done as a keyboard macro:
Starting from this kerboard macro, I wrote the following lisp function: