Le 04/10/2012 14:15, Sebastien Berthiaume a écrit :
> HI Lex,
> 
> thanks for the quick response.
> 
> Your example is almost as it, the only difference, and I don't know if
> it matters but my structure definition is as follow
> 
> 
> IN FILE toto.h
> typedef struct
> {
> int blah;
> int foo;
> }myStruct_t;
> 
> 
> 
> IN FILE toto.c
> #include "toto.h"
> 
> void TestFct(void)
> {
>     myStruct_t    a;
> 
>     a-> (here I would expect to see blah and foo being suggested by Geany) 
> }

As Lex pointed out, this currently doesn't work with local variables,
and a is a local variable.  This is a limitation of the C/C++/Java
parser that doesn't emit tags for local variables.
_______________________________________________
Geany mailing list
Geany@uvena.de
https://lists.uvena.de/cgi-bin/mailman/listinfo/geany

Reply via email to