vote up 4 vote down star

Using Terminal.app on OS X 10.5, often you see the commands get garbled when you do a reverse-search with Bash. Is there some kind of termcap or perhaps a bash shopt command that can fix this? It is very annoying.

Steps to reproduce: Open Terminal.app, reverse-search to a longish command. Hit <ctrl>-E once you've found the command. The cursor goes to the end of the line, but the display doesn't update.

I'm guessing this is some kind of problem with the readline library on OS X. It's more of a problem with updating the cursor position after a search than anything else. Basically, ctrl-a and ctrl-e tend to break the search output.

os x terminal failure image

In the above, the first part of the command should be displayed, and the cursor should be at the end of the line, but it isn't. You literally can't see what you're editing when this happens.

flag

75% accept rate
What is the value of your $PS1 variabile? – Milhous Oct 1 '08 at 14:41

10 Answers

vote up 3 vote down check

I was able to set my TERM to xterm instead of xterm-color and it solves the problem. (export TERM=xterm).

link|flag
Just got around to trying this, and it works! – hoyhoy Sep 17 at 3:37
vote up 4 vote down

You may want to look at this post.

bash-prompt-in-os-x-terminal-broken

I had the same problem and it had to do with the PS1 variable. Let me know if this helps.

link|flag
vote up 1 vote down

I can't reproduce this, hitting either Ctrl+E, Ctrl+A or the arrow keys updates the command line correctly. Are you running 10.5.4? Is it perhaps a bug in earlier versions?

link|flag
This has been happening since Tiger for me. – hoyhoy Sep 12 '08 at 7:59
vote up 1 vote down

Not sure whether this is the problem here, but a very common cause of a messed up screen in bash (with any terminal emulator, not just Terminal.app) is the window being resized.

Bash will read the window size when it starts up, and then assume it hasn't changed. When the window is resized a signal will be sent to whatever app is currently reading from the console. If this isn't bash (because you're running a text editor at the time, perhaps), then bash won't know about it.

Solution in this case is to resize the window again so that bash gets the signal and notices the new size.

link|flag
vote up 0 vote down

I've encountered this bug, and while I don't know how to solve it, you can work around it by pressing <down><up>

link|flag
Down/up works. So theoretically you could search, then hit down, then up, then ctrl-e. But I'm looking for some elite termcap or readline patch to solve this. – hoyhoy Sep 12 '08 at 7:59
vote up 0 vote down

Does iTerm handle this properly? That might help narrow down the source of the problem.

link|flag
Not sure, I haven't tried iTerm. – hoyhoy Sep 12 '08 at 8:00
vote up 0 vote down

I'm on 10.5.6 and get the same problem. It happens even when I hit enter instead of ctl-e to exit the reverse search, and even when I use up-arrow to walk commands in reverse. Setting my TERM variable to xterm doesn't help.

link|flag
The problem still exists on 10.6.1 as well. – hoyhoy Sep 17 at 3:32
vote up 0 vote down

In worst case, you could launch the X server (somewhere under utilities) and launch a real xterm.

link|flag
vote up 0 vote down

I have the same issue, when I hit Enter to choose a reverse-i-search command it screw up the output and I have to close the whole application (not just tabs, I need to cmd+q). It's very annoying, anyone found a solution?

Note: with X11 or iTerm the issue disappears, all work as expected! The problem must be somewhere in Terminal application.

link|flag
vote up 0 vote down

I also have this problem, but only if the prompt has colors.

I think this might explain it: http://osdir.com/ml/bug-bash-gnu/2009-07/msg00019.html

link|flag

Your Answer

Get an OpenID
or

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