Code completion problem

General questions regarding the usage of CodeLite
arkangel
CodeLite Curious
Posts: 3
Joined: Thu Jan 26, 2012 3:10 am
Genuine User: Yes
IDE Question: c++
Contact:

Code completion problem

Post 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
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Code completion problem

Post 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
Make sure you have read the HOW TO POST thread
arkangel
CodeLite Curious
Posts: 3
Joined: Thu Jan 26, 2012 3:10 am
Genuine User: Yes
IDE Question: c++
Contact:

Re: Code completion problem

Post 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
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Code completion problem

Post 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
Make sure you have read the HOW TO POST thread
arkangel
CodeLite Curious
Posts: 3
Joined: Thu Jan 26, 2012 3:10 am
Genuine User: Yes
IDE Question: c++
Contact:

Re: Code completion problem

Post 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
Post Reply