4/12 screen-3.9.5 installed as screen.new -- it's not compatible with the
old version, so I won't install it as screen until all the old screen
processes are dead. There's a list of new features (including split-
screen support) in /csua/tmp/screen-3.9.5+idle/NEWS. --mconst
\_ what escape key combination have any of you found to conflict
the least with existing programs? C-a seems to be used quite
often. Also, is there a way to make the new shell start with the
same terminal type as the shell that invoked screen (it always
thinks the terminal type is screen, but I'd like it to be vt100
or xterm, whichever one I started screen with).
\_ I use CNTRL-D: alias screen="screen -e^Dd". For the term
type I think that it is -T <type>. Just use a function:
screen () {
if [ -z "$TERM" ] ; then TERM=vt100 ; fi
/usr/bin/screen -e^Dd -T "$TERM" "$@"
}
\_ Wow.. this person has scary ways of doing things that
will tend to break. Please don't listen to them. Use ^O.
Set it in your .screenrc. Set your term to vt100 in your
.screenrc. You'll be happy.
\_ What's wrong with Control-D? It prevents you from
accidentally logging out as a side effect. I prefer
xterm to vt100 since meta works correctly for
emacs -nw when term is set to vt100. Yes I mostly
use xterms.
\_ How do you wall???
\_ Did someone mention
useless functionality? ;-)
\_ I never wall. On the boxes I admin, I
just kill everyone's processess
and then sync x 3 and init 5 (or 6) to
reboot.
\_ Hm, I use ^D as delete in emacs. And ^O for various
other things in pine. Any other suggestions?
\_ use a better mail reader
\_ emacs uses every key that exists and a few that don't
\_ I use ^o ... other than it being oflush in telnet, it's
unused. -geordan
\_ I use the spacebar. Since I'm only using the mouse for almost
everything, this rarely conflicts. |