Vista Console App? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T04:34:05Zhttp://stackoverflow.com/feeds/question/41185http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/41185/vista-console-app1Vista Console App?aronchick2008-09-03T04:42:04Z2008-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#411890Answer by Daud for Vista Console App?Daud2008-09-03T04:54:44Z2008-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#411900Answer by lomaxx for Vista Console App?lomaxx2008-09-03T04:55:22Z2008-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#412025Answer by Dave Webb for Vista Console App?Dave Webb2008-09-03T05:11:52Z2008-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#412161Answer by aronchick for Vista Console App?aronchick2008-09-03T05:42:06Z2008-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#412432Answer by Daren Thomas for Vista Console App?Daren Thomas2008-09-03T06:25:47Z2008-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#413113Answer by Daemin for Vista Console App?Daemin2008-09-03T08:15:11Z2008-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>