Script:1520
Talk0
1,599pages on
this wiki
this wiki
Revision as of 08:19, July 4, 2011 by JohnBeckett (Talk | contribs)
Use this page to discuss script 1520 1520
- 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
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
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