vote up 4 vote down star
1

I need a serviceable shell for MSYS. This is my current dilemma:

The default rxvt.exe has a scroll bar and copy and paste, but doesn't send control characters or arrow keys to a running program in the shell (like interpreters/debuggers). This is a real thorn when using the Haskell interpreter ghci.

The other shell sh.exe handles control characters (or at least some of them), but has no scroll bar or copy and paste.

rxvt also has (relatively) more issues with output buffering

What are my options? Does the replacement shell need to be msys aware? All I want is a sane environment to work with Haskell (ghc), C++ (gcc), and the basic tool chain (make and what not). I'm willing to compile a shell if it doesn't involve crazy shenanigans.

flag
I use cygwin's copy of rxvt, and I haven't noticed these issues. At least not with the more normal shell=control keys such as <Ctrl-C> <Ctrl-X> <Ctrl-z> etc. Are you using other stuff than that? Can you try to use MinGW with cygwin? – Eric Tuttleman Oct 21 '08 at 4:11
I should correct that rxvt does send something, it just doesn't play nice with GHCi. e.g. arrows keys insert hidden '\ESC' characters (ruining whatever input you had) instead of their usual function. Ctrl-C also has problems, and there is even a wrapper program ghcii.sh just to handle that issue. – dbs Oct 21 '08 at 19:18

6 Answers

vote up 2 vote down check

If you're after a better terminal emulator, I've had success with http://sourceforge.net/projects/console/

It's a replacement for the standard windows command window. You can set MSYS or Cygwin, or whatever you want as the shell backing it.

link|flag
This replacement addressed all the issues, thanks! – dbs Oct 21 '08 at 19:20
vote up 0 vote down

Do yourself a favour and use proper Cygwin instead of the unmaintained fork of an old Cygwin version that is msys.

link|flag
vote up 0 vote down

Check http://code.google.com/p/mintty/. How about that? I find it absolutely useful. Or puttycyg (an older attempt)?

link|flag
vote up 0 vote down

I've not used the msys stuff, but it should be enough to use something other than rxvt and run sh.exe in it. Now, if you're using control characters, you may need to be sure whatever you use supports what you need (i.e. vt100 emulation).

One route might be to use cygwin. I typically run cygwin with a rootless X server, and run xterm on it.. So far it has been very good and I haven't had many issues. I know arrow keys and such work just fine under it.

link|flag
vote up 0 vote down

Ah, so if I got it straight then sh.exe is the msys aware component, and I can fix the problem by finding a new emulator or a windows console replacement and just have it run sh.exe? And the emulator/console doesn't have to be msys aware?

link|flag
vote up 0 vote down

You are confusing "shell" and "terminal emulator". sh.exe is the former; rxvt is the latter. (mind you, under Windows you can do without a terminal emulator because Windows creates one (a "console window") for any console program (such as sh.exe) if it's not already running inside one)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.