I am making a simple application which requires colored output. How can I make my output colored like emacs and bash do?
I don't care about Windows, as my application is only for UNIX systems.
Thanks.
|
|
|
All modern terminal emulators use ANSI escape codes to show colours and other things. More info is here. Example in C:
|
|||||||||||||||
|
|
Dealing with colour sequences can get messy and different systems might use different Colour Sequence Indicators. I would suggest you try using ncurses. Other than colour, ncurses can do many other neat things with console UI. |
|||
|
|
You can output special color control codes to get colored terminal output, here's a good resource on how to print colors. For example:
EDIT: My original one used prompt color codes, which doesn't work :( This one does (I tested it). |
|||||||||||
|
|
You can assign one color to every functionality to make it more useful.
Like wise you can select different color codes and make this more generic. |
|||
|
|