If reporting a bug with the Zeus IDE please post the details here. Please do not post questions here.
-
engicoder
- Posts: 10
- Joined: Wed May 18, 2011 1:54 pm
Post
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
-
jussij
- Site Admin
- Posts: 2650
- Joined: Fri Aug 13, 2004 5:10 pm
Post
by jussij »
Hi Ben,
Thanks for the bug report and the code snippet. I'll see why this is not working
Cheers Jussi
-
engicoder
- Posts: 10
- Joined: Wed May 18, 2011 1:54 pm
Post
by engicoder »
Thanks Jussi, your response time is fantastic.