Code colours

Post here any ideas/problems/suggestions you have regarding CodeLite's CodeFormatter (AStyle) plugin
Pakaru
CodeLite Curious
Posts: 1
Joined: Tue Jun 30, 2015 1:07 pm
Genuine User: Yes
IDE Question: C++
Contact:

Code colours

Post by Pakaru »

Is there a list of code colouring or tips on colouring.

I define the variable below but tempbits is not added to the auto complete or is coloured like the other variables.
bitset <8> tempBits;


I also noticed that if I declare variables like

int a=0,b=1;

that b wont b highlighted.
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Code colours

Post by eranif »

Pakaru wrote:int a=0,b=1;

that b wont b highlighted.
This is a known issue
Pakaru wrote:I define the variable below but tempbits is not added to the auto complete or is coloured like the other variables.
bitset <8> tempBits;
Make sure that you have the proper 'using namespace std;' and the include file in your code
Eran
Make sure you have read the HOW TO POST thread
Post Reply