Re: [Github-comments] [geany/geany] Need c++ source code autocomplete for custom class members/functions (#1824)

2018-04-11 Thread elextr
Closed #1824. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1824#event-1569703473

Re: [Github-comments] [geany/geany] Need c++ source code autocomplete for custom class members/functions (#1824)

2018-04-11 Thread elextr
@andysendo as @b4n and I said, its a known limitation of the ctags parsers. Note that ctags is a separate [project](https://github.com/universal-ctags) not part of Geany. Duplicate of #493 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or

Re: [Github-comments] [geany/geany] Need c++ source code autocomplete for custom class members/functions (#1824)

2018-04-11 Thread elextr
@b4n s/local functions/local declarations/? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1824#issuecomment-380611676

Re: [Github-comments] [geany/geany] Need c++ source code autocomplete for custom class members/functions (#1824)

2018-04-11 Thread Colomban Wendling
@andysendo The problem you're encountering is that currently Geany's ctags -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1824#issuecomment-380535953

Re: [Github-comments] [geany/geany] Need c++ source code autocomplete for custom class members/functions (#1824)

2018-04-11 Thread andysendo
let me make c++ project with 2 example files to explain: test.hpp: define a class named Test with public method named test_func(parms...) test.cpp: impelement method Test::test_func(parms...) in test.cpp write the main fucntion as: int main(int argc, char** argv) { Test t1; Test *t2