General questions regarding the usage of CodeLite
-
Jarod42
- CodeLite Expert
- Posts: 240
- Joined: Wed Sep 30, 2009 5:54 pm
- Genuine User: Yes
- IDE Question: C++
- Location: France
-
Contact:
Post
by Jarod42 »
Code: Select all
int (bar_not_visible)();
int bar_visible();
void foo()
{
bar_|Ctrl+Space
}
bar_not_visible is not suggested whereas bar_visible is.
(lua C API uses the syntax with extra parenthesis).
CL version : v.3.5.5377
-
eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
-
Contact:
Post
by eranif »
Hi Jarod42!
If you are using codelite's normal build system (e.g. no custom makefile) - enable clang from:
Code: Select all
settings -> tags settings -> clang -> enable clang code completion
It should fix this
Eran
-
Jarod42
- CodeLite Expert
- Posts: 240
- Joined: Wed Sep 30, 2009 5:54 pm
- Genuine User: Yes
- IDE Question: C++
- Location: France
-
Contact:
Post
by Jarod42 »
It fixes this, thanks.