Re: [E-devel] ctags is not parsing code correctly

2012-08-12 Thread Tom Hacohen
On 05/08/12 04:35, Thanatermesis wrote: I was trying ctags and it seems to not recognize correctly the code, you can test it with your ctags too, for example with these 2 keywords: evas_object_del evas_shutdown Depend of your ctags command you can have the evas_shutdown one, but there's no way

Re: [E-devel] ctags is not parsing code correctly

2012-08-07 Thread Thanatermesis
SeoZ: What exactly my command does is search on the specified dir the files .h, (note that the -I parameters needs to be given BEFORE the dir), I have it on that way so the make install send the files to a different directory dir (where to packaging), so the resulting tag files will contain

Re: [E-devel] ctags is not parsing code correctly

2012-08-06 Thread Thanatermesis
Thanks, that's a better way to do it, after a few tests it seems to generate the tags correctly, that's the parameters that i used: ctags -R -h .h.H.hh.hxx -f $(DEB_SOURCE_PACKAGE).tags --fields=+iaS --c-kinds=+pcdgstue --excmd=number \ -I EINA_MALLOC \ -I EINA_CONST \ -I

Re: [E-devel] ctags is not parsing code correctly

2012-08-06 Thread Daniel Juyung Seo
I am also suffering from the same issue for a long time. After removing the first 5 lines of tags file, it worked well. However, your solution didn't work for me. Any suggestion? Daniel Juyung Seo (SeoZ) On Tue, Aug 7, 2012 at 5:55 AM, Thanatermesis thanatermesis.e...@gmail.com wrote: Thanks,

Re: [E-devel] ctags is not parsing code correctly

2012-08-05 Thread Thanatermesis
Well, I have made some trick for build ctags, if you* want to build them you maybe need to do it like me, this is the bunch of code that i used for the packaging process, basically it does that: do a copy of usr/include (where the headers is), modify them by removing the annoying EINA keywords

Re: [E-devel] ctags is not parsing code correctly

2012-08-05 Thread Lionel Orry
On Sun, Aug 5, 2012 at 4:18 PM, Thanatermesis thanatermesis.e...@gmail.com wrote: Well, I have made some trick for build ctags, if you* want to build them you maybe need to do it like me, this is the bunch of code that i used for the packaging process, basically it does that: do a copy of

Re: [E-devel] ctags is not parsing code correctly

2012-08-05 Thread Lionel Orry
On Sun, Aug 5, 2012 at 4:46 PM, Lionel Orry lionel.o...@gmail.com wrote: On Sun, Aug 5, 2012 at 4:18 PM, Thanatermesis thanatermesis.e...@gmail.com wrote: Well, I have made some trick for build ctags, if you* want to build them you maybe need to do it like me, this is the bunch of code that i

Re: [E-devel] ctags is not parsing code correctly

2012-08-05 Thread Thanatermesis
Typo fix: in the previous script there's a typo in NONINSTRUMENT which is NOINSTRUMENT Lionel: right, for exuberant its the --c-kinds= option, I just changed them (yes, im using exuberants). 2012/8/5 Thanatermesis thanatermesis.e...@gmail.com Well, I have made some trick for build ctags, if

Re: [E-devel] ctags is not parsing code correctly

2012-08-05 Thread Lionel Orry
On Sun, Aug 5, 2012 at 6:25 PM, Thanatermesis thanatermesis.e...@gmail.com wrote: Typo fix: in the previous script there's a typo in NONINSTRUMENT which is NOINSTRUMENT Lionel: right, for exuberant its the --c-kinds= option, I just changed them (yes, im using exuberants). with exuberant