Windows console with ANSI colors handling

35

15

Is there any console emulator for Windows that interprets ANSI coloring?

We use rspec and a part of our team use Windows and the special string for coloring are not very useful for them ;).

mrzasa

Posted 2012-04-16T14:27:20.840

Reputation: 475

Answers

41

ConEmu supports ANSI X3.64 with Xterm 256 color extension. I'm the author of this console emulator.

Ansi sequences are handled for all processes, running in ConEmu tabs.

AFAIK, ConEmu supports more codes, than Ansicon.

ConEmu and ANSI X3.64 / Xterm 256 colors

Maximus

Posted 2012-04-16T14:27:20.840

Reputation: 19 395

1This rocks ! As a gamer I love the quake feature. The console seems to be locked on top of the screen however (even with the option locked on top disabled). Thanks – Ced – 2015-09-29T04:44:32.770

how do you run cmd with tabs? – Mikey – 2017-08-16T05:16:55.363

@Mikey What? Read the answer first. – Maximus – 2017-08-16T08:50:41.813

39

None of the answers on this page mention an important aspect of the new support for ANSI Terminal Control which was added to the Windows 10 console host in build 16257 (and later). Namely, it's n̲o̲t̲ e̲n̲a̲b̲l̲e̲d̲ by default. Unless the specific software you're using enables ANSI processing by calling the SetConsoleMode API with the ENABLE_VIRTUAL_TERMINAL_PROCESSING (0x0400) flag, you won't see colors or get ANSI processing for that application.

ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
https://docs.microsoft.com/en-us/windows/console/setconsolemode

When writing with WriteFile or WriteConsole, characters are parsed for VT100 and similar control character sequences that control cursor movement, color/font mode, and other operations that can also be performed via the existing Console APIs. For more information, see Console Virtual Terminal Sequences.

I'm guessing the reason the examples shown on this page work is that, apparently the echo command (or perhaps the batch-processing part of CMD.EXE or conhost) enables ANSI processing by calling the API just mentioned. But many other tools or executables that write to stdin or stdout might not do this, in which case you won't see color for those processes.

Fortunately, the global default can be changed from opt-in to opt-out. The registry key at HKEY_CURRENT_USER\Console\VirtualTerminalLevel sets the global default behavior for processing ANSI escape sequences. Create a DWORD key (if necessary) and set its value to 1 to globally enable (or 0 to disable`) ANSI processing by default.

[HKEY_CURRENT_USER\Console]
"VirtualTerminalLevel"=dword:00000001

Note that this registry setting controls a default, meaning that it only affects console apps which don't explicitly manipulate the console mode by calling SetConsoleMode(...). It follows that, while the registry value may help enable ANSI for console-mode-oblivious apps, it will have no effect on any console-mode-savvy app which (for some reason) may explicitly disable ANSI.

enter image description here

Glenn Slayden

Posted 2012-04-16T14:27:20.840

Reputation: 803

21

Starting from Windows 10 TH2 (v1511), conhost.exe (and, by extension, cmd.exe) support ANSI Escape Sequences, in particular colors:

image from the MSDN page mentioned below

The MSDN page about Console Virtual Terminal Sequences explains what sequences are supported and how to enable them:

You can use GetConsoleMode and SetConsoleMode flags to configure this behavior. [...]

The behavior of the following sequences is based on the VT100 and derived terminal emulator technologies, most specifically the xterm terminal emulator. More information about terminal sequences can be found at http://vt100.net and at http://invisible-island.net/xterm/ctlseqs/ctlseqs.html.

rolve

Posted 2012-04-16T14:27:20.840

Reputation: 446

3

The supported sequences are described at https://msdn.microsoft.com/en-us/library/windows/desktop/mt638032(v=vs.85).aspx

– dbenham – 2016-07-07T02:15:22.150

You can also change the default colors using Colortool. New Windows 10 installs will get slightly modified colours that are easier to read (especially blue on black), but updates will keep the old, hard-to-read colours.

– None – 2018-09-12T18:11:23.663

10

Is there any console emulator for Windows that interprets ANSI coloring?

Windows before 10 - no native support for ANSI colors on the console

For Windows version below 10, the Windows command console doesn't support output coloring by default. You could install either Cmder, ConEmu, ANSICON or Mintty (used by default in GitBash and Cygwin) to add coloring support to your Windows command console.

Windows 10 - Command Line Colors

Starting from Windows 10 the Windows console support ANSI Escape Sequences and some colors by default.

MSDN Documentation

Demo

enter image description here

Batch Command

The win10colors.cmd was written by Michele Locati:

@echo off
cls
echo [101;93m STYLES [0m
echo ^<ESC^>[0m [0mReset[0m
echo ^<ESC^>[1m [1mBold[0m
echo ^<ESC^>[4m [4mUnderline[0m
echo ^<ESC^>[7m [7mInverse[0m
echo.
echo [101;93m NORMAL FOREGROUND COLORS [0m
echo ^<ESC^>[30m [30mBlack[0m (black)
echo ^<ESC^>[31m [31mRed[0m
echo ^<ESC^>[32m [32mGreen[0m
echo ^<ESC^>[33m [33mYellow[0m
echo ^<ESC^>[34m [34mBlue[0m
echo ^<ESC^>[35m [35mMagenta[0m
echo ^<ESC^>[36m [36mCyan[0m
echo ^<ESC^>[37m [37mWhite[0m
echo.
echo [101;93m NORMAL BACKGROUND COLORS [0m
echo ^<ESC^>[40m [40mBlack[0m
echo ^<ESC^>[41m [41mRed[0m
echo ^<ESC^>[42m [42mGreen[0m
echo ^<ESC^>[43m [43mYellow[0m
echo ^<ESC^>[44m [44mBlue[0m
echo ^<ESC^>[45m [45mMagenta[0m
echo ^<ESC^>[46m [46mCyan[0m
echo ^<ESC^>[47m [47mWhite[0m (white)
echo.
echo [101;93m STRONG FOREGROUND COLORS [0m
echo ^<ESC^>[90m [90mWhite[0m
echo ^<ESC^>[91m [91mRed[0m
echo ^<ESC^>[92m [92mGreen[0m
echo ^<ESC^>[93m [93mYellow[0m
echo ^<ESC^>[94m [94mBlue[0m
echo ^<ESC^>[95m [95mMagenta[0m
echo ^<ESC^>[96m [96mCyan[0m
echo ^<ESC^>[97m [97mWhite[0m
echo.
echo [101;93m STRONG BACKGROUND COLORS [0m
echo ^<ESC^>[100m [100mBlack[0m
echo ^<ESC^>[101m [101mRed[0m
echo ^<ESC^>[102m [102mGreen[0m
echo ^<ESC^>[103m [103mYellow[0m
echo ^<ESC^>[104m [104mBlue[0m
echo ^<ESC^>[105m [105mMagenta[0m
echo ^<ESC^>[106m [106mCyan[0m
echo ^<ESC^>[107m [107mWhite[0m
echo.
echo [101;93m COMBINATIONS [0m
echo ^<ESC^>[31m                     [31mred foreground color[0m
echo ^<ESC^>[7m                      [7minverse foreground ^<-^> background[0m
echo ^<ESC^>[7;31m                   [7;31minverse red foreground color[0m
echo ^<ESC^>[7m and nested ^<ESC^>[31m [7mbefore [31mnested[0m
echo ^<ESC^>[31m and nested ^<ESC^>[7m [31mbefore [7mnested[0m

Jens A. Koch

Posted 2012-04-16T14:27:20.840

Reputation: 263

As of Version 1607 (OS Build 14393.693), the color in Windows 10 has been disabled. – geff_chang – 2017-02-22T14:20:50.637

2

Why should i believe that? Facts please. a) There is nothing in the changelog: https://support.microsoft.com/en-us/help/4009938 b) Works for me: http://imgur.com/a/MNPNm

– Jens A. Koch – 2017-02-22T14:32:41.507

1

I'm not sure in what exact Win10 version, but it's mentioned here: https://github.com/symfony/symfony/issues/19520 On my company laptop -- Ver 1511 (OS Build 10586.753) -- I didn't need it. On my home PC, I had to use ansicon, because the colors weren't on by default.

– geff_chang – 2017-02-23T12:11:35.580

4

They just introduced a flag, which controls colored output and is false by default. See https://wpdev.uservoice.com/forums/266908-command-prompt-console-bash-on-ubuntu-on-windo/suggestions/15617610--re-enable-enable-virtual-terminal-processing-by) --- Symfony is using PHP.exe on Windows, where the flag was off, so they had to wait for a patch, which landed here: https://github.com/php/php-src/pull/2103. Situation resolved. --- For cmd.exe the flag is true always. That's why you have color support on the console.

– Jens A. Koch – 2017-02-23T12:49:19.557

1would these codes work in a shell script in linux too? or is that done a different way? – Mikey – 2017-08-16T05:23:16.617

@Mikey http://www.tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html

– Elder Geek – 2017-09-28T13:42:42.240

@ElderGeek that's hardly an answer to his question. He's wondering (I think) if these escape sequences are the same across environments. I am too, a simple yes or no would work but I don't care enough to diff the two environments :) – Adam Plocher – 2018-01-22T09:05:47.097

@AdamPlocher IMHO, It's more effective to teach a man to fish than to give him a fish. Since when is a comment an answer anyway? – Elder Geek – 2018-01-22T13:22:55.073

@geff_chang Excellent explanation of changes to Windows 10 behavior can be found at https://github.com/Microsoft/WSL/issues/1173#issuecomment-254250445.

– Glenn Slayden – 2018-03-06T05:02:28.910