User forums > Using Code::Blocks

Problem with Code-Completion in 1.0-rc2

(1/1)

surfmasta:
Hi,

i've installed Codeblocks 1.0-rc2 on my gentoo and it works fine so far.
I tried out the code-completion, but can't get it to work. I made a new project and inserted a file with this content:

#include <stdio.h>

struct Position
{
   int x;
   int y;
};

int main() {
    struct Position var;
    var.x = 2;
    var.y = 5;  // Here i want a code-completion when i'm typing var. , but nothing happens :-(
    printf("%d + %d = %d\n", var.x, var.y, var.x + var.y);
    return 0;
}

Why it doesn't work? Is it possible too to get a autohint-feature when i'm typing printf( ?
I checked "follow local includes", "follow global includes", "parse preprocessor directives" in the parser-tab and enabled all code-completion things in the code-completion-tab. In "manage plugins" code-completion is checked.

Michael:
Hello,

Code completion is still WIP :). You might want to search in the forum for helpful topics/posts.

Michael

oBFusCATed:

--- Quote from: Michael on January 22, 2006, 02:33:25 pm ---Hello,

Code completion is still WIP :). You might want to search in the forum for helpful topics/posts.

Michael


--- End quote ---
Or you can use the codeblocks_svn ebuild from here: http://bugs.gentoo.org/show_bug.cgi?id=89533#c23

Navigation

[0] Message Index

Go to full version