I love Alt+G "Goto Implementation", but I find as I'm using C++'s auto keyword more and more, I'd like a "Goto Type".
ex)
(in .h)
struct Glortch { void bar(); void baz(); };
Glortch active_monostate();
(in .cpp)
auto foo = active_monostate();
foo.bar();
foo.baz();
I'd like to be able to do a hotkey combo on foo and jump to type Glortch's definition.
Now, I have to Alt+G to foo's creation, and then Alt+G on active_monostate(), and then I see Glotch.
Alternatively, I use Alt+Shift+S (Find Symbol) and try to remember Glortch's name.