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
Code completion problem
-
- CodeLite Curious
- Posts: 3
- Joined: Thu Jan 26, 2012 3:10 am
- Genuine User: Yes
- IDE Question: c++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Code completion problem
I will need some example to understand your problemarkangel 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?
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Curious
- Posts: 3
- Joined: Thu Jan 26, 2012 3:10 am
- Genuine User: Yes
- IDE Question: c++
- Contact:
Re: Code completion problem
En este ejemplo, solo el segundo printf recibe ayuda del autocompletado
regards
Code: Select all
#include <stdio.h>
int main(int argc, char **argv)
{
printf("hello world\n");
::printf("hello world\n");
return 0;
}
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Code completion problem
This is an English only forum (you don't want me to answer you in Hebrew, do you?)arkangel wrote:En este ejemplo, solo el segundo printf recibe ayuda del autocompletado
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
-
- CodeLite Curious
- Posts: 3
- Joined: Thu Jan 26, 2012 3:10 am
- Genuine User: Yes
- IDE Question: c++
- Contact:
Re: Code completion problem
Sorry
In this example, only the second printf receive assistance from the auto.
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
In this example, only the second printf receive assistance from the auto.
En este ejemplo, solo el segundo printf recibe ayuda del autocompletadoregardsCode: Select all
#include <stdio.h> int main(int argc, char **argv) { printf("hello world\n"); ::printf("hello world\n"); return 0; }
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