Page 1 of 1

Code completion problem

Posted: Thu Jan 26, 2012 3:42 am
by arkangel
I've been testing the auto and I realized I did not detect the features that are not specified namespace. It may be some configuration error or a problem of CodeLite?

regards

Re: Code completion problem

Posted: Thu Jan 26, 2012 9:17 am
by eranif
arkangel wrote:I've been testing the auto and I realized I did not detect the features that are not specified namespace. It may be some configuration error or a problem of CodeLite?
I will need some example to understand your problem

Eran

Re: Code completion problem

Posted: Thu Jan 26, 2012 1:35 pm
by arkangel
En este ejemplo, solo el segundo printf recibe ayuda del autocompletado

Code: Select all

#include <stdio.h>

int main(int argc, char **argv)
{
	printf("hello world\n");
	::printf("hello world\n");
	return 0;
}

regards

Re: Code completion problem

Posted: Thu Jan 26, 2012 2:00 pm
by eranif
arkangel wrote:En este ejemplo, solo el segundo printf recibe ayuda del autocompletado
This is an English only forum (you don't want me to answer you in Hebrew, do you?)

Did you try hittin Ctrl-SPACE after few characters?

for example:

pri CTRL-SPACE

You can also enable auto triggering for the code completion from: "settings -> tags settings -> triggering"

Eran

Re: Code completion problem

Posted: Fri Jan 27, 2012 12:17 am
by arkangel
Sorry
In this example, only the second printf receive assistance from the auto.
En este ejemplo, solo el segundo printf recibe ayuda del autocompletado

Code: Select all

    #include <stdio.h>

    int main(int argc, char **argv)
    {
       printf("hello world\n");
       ::printf("hello world\n");
       return 0;
    }
regards

This option is enabled, but the only suggestions I receive in the first printf is a list of keywords and a list of functions that I can use

regards