I just started using Console2 as an alternative to cmd.exe
I can't figure out how to copy text from the console to the clipboard -- dragging over it with the mouse won't mark anything, and there is no option in the right-click menu to "mark" as in cmd.exe
It must be terribly obvious but I guess I'm overlooking it... :(


cmd.exe.IIRC, the strange mouse behavior is because
– Fake Name Apr 20 '10 at 09:46cmd.exeactually handles all of the window drawing itself, rather than using the standard windows APIs. As a result, it's behavior is a bit anachronistic.cmd.exeis a shell; it doesn't do any window drawing, only parses commands. The window it uses is a "Win32 Console" window. Console2 is a "console" or "terminal", a replacement for the ugly Win32 Console windows; the delay is because it has to poll a hidden "real" console window for changes. – u1686_grawity Mar 11 '11 at 20:49