+11
Tabbed console window
I guess the thing that annoys me most about Sublime 2 is that it prints everything to the same console window.
This totally destroys any form of multitasking that you perform within the editor, such as triggering a test suite and then searching for something. When I do that now, it will trigger the build, but the search results will claim the console window so I will never be able to see the output of the build script again.
In other words, I have to serialize all work that involves printing things to the console, including any form of search you perform.
One solution to this would be to make the console window tabbed as well. That way I could run several tasks in parallel and see all their output at once.
Customer support service by UserEcho
I feel your pain, this was frustrating to me too. If you're on Windows, I created a plugin that builds/runs your code in an external console window that can help. It's not quite a tabbed console, but will allow you to have multiple external windows suitable for multitasking similar to what other editors do.
You can install it with Sublime Package Control, typing ConsoleExec, then add "console_exec" as the target of a particular build. Details here: https://github.com/joeyespo/sublimetext-console-exec
Hope this helps.