Is there a windows console emulator?

18

5

Is there any way to make Windows console less ugly? I imagine there might be some 32 bit application that provides a nicer UI, but delegates all calls to cmd under the hood. Is there such an app?

For now, I just want better fonts, ability to copy-paste with Ctrl+C and Ctrl+V, and other functionality in general, common to all 32 bit apps.

Features like tabs and translucency will be a plus.

missingfaktor

Posted 2012-07-08T08:06:34.760

Reputation: 564

Question was closed 2013-12-09T18:16:26.430

6You do realize that Ctrl-C is used to abort commands? Do you really want to lose that functionality? – Daniel Beck – 2012-07-08T08:08:38.813

I found the source code for a program that does it for you http://www.daniweb.com/software-development/cpp/code/216345/add-a-little-color-to-your-console-text

– Celeritas – 2012-07-08T08:56:33.570

@DanielBeck, I want to be able copy without having to highlight text. Some other key binding will also do. – missingfaktor – 2012-07-08T09:38:36.700

The Windows console (CMD.EXE) is a 32 bit application. – MSalters – 2012-07-08T14:04:05.227

@DanielBeck, Actually, why not to use Ctrl-C when there is selection present? Otherwise Ctrl-C may provide its default function. :) – Maximus – 2012-07-11T00:07:03.767

http://www.mingw.org/ – Vorac – 2012-07-12T15:13:23.687

Answers

50

Try ConEmu - Windows Console Emulator. I'm the author of it.

ConEmu is highly configurable and flexible tool with hundreds of options :) Fonts, Tabs, keboard shortcuts for standard actions and simply macros, Quake style, ANSI support, GUI apps (putty, notepad++) in tabs and much more.

Note. Ctrl+V by default paste only first line from clipboard. Shift+Ins paste all lines. This was made to avoid unexpectedly execution of commands on paste in prompt.

And how about to change cursor position in prompt with mouse click?

Window Console Enhancement

Maximus

Posted 2012-07-08T08:06:34.760

Reputation: 19 395

5+1. I am accepting this answer, because that's the least I can do to thank you for this amazing tool. :) – missingfaktor – 2012-07-08T13:01:12.460

7

Console does everything you ask for, and more. Except you should reconsider the Ctrl-C as Daniel points out. By default, on most OS, copying from a gui console is done simply by highlighting text with the mouse.

stijn

Posted 2012-07-08T08:06:34.760

Reputation: 1 977

@stijn, Did you try ConEmu? – Maximus – 2012-07-08T12:57:51.200

1@Maximus no, actually first time I hear about it. Will try it if I have some spare time. – stijn – 2012-07-08T17:03:00.103

4

You could install CygWin and use Putty with it: https://code.google.com/p/puttycyg/

Fabian Zeindl

Posted 2012-07-08T08:06:34.760

Reputation: 308

2

What about http://code.google.com/p/mintty/?

Nice and slick, based on Putty.

Wiesław Herr

Posted 2012-07-08T08:06:34.760

Reputation: 543