Unable to use Screen efficiently in Mac's Terminal - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T05:46:22Zhttp://stackoverflow.com/feeds/question/810025http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal5Unable to use Screen efficiently in Mac's TerminalMasi2009-05-01T03:06:18Z2009-08-04T00:38:17Z
<p>The post summarizes problems in using Screen in Mac's terminal when you have the following in your .zshrc</p>
<pre><code>if [[ $STY = '' ]] then screen -xR; fi
</code></pre>
<ol>
<li><strong><a href="http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/810395#810395">Solution #1 is not working but Solution #2 works</a>:</strong> Clipboard programs: pbcopy, pbpaste and xsel do not work at all</li>
<li>Bug in Vim when used in Mac: <a href="http://stackoverflow.com/questions/809935/unable-to-solve-a-bug-in-vims-tlist-with-screen/809975#809975">Unable to have no scattered windows in Screen by .Xresources.</a></li>
<li><strong><a href="http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/810069#810069">Solved</a>:</strong> Ctrl A stops working in terminal. This suggests me that Screen's keyboard bindings need to be changed slightly. </li>
<li><strong><a href="http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/816082#816082">Impossible</a>:</strong> The scrolling with touchpad does not work.</li>
<li><strong><a href="http://stackoverflow.com/questions/815915/unable-to-bind-hjkl-to-dlth-in-screens-c-a-esc-mode">Solved</a></strong>: Unable to have Dvorak keybindings for Screen for moving in Scrollback mod.</li>
<li><a href="http://stackoverflow.com/questions/816302/unable-to-pbcopy-xsel-inside-screen">How can you use pbcopy/pbpaste/xsel inside Screen?</a></li>
</ol>
http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/810069#8100693Answer by Brian Campbell for Unable to use Screen efficiently in Mac's TerminalBrian Campbell2009-05-01T03:32:17Z2009-05-01T03:32:17Z<p>I usually solve the <kbd>ctrl</kbd>-<kbd>a</kbd> problem by setting my escape character to <kbd>ctrl</kbd>-<kbd>z</kbd> (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 <code>.screenrc</code>:</p>
<pre><code>escape ^Zz
</code></pre>
<p>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 <a href="http://www.samsarin.com/blog/2007/03/11/gnu-screen-working-with-the-scrollback-buffer/" rel="nofollow">this article</a> for some tips on using screen's scrollback features.</p>
http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/810379#8103791Answer by runako for Unable to use Screen efficiently in Mac's Terminalrunako2009-05-01T06:18:46Z2009-05-01T06:18:46Z<p>The default OS X Terminal app is weak. Get iTerm instead:</p>
<p><a href="http://iterm.sourceforge.net/" rel="nofollow">iTerm</a></p>
<p>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).</p>
http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/810389#8103891Answer by staticsan for Unable to use Screen efficiently in Mac's Terminalstaticsan2009-05-01T06:22:18Z2009-05-01T06:22:18Z<p>Problem #3 might be solvable if you enable the alternate screen buffer. Use <code>altscreen on</code> in <code>.screenrc</code></p>
http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/810395#8103950Answer by Masi for Unable to use Screen efficiently in Mac's TerminalMasi2009-05-01T06:25:47Z2009-05-03T01:41:33Z<p><strong>Solution #1 which does not work</strong></p>
<p>To be able to copy/paste in OSX put the following to your .screenrc</p>
<pre><code>bind b eval "writebuf" "exec sh -c 'pbcopy < /tmp/screen-exchange'"
</code></pre>
<p><a href="http://www.samsarin.com/blog/2007/03/11/gnu-screen-working-with-the-scrollback-buffer/" rel="nofollow">> Th[e] line - - sends that file to pbcopy - -.</a> </p>
<p>The command is bound to C-a b (in my case, C-z b). </p>
<p><strong>Solution #2 which works but is rather slow to type</strong></p>
<p>Use Scrollback mode i.e. copy mode by</p>
<p>Coping</p>
<pre><code>C-A [
</code></pre>
<p>Pasting</p>
<pre><code>C-A ]
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/816082#8160820Answer by Masi for Unable to use Screen efficiently in Mac's TerminalMasi2009-05-03T01:50:21Z2009-05-03T01:50:21Z<blockquote>
<p>Q5: Impossible: The scrolling with
touchpad does not work.</p>
</blockquote>
<p>You can use ^A Esc to scroll up the screen. You cannot use Touchpad in Screen.</p>
http://stackoverflow.com/questions/810025/unable-to-use-screen-efficiently-in-macs-terminal/1112994#11129940Answer by ACoolie for Unable to use Screen efficiently in Mac's TerminalACoolie2009-07-11T05:00:26Z2009-07-11T05:00:26Z<p>This solves the scrollback issue, although it is somewhat broken in that it isn't aware of screen's buffers.
<code>env TERM=vt100 screen</code></p>