views:

642

answers:

6
+1  Q: 

Vista Console App?

I'm doing a fair bit of work in Ruby recently, and using

 ruby script/console

Is absolutely critical. However, I'm really disappointed with the default Windows console in Vista, especially in that there's a really annoying bug where moving the cursor back when at the bottom of the screen irregularly causes it to jump back. Anyone have a decent console app they use in Windows?

A: 

I've never had any problems with the Vista console. I kind of like the shiny thing.

Daud
A: 

Powershell

lomaxx
+6  A: 

I use Console2.

I like the tabbed interface and that copy works properly if text breaks at the end of a line.

Dave Webb
Had to switch the answer after a long time... Console2 is great (as of 2010-03-08).
aronchick
+2  A: 

@lomaxx: Powershell isn't a console window - it's a great console app, but i need something to run it in.

aronchick
+2  A: 

I have had some pleasant experiences with rxvt (comes with cygwin, does not need an x server running). Putty is also often mentioned as a good alternative.

You could also try to get xterm working :)

Daren Thomas
+3  A: 

Are you resizing the console window? I've found that the ruby scripts (irb, etc) that use the readline library don't work correctly with resized console windows (in XP or Vista).

Effectively I believe that the readline library expects the console window to be 80 characters wide, anything else and it goes bezerk. So far I haven't found a way to fix it on windows without giving up other nice features.

Daemin
once again, i just want to comment on this - great suggestion!
aronchick