Code Completion Fixes (ctags)

Discussion about CodeLite development process and patches
NilC
CodeLite Enthusiast
Posts: 34
Joined: Fri Sep 14, 2012 1:01 pm
Genuine User: Yes
IDE Question: C++
Contact:

Code Completion Fixes (ctags)

Post by NilC »

Fixed bug with enums code completion in with ctags.
Now enumerators in "enum class EnumName" binding into enum namespace. Enumerators in simple "enum EnumName" are appear when we typed EnumName:: and in global scope.

Fixed code completion for code like this:

namespace Namespace
{
extern SharedPtr<ClassName> GlobalNamespaceMember;
} // namespace Namespace

Now code complete command after :: always works - not only after adding char ":"
You do not have the required permissions to view the files attached to this post.
NilC
CodeLite Enthusiast
Posts: 34
Joined: Fri Sep 14, 2012 1:01 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Code Completion Fixes (ctags)

Post by NilC »

No more useless horizontal scroll bar in cc_box
You do not have the required permissions to view the files attached to this post.
User avatar
eranif
CodeLite Plugin
Posts: 6375
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Code Completion Fixes (ctags)

Post by eranif »

Thanks, I was about to start working on the '::' bug when I saw your patch - thanks

I will try it

btw, please make sure to submit a single patch next time instead of multiple

HOW TO SUBMIT A PATCH

Eran
Make sure you have read the HOW TO POST thread
User avatar
eranif
CodeLite Plugin
Posts: 6375
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Code Completion Fixes (ctags)

Post by eranif »

I just applied your patches to git head - nice work!

Eran
Make sure you have read the HOW TO POST thread
NilC
CodeLite Enthusiast
Posts: 34
Joined: Fri Sep 14, 2012 1:01 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Code Completion Fixes (ctags)

Post by NilC »

btw, please make sure to submit a single patch next time instead of multiple
I separated them, because I thought that some of them may not be appropriate.
I just applied your patches to git head - nice work!
Great! Thanks!
Post Reply