Script:1520
Talk0
1,599pages on
this wiki
this wiki
Use this page to discuss script 1520 OmniCppComplete: C/C++ omni-completion with ctags database
- Add constructive comments, bug reports, or discuss improvements (see the guideline).
- Do not document the script here (the author should do that on vim.org).
- This page may be out of date: check the script's vim.org page above, and its release notes.
Bug report
Edit
If I have a declaration within a 'for', 'while', or 'if' conditional like this:
A* obj;
while (B* obj = getObj() )
{
obj->...... // Completion list shown here assumes type of obj to be A and not B -- that's a bug
}
Nested structure bug
Edit
I've read mention of a nested structure bug having been fixed but I am having trouble with the following snippit:
class A
{
struct B
{
int x;
int y;
struct C
{
char a;
char b;
};
};
void testFuntion();
};
void A::testFunction()
{
B::C object1;
A::B::C object2;
object1. // Autocomplete does not work
object2. // Autocomplete does work
}
Eddie Carle - April 20, 2011