What I would like is to be able to see the defn of a symbol that is selected within the definition line above the source window. For example a object of some typedefed type
typedef sometemplate<type1,type2,type3> mytype;
...
mytype myvar;
Another Source/file
myvar.blah();
When you click on myvar it will display:
mytype myvar;
but I can't remember what mytype is.
It would be good if I could just click mytype within the defn line and somehow follow that into the defn of mytype without opening several files (in some cases). Perhaps double clicking the word? triple click? ;)