Page 1 of 1

Code Completion Fixes (ctags)

Posted: Mon Mar 04, 2013 12:45 pm
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 ":"

Re: Code Completion Fixes (ctags)

Posted: Mon Mar 04, 2013 12:45 pm
by NilC
No more useless horizontal scroll bar in cc_box

Re: Code Completion Fixes (ctags)

Posted: Mon Mar 04, 2013 10:24 pm
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

Re: Code Completion Fixes (ctags)

Posted: Mon Mar 04, 2013 10:38 pm
by eranif
I just applied your patches to git head - nice work!

Eran

Re: Code Completion Fixes (ctags)

Posted: Tue Mar 05, 2013 12:10 am
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!