vote up 5 vote down star
6

The post summarizes problems in using Screen in Mac's terminal when you have the following in your .zshrc

if [[ $STY = '' ]] then screen -xR; fi
  1. Solution #1 is not working but Solution #2 works: Clipboard programs: pbcopy, pbpaste and xsel do not work at all
  2. Bug in Vim when used in Mac: Unable to have no scattered windows in Screen by .Xresources.
  3. Solved: Ctrl A stops working in terminal. This suggests me that Screen's keyboard bindings need to be changed slightly.
  4. Impossible: The scrolling with touchpad does not work.
  5. Solved: Unable to have Dvorak keybindings for Screen for moving in Scrollback mod.
  6. How can you use pbcopy/pbpaste/xsel inside Screen?
flag
1  
By the way, shouldn't this question probably be on serverfault.com? It now has a beta that's open to anyone who has a rep on stackoverflow of at least 100. – Brian Campbell May 1 at 3:39

6 Answers

vote up 3 vote down check

I usually solve the ctrl-a problem by setting my escape character to ctrl-z (which you generally don't need to use as often when you're running screen, since instead of backgrounding a process, you can just start up a new screen). In my .screenrc:

escape ^Zz

Scrolling using the touchpad just isn't going to work; screen is acting as a terminal emulator inside a terminal emulator, and it's just not possible for screen to switch the scrollback buffer in Terminal.app whenever you switch between screens. You're going to have to use screen's scrollback features. See this article for some tips on using screen's scrollback features.

link|flag
1  
+1... I use ctrl-z too. It's really not a problem due to how infrequently you actually type ctrl-z relative to other stuff. – Jacob Gabrielson Jun 12 at 16:47
vote up 0 vote down

This solves the scrollback issue, although it is somewhat broken in that it isn't aware of screen's buffers. env TERM=vt100 screen

link|flag
I put the line to my .zshrc. The command caused my Screen to duplicate screen buffers a lot (endless loop) such that I could access my terminal anymore. --- The loop starts again if I go to the buffer #0. --- It seeems that the code's purpose is to be used without Screen. – Masi Jul 11 at 8:00
If you want it in your .zshrc then use this. if [[ $STY = '' ]] then env TERM=vt100 screen; fi – ACoolie Jul 12 at 17:56
vote up 0 vote down

Q5: Impossible: The scrolling with touchpad does not work.

You can use ^A Esc to scroll up the screen. You cannot use Touchpad in Screen.

link|flag
vote up 0 vote down

Solution #1 which does not work

To be able to copy/paste in OSX put the following to your .screenrc

bind b eval "writebuf" "exec sh -c 'pbcopy < /tmp/screen-exchange'"

> Th[e] line - - sends that file to pbcopy - -.

The command is bound to C-a b (in my case, C-z b).

Solution #2 which works but is rather slow to type

Use Scrollback mode i.e. copy mode by

Coping

C-A [

Pasting

C-A ]

The solution is great, since it is the same in all terminal apps. It is similar to the clipboard as you use with your mouse.

link|flag
I do not know how you can use the command with pbcopy. I run unsuccessfully $ echo Masi | pbcopy C-z b. – Masi May 1 at 6:38
vote up 1 vote down

Problem #3 might be solvable if you enable the alternate screen buffer. Use altscreen on in .screenrc

link|flag
@staticsan: The next problem is to know how to do that. I did not find the result by Google. – Masi May 1 at 6:33
man screen will tell you where it will look for .screenrc. If it doesn't exist, create one. Incidentally, man screen is a wealth of information. I often find out something new every time I read it. – staticsan May 1 at 6:42
Oh yes - you can try out screen commands by doing cmd-colon (defaults to Ctrl+A then :). This gives you a little command line to enter screen directives. – staticsan May 1 at 6:44
vote up 1 vote down

The default OS X Terminal app is weak. Get iTerm instead:

iTerm

If I'm not mistaken, iTerm solves all of these out of the box (my install is a couple years old, so I can't test that theory now).

link|flag

Your Answer

Get an OpenID
or

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