Vista Console App? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:34:05Z http://stackoverflow.com/feeds/question/41185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/41185/vista-console-app 1 Vista Console App? aronchick 2008-09-03T04:42:04Z 2008-09-04T17:14:40Z <p>I'm doing a fair bit of work in Ruby recently, and using</p> <pre><code> ruby script/console </code></pre> <p>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?</p> http://stackoverflow.com/questions/41185/vista-console-app/41189#41189 0 Answer by Daud for Vista Console App? Daud 2008-09-03T04:54:44Z 2008-09-03T04:54:44Z <p>I've never had any problems with the Vista console. I kind of like the shiny thing.</p> http://stackoverflow.com/questions/41185/vista-console-app/41190#41190 0 Answer by lomaxx for Vista Console App? lomaxx 2008-09-03T04:55:22Z 2008-09-03T04:55:22Z <p><a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">Powershell</a></p> http://stackoverflow.com/questions/41185/vista-console-app/41202#41202 5 Answer by Dave Webb for Vista Console App? Dave Webb 2008-09-03T05:11:52Z 2008-09-03T05:11:52Z <p>I use <a href="http://sourceforge.net/projects/console/" rel="nofollow">Console2</a>.</p> <p>I like the tabbed interface and that copy works properly if text breaks at the end of a line.</p> http://stackoverflow.com/questions/41185/vista-console-app/41216#41216 1 Answer by aronchick for Vista Console App? aronchick 2008-09-03T05:42:06Z 2008-09-03T05:42:06Z <p>@lomaxx: Powershell isn't a console window - it's a great console app, but i need something to run it in.</p> http://stackoverflow.com/questions/41185/vista-console-app/41243#41243 2 Answer by Daren Thomas for Vista Console App? Daren Thomas 2008-09-03T06:25:47Z 2008-09-03T06:25:47Z <p>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.</p> <p>You could also try to get xterm working :)</p> http://stackoverflow.com/questions/41185/vista-console-app/41311#41311 3 Answer by Daemin for Vista Console App? Daemin 2008-09-03T08:15:11Z 2008-09-03T08:15:11Z <p>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).</p> <p>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.</p>