I am using VS2005 + VA 1541 as the editor for a makefile project written in C. One problem I get is the Alt-G always goes to the header definition of variables instead of the C file.
E.g in the C file I have:
char* SeqNames [NUM_LIBRARY_TESTS + 1]=
{
"8001:Custom",
"8002:Cycle Test",
"8003:Hold Test",
"8004:Adhesive Test"
};
and in the header file I have:
extern char* SeqNames [NUM_LIBRARY_TESTS + 1];
In a function in another C file I have something like:
void foo()
{
char* ptr = SeqNames[0];
}
When I put the cursor on SeqNames and hit Alt-G it goes straight to the h file instead of giving me a list of the C and H files. Pressing F12 for Visual Studios go to function takes me to the C file as required but I am so used to using Alt+G that this always catches me out.