Page 1 of 1

Intellisense not working for typedef structs

Posted: Thu Jun 02, 2011 4:11 am
by engicoder
Zeus 3.97e Windows 7

Intellisense does not seem to be working for typedef struct names. This seems to be the same type of issue as discussed here: http://www.zeusedit.com/zforum/viewtopic.php?t=29

Here is a sample:

Code: Select all

typedef struct _mystruct
{ 
    int member;
}MyStruct;


void main ( void )
{
    struct _mystruct _ms;
    MyStruct ms;

    _ms.  // Triggers intellisense
    ms.   // Does not trigger intellisense

}
I tried copying the latest ctags.exe from http://ctags.sourceforge.net and replacing xtags.exe but the problem persists.

Am I missing something?

Ben

Posted: Thu Jun 02, 2011 7:00 am
by jussij
Hi Ben,

Thanks for the bug report and the code snippet. I'll see why this is not working ;)

Cheers Jussi

Posted: Thu Jun 02, 2011 11:40 pm
by jussij
This issue should now be fixed in the lastest version found here: http://www.zeusedit.com/zforum/viewforum.php?f=6

Cheers Jussi

Posted: Fri Jun 03, 2011 12:11 am
by engicoder
Thanks Jussi, your response time is fantastic.