Update documentation for 'nethack'.
[screen-lua.git] / src / doc / screen.texinfo
bloba56e02f633f898fac91be88726d623d13357738c
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @c vi:set wm=5
4 @setfilename screen.info
5 @settitle Screen User's Manual
6 @dircategory General Commands
7 @finalout
8 @setchapternewpage odd
9 @c %**end of header
10 @set version 4.1.0
12 @direntry
13 * Screen: (screen).             Full-screen window manager.
14 @end direntry
16 @c For examples, use a literal escape in info.
17 @ifinfo
18 @set esc ^[
19 @end ifinfo
20 @iftex
21 @set esc <ESC>
22 @end iftex
24 @ifinfo
25 This file documents the @code{Screen} virtual terminal manager.
27 Copyright (c) 1993-2003 Free Software Foundation, Inc.
29 Permission is granted to make and distribute verbatim copies of
30 this manual provided the copyright notice and this permission notice
31 are preserved on all copies.
33 @ignore
34 Permission is granted to process this file through TeX and print the
35 results, provided the printed document carries copying permission
36 notice identical to this one except for the removal of this paragraph
37 (this paragraph not being relevant to the printed manual).
39 @end ignore
40 Permission is granted to copy and distribute modified versions of this
41 manual under the conditions for verbatim copying, provided that the entire
42 resulting derived work is distributed under the terms of a permission
43 notice identical to this one.
45 Permission is granted to copy and distribute translations of this manual
46 into another language, under the above conditions for modified versions,
47 except that this permission notice may be stated in a translation approved
48 by the Foundation.
49 @end ifinfo
51 @titlepage
52 @title Screen
53 @subtitle The virtual terminal manager
54 @subtitle for Version @value{version}
55 @subtitle Aug 2003
57 @page
58 @vskip 0pt plus 1filll
59 Copyright @copyright{} 1993-2003 Free Software Foundation, Inc.
61 Permission is granted to make and distribute verbatim copies of
62 this manual provided the copyright notice and this permission notice
63 are preserved on all copies.
65 Permission is granted to copy and distribute modified versions of this
66 manual under the conditions for verbatim copying, provided that the entire
67 resulting derived work is distributed under the terms of a permission
68 notice identical to this one.
70 Permission is granted to copy and distribute translations of this manual
71 into another language, under the above conditions for modified versions,
72 except that this permission notice may be stated in a translation approved
73 by the Foundation.
74 @end titlepage
76 @node Top, Overview, (dir), (dir)
78 @ifinfo
79 @top Screen
80 This file documents the @code{Screen} virtual terminal manager, version
81 @value{version}.
82 @end ifinfo
84 @menu
85 * Overview::                    Preliminary information.
86 * Getting Started::             An introduction to @code{screen}.
87 * Invoking Screen::             Command line options for @code{screen}.
88 * Customization::               The @file{.screenrc} file.
89 * Commands::                    List all of the commands.
90 * New Window::                  Running a program in a new window.
91 * Selecting::                   Selecting a window to display.
92 * Session Management::          Suspend/detach, grant access, connect sessions.
93 * Regions::                     Split-screen commands.
94 * Window Settings::             Titles, logging, etc.
95 * Virtual Terminal::            Controlling the @code{screen} VT100 emulation.
96 * Copy and Paste::              Exchanging text between windows and sessions.
97 * Subprocess Execution::        I/O filtering with @code{exec}.
98 * Key Binding::                 Binding commands to keys.
99 * Flow Control::                Trap or pass flow control characters.
100 * Termcap::                     Tweaking your terminal's termcap entry.
101 * Message Line::                The @code{screen} message line.
102 * Logging::                     Keeping a record of your session.
103 * Startup::                     Functions only useful at @code{screen} startup.
104 * Miscellaneous::               Various other commands.
105 * String Escapes::              Inserting current information into strings
106 * Environment::                 Environment variables used by @code{screen}.
107 * Files::                       Files used by @code{screen}.
108 * Credits::                     Who's who of @code{screen}.
109 * Bugs::                        What to do if you find a bug.
110 * Installation::                Getting @code{screen} running on your system.
111 * Concept Index::               Index of concepts.
112 * Command Index::               Index of all @code{screen} commands.
113 * Keystroke Index::             Index of default key bindings.
114 @end menu
116 @node Overview, Getting Started, Top, Top
117 @chapter Overview
118 @cindex overview
120 Screen is a full-screen window manager that multiplexes a physical
121 terminal between several processes, typically interactive shells.  Each
122 virtual terminal provides the functions of the DEC VT100 terminal and,
123 in addition, several control functions from the ISO 6429 (ECMA 48, ANSI X3.64)
124 and ISO 2022 standards (e.g. insert/delete line and support for multiple
125 character sets).  There is a scrollback history buffer for each virtual
126 terminal and a copy-and-paste mechanism that allows the user to move
127 text regions between windows.
129 When @code{screen} is called, it creates a single window with a shell in
130 it (or the specified command) and then gets out of your way so that you
131 can use the program as you normally would.  Then, at any time, you can
132 create new (full-screen) windows with other programs in them (including
133 more shells), kill the current window, view a list of the active
134 windows, turn output logging on and off, copy text between windows, view
135 the scrollback history, switch between windows, etc.  All windows run
136 their programs completely independent of each other.  Programs continue
137 to run when their window is currently not visible and even when the
138 whole screen session is detached from the user's terminal.
140 When a program terminates, @code{screen} (per default) kills the window
141 that contained it.  If this window was in the foreground, the display
142 switches to the previously displayed window; if none are left,
143 @code{screen} exits.
145 Everything you type is sent to the program running in the current
146 window.  The only exception to this is the one keystroke that is used to
147 initiate a command to the window manager.  By default, each command
148 begins with a control-a (abbreviated @kbd{C-a} from now on), and is
149 followed by one other keystroke.  The command character (@pxref{Command
150 Character}) and all the key bindings (@pxref{Key Binding}) can be fully
151 customized to be anything you like, though they are always two
152 characters in length.
154 @code{Screen} does not understand the prefix @kbd{C-} to mean control.
155 Please use the caret notation (@kbd{^A} instead of @kbd{C-a}) as arguments
156 to e.g. the @code{escape} command or the @code{-e} option. @code{Screen}
157 will also print out control characters in caret notation.
159 The standard way to create a new window is to type @kbd{C-a c}.  This
160 creates a new window running a shell and switches to that window
161 immediately, regardless of the state of the process running in the
162 current window.  Similarly, you can create a new window with a custom
163 command in it by first binding the command to a keystroke (in your
164 @file{.screenrc} file or at the @kbd{C-a :} command line) and then using it 
165 just like the @kbd{C-a c} command.  In addition, new windows can be created by 
166 running a command like:
168 @example
169 screen emacs prog.c
170 @end example
172 @noindent
173 from a shell prompt within a previously created window.  This will not
174 run another copy of @code{screen}, but will instead supply the command
175 name and its arguments to the window manager (specified in the $STY environment
176 variable) who will use it to create the new window.  The above example would 
177 start the @code{emacs} editor (editing @file{prog.c}) and switch to its window.
179 If @file{/etc/utmp} is writable by @code{screen}, an appropriate record
180 will be written to this file for each window, and removed when the
181 window is closed.  This is useful for working with @code{talk},
182 @code{script}, @code{shutdown}, @code{rsend}, @code{sccs} and other
183 similar programs that use the utmp file to determine who you are. As
184 long as @code{screen} is active on your terminal, the terminal's own
185 record is removed from the utmp file.  @xref{Login}.
187 @node Getting Started, Invoking Screen, Overview, Top
188 @chapter Getting Started
189 @cindex introduction
191 Before you begin to use @code{screen} you'll need to make sure you have
192 correctly selected your terminal type, just as you would for any other
193 termcap/terminfo program.  (You can do this by using @code{tset},
194 @code{qterm}, or just @code{set term=mytermtype}, for example.)
196 If you're impatient and want to get started without doing a lot more
197 reading, you should remember this one command: @kbd{C-a ?} (@pxref{Key
198 Binding}).  Typing these two characters will display a list of the
199 available @code{screen} commands and their bindings. Each keystroke is
200 discussed in the section on keystrokes (@pxref{Default Key Bindings}).
201 Another section (@pxref{Customization}) deals with the contents of your
202 @file{.screenrc}.
204 If your terminal is a ``true'' auto-margin terminal (it doesn't allow
205 the last position on the screen to be updated without scrolling the
206 screen) consider using a version of your terminal's termcap that has
207 automatic margins turned @emph{off}.  This will ensure an accurate
208 and optimal update of the screen in all circumstances.  Most terminals
209 nowadays have ``magic'' margins (automatic margins plus usable last
210 column).  This is the VT100 style type and perfectly suited for
211 @code{screen}.
212 If all you've got is a ``true'' auto-margin terminal @code{screen}
213 will be content to use it, but updating a character put into the last
214 position on the screen may not be possible until the screen scrolls or
215 the character is moved into a safe position in some other way. This
216 delay can be shortened by using a terminal with insert-character
217 capability.
219 @xref{Special Capabilities}, for more information about telling
220 @code{screen} what kind of terminal you have.
222 @node Invoking Screen, Customization, Getting Started, Top
223 @chapter Invoking @code{Screen}
224 @cindex invoking
225 @cindex options
226 @cindex command line options
228 Screen has the following command-line options:
230 @table @samp
231 @item -a
232 Include @emph{all} capabilities (with some minor exceptions) in each
233 window's termcap, even if @code{screen} must redraw parts of the display
234 in order to implement a function.
236 @item -A
237 Adapt the sizes of all windows to the size of the display.  By default,
238 @code{screen} may try to restore its old window sizes when attaching to
239 resizable terminals (those with @samp{WS} in their descriptions, e.g.
240 @code{suncmd} or some varieties of @code{xterm}).
242 @item -c @var{file}
243 Use @var{file} as the user's configuration file instead of the default
244 of @file{$HOME/.screenrc}.
246 @item -d [@var{pid.sessionname}]
247 @itemx -D [@var{pid.sessionname}]
248 Do not start @code{screen}, but instead detach a @code{screen} session
249 running elsewhere (@pxref{Detach}).  @samp{-d} has the same effect as
250 typing @kbd{C-a d} from the controlling terminal for the session.
251 @samp{-D} is the equivalent to the power detach key.  If no session can
252 be detached, this option is ignored.  In combination with the 
253 @code{-r}/@code{-R} option more powerful effects can be achieved:
255 @table @code
256 @item -d -r
257 Reattach a session and if necessary detach it first.
258 @item -d -R   
259 Reattach a session and if necessary detach  or  even create it first.
260 @item -d -RR  
261 Reattach a session and if necessary detach or create it.
262 Use the first session if more than one session is available.
263 @item -D -r   
264 Reattach a session. If necessary detach  and  logout remotely first.
265 @item -D -R   
266 Attach here and now. In detail this means: If a session  is running, 
267 then reattach. If necessary detach and logout remotely first.  If it
268 was not running create it and notify the user.
269 This is the author's favorite.
270 @item -D -RR  
271 Attach here and now. Whatever that  means, just do it.
272 @end table
274 @emph{Note}: It is a good idea to check the status of your sessions
275 with @code{screen -list} before using this option.
277 @item -e @var{xy}
278 Set the command character to @var{x}, and the character generating a
279 literal command character (when typed after the command character) to
280 @var{y}.  The defaults are @kbd{C-a} and @kbd{a}, which can be specified
281 as @samp{-e^Aa}.  When creating a @code{screen} session, this option
282 sets the default command character. In a multiuser session all users
283 added will start off with this command character. But when attaching
284 to an already running session, this option only changes the command
285 character of the attaching user.
286 This option is equivalent to the commands @code{defescape} or 
287 @code{escape} respectively.  (@pxref{Command Character}).
289 @item -f
290 @itemx -fn
291 @itemx -fa
292 Set flow-control to on, off, or automatic switching mode, respectively.
293 This option is equivalent to the @code{defflow} command (@pxref{Flow
294 Control}).
296 @item -h @var{num}
297 Set the history scrollback buffer to be @var{num} lines high.
298 Equivalent to the @code{defscrollback} command (@pxref{Copy}).
300 @item -i
301 Cause the interrupt key (usually @kbd{C-c}) to interrupt the display
302 immediately when flow control is on.  This option is equivalent to the
303 @code{interrupt} argument to the @code{defflow} command (@pxref{Flow
304 Control}). Its use is discouraged.
306 @item -l
307 @itemx -ln
308 Turn login mode on or off (for @file{/etc/utmp} updating).  This option
309 is equivalent to the @code{deflogin} command (@pxref{Login}).
311 @item -ls [@var{match}]
312 @itemx -list [@var{match}]
313 Do not start @code{screen}, but instead print a list of session
314 identification strings (usually of the form @var{pid.tty.host};
315 @pxref{Session Name}).  Sessions marked @samp{detached} can be resumed
316 with @code{screen -r}.  Those marked @samp{attached} are running and
317 have a controlling terminal.  If the session runs in multiuser mode,
318 it is marked @samp{multi}.  Sessions marked as @samp{unreachable} either
319 live on a different host or are dead. 
320 An unreachable session is considered dead, when its name matches either the
321 name of the local host, or the specified parameter, if any.
322 See the @code{-r} flag for a description how to construct matches.
323 Sessions marked as @samp{dead} should be thoroughly checked and removed.  
324 Ask your system administrator if you are not sure.
325 Remove sessions with the @samp{-wipe} option.
327 @item -L
328 Tell @code{screen} to turn on automatic output logging for the
329 windows.
331 @item -m
332 Tell @code{screen} to ignore the @code{$STY} environment variable.  When
333 this option is used, a new session will always be created, regardless of
334 whether @code{screen} is being called from within another @code{screen}
335 session or not. This flag has a special meaning in connection
336 with the @samp{-d} option:
337 @table @code
338 @item -d -m
339 Start @code{screen} in @emph{detached} mode. This creates a new
340 session but doesn't attach to it. This is useful for system startup
341 scripts.
342 @item -D -m
343 This also starts @code{screen} in @emph{detached} mode, but doesn't fork
344 a new process. The command exits if the session terminates.
345 @end table
347 @item -O
348 Select a more optimal output mode for your terminal rather than true VT100
349 emulation (only affects auto-margin  terminals  without @samp{LP}). This
350 can also be set in your @file{.screenrc} by specifying @samp{OP} in the 
351 @code{termcap} command.
353 @item -p @var{name_or_number}|-|=|+
354 Preselect a window. This is useful when you want to reattach to a
355 specific window or you want to send a command via the @samp{-X}
356 option to a specific window. As with screen's select command, @samp{-}
357 selects the blank window. As a special case for reattach, @samp{=}
358 brings up the windowlist on the blank window, while a @samp{+} will
359 create new window.
361 @item -q
362 Suppress printing of error messages. In combination with @samp{-ls} the exit 
363 value is set as follows: 9 indicates a directory without sessions. 10 
364 indicates a directory with running but not attachable sessions. 11 (or more) 
365 indicates 1 (or more) usable sessions.
366 In combination with @samp{-r} the exit value is as follows: 10 indicates that 
367 there is no session to resume. 12 (or more) indicates that there are 2 (or 
368 more) sessions to resume and you should specify which one to choose. 
369 In all other cases @samp{-q} has no effect.
371 @item -r [@var{pid.sessionname}]
372 @itemx -r @var{sessionowner}/[@var{pid.sessionname}]
373 Resume a detached @code{screen} session.  No other options (except
374 combinations with @samp{-d} or @samp{-D}) may be specified, though 
375 the session name
376 (@pxref{Session Name}) may be needed to distinguish between multiple
377 detached @code{screen} sessions.
378 The second form is used to connect to another user's screen session which
379 runs in multiuser mode. This indicates that screen should look for
380 sessions in another user's directory. This requires setuid-root.
382 @item -R
383 Resume the first appropriate detached @code{screen} session.  If
384 successful, all other command-line options are ignored.  If no detached
385 session exists, start a new session using the specified options, just as
386 if @samp{-R} had not been specified.  This option is set by default if
387 screen is run as a login-shell (actually screen uses @samp{-xRR} in
388 that case).
389 For combinations with the 
390 @samp{-D}/@samp{-d} option see there.
392 @item -s @var{program}
393 Set the default shell to be @var{program}.  By default, @code{screen}
394 uses the value of the environment variable @code{$SHELL}, or
395 @file{/bin/sh} if it is not defined.  This option is equivalent to the
396 @code{shell} command (@pxref{Shell}).
398 @item -S @var{sessionname}
399 Set the name of the new session to @var{sessionname}.  This option can
400 be used to specify a meaningful name for the session in place of the
401 default @var{tty.host} suffix.  This name identifies the session for the
402 @code{screen -list} and @code{screen -r} commands.  This option is
403 equivalent to the @code{sessionname} command (@pxref{Session Name}).
405 @item -t @var{name}
406 Set the title (name) for the default shell or specified program.
407 This option is equivalent to the @code{shelltitle} command
408 (@pxref{Shell}).
410 @item -T @var{term}
411 Set the $TERM enviroment varible using the spcified @emph{term} as 
412 opposed to the defualt setting of @code{screen}.
414 @item -U
415 Run screen in UTF-8 mode. This option tells screen that your terminal
416 sends and understands UTF-8 encoded characters. It also sets the default
417 encoding for new windows to @samp{utf8}.
419 @item -v
420 Print the version number.
422 @item -wipe [@var{match}]
423 List available screens like @code{screen -ls}, but remove destroyed
424 sessions instead of marking them as @samp{dead}. 
425 An unreachable session is considered dead, when its name matches either 
426 the name of the local host, or the explicitly given parameter, if any.
427 See the @code{-r} flag for a description how to construct matches.
429 @item -x
430 Attach to a session which is already attached elsewhere (multi-display
431 mode). 
432 @code{Screen} refuses to attach from within itself. 
433 But when cascading multiple screens, loops are not detected; take care.
436 @item -X
437 Send the specified command to a running screen session. You can use
438 the @code{-d} or @code{-r} option to tell screen to look only for 
439 attached or detached screen sessions. Note that this command doesn't
440 work if the session is password protected.
442 @end table
444 @node Customization, Commands, Invoking Screen, Top
445 @chapter Customizing @code{Screen}
446 @cindex customization
448 You can modify the default settings for @code{screen} to fit your tastes
449 either through a personal @file{.screenrc} file which contains commands
450 to be executed at startup, or on the fly using the @code{colon} command.
452 @menu
453 * Startup Files::               The @file{.screenrc} file.
454 * Source::                      Read commands from a file.
455 * Colon::                       Entering customization commands interactively.
456 @end menu
458 @node Startup Files, Source,  , Customization
459 @section The @file{.screenrc} file
460 @cindex .screenrc
461 @cindex screenrc
462 When @code{screen} is invoked, it executes initialization commands from
463 the files @file{.screenrc} in the user's home directory and
464 @file{/usr/local/etc/screenrc}.  These defaults can be overridden in the 
465 following ways:
466 For the global screenrc file @code{screen} searches for the environment
467 variable @code{$SYSSCREENRC} (this override feature may be disabled at
468 compile-time).  The user specific screenrc file is
469 searched for in @code{$SCREENRC}, then 
470 @file{@code{$HOME}/.screenrc}.  The command line option @samp{-c}
471 specifies which file to use (@pxref{Invoking Screen}.  Commands in these
472 files are used to set options, bind commands to keys, and to
473 automatically establish one or more windows at the beginning of
474 your @code{screen} session.  Commands are listed one per line, with
475 empty lines being ignored.  A command's arguments are separated by tabs
476 or spaces, and may be surrounded by single or double quotes.  A @samp{#}
477 turns the rest of the line into a comment, except in quotes.
478 Unintelligible lines are warned about and ignored.  Commands may contain
479 references to environment variables.  The syntax is the shell-like
480 @code{$VAR} or @code{$@{VAR@}}.  Note that this causes incompatibility
481 with previous @code{screen} versions, as now the '$'-character has to be
482 protected with '\' if no variable substitution is intended. A string in 
483 single-quotes is also protected from variable substitution.
485 Two configuration files are shipped as examples with your screen
486 distribution: @file{etc/screenrc} and @file{etc/etcscreenrc}. They
487 contain a number of useful examples for various commands.
489 @node Source, Colon, Startup Files, Customization
490 @section Source
491 @deffn Command source file
492 (none)@*
493 Read and execute commands from file @var{file}. Source  commands
494 may be nested to a maximum recursion level of ten. If @var{file}
495 is not an absolute path and  screen  is already processing  a
496 source command, the parent directory of the running source
497 command file is used to search for the new command file  before
498 screen's current directory.
500 Note  that termcap/terminfo/termcapinfo commands only work
501 at startup and reattach time, so they must be reached  via
502 the default screenrc files to have an effect.
503 @end deffn
505 @node Colon,  , Source, Customization
506 @section Colon
507 Customization can also be done online, with this command:
509 @kindex :
510 @deffn Command colon
511 (@kbd{C-a :})@* 
512 Allows you to enter @file{.screenrc} command lines.  Useful for
513 on-the-fly modification of key bindings, specific window creation and
514 changing settings.  Note that the @code{set} keyword no longer exists,
515 as of version 3.3.  Change default settings with commands starting with
516 @samp{def}.  You might think of this as the @code{ex} command mode of
517 @code{screen}, with @code{copy} as its @code{vi} command mode
518 (@pxref{Copy and Paste}).
519 @end deffn
521 @node Commands, New Window, Customization, Top
522 @chapter Commands
524 A command in @code{screen} can either be bound to a key, invoked from a
525 screenrc file, or called from the @code{colon} prompt
526 (@pxref{Customization}).  As of version 3.3, all commands can be bound
527 to keys, although some may be less useful than others.
528 For a number of real life working examples of the most important
529 commands see the files @file{etc/screenrc} and @file{etc/etcscreenrc}
530 of your screen distribution.
532 In this manual, a command definition looks like this:
534 @table @asis
535 @item -- Command: command [-n] ARG1 [ARG2] @dots{}
536 (@var{keybindings})@*
537 This command does something, but I can't remember what.
538 @end table
540 An argument in square brackets (@samp{[]}) is optional.  Many commands
541 take an argument of @samp{on} or @samp{off}, which is indicated as
542 @var{state} in the definition.
544 @menu
545 * Default Key Bindings::        @code{screen} keyboard commands.
546 * Command Summary::             List of all commands.
547 @end menu
549 @node Default Key Bindings, Command Summary,  , Commands
550 @section Default Key Bindings
552 As mentioned previously, each keyboard command consists of a
553 @kbd{C-a} followed by one other character.  For your convenience, all
554 commands that are bound to lower-case letters are also bound to their
555 control character counterparts (with the exception of @kbd{C-a a}; see
556 below).  Thus, both @kbd{C-a c} and @kbd{C-a C-c} can be used to create
557 a window.
559 The following table shows the default key bindings:
561 @table @asis
562 @item @kbd{C-a '}
563 (select)@*
564 Prompt for a window identifier and switch.
565 @xref{Selecting}.
567 @item @kbd{C-a "}
568 (windowlist -b)@*
569 Present a list of all windows for selection.
570 @xref{Selecting}.
572 @item @kbd{C-a 0@dots{}9, -}
573 (select 0@dots{}select 9, select -)@*
574 Switch to window number 0@dots{}9, or the blank window.
575 @xref{Selecting}.
577 @item @kbd{C-a @key{Tab}}
578 (focus)@*
579 Switch the input focus to the next region.  @xref{Regions}.
581 @item @kbd{C-a C-a}
582 (other)@*
583 Toggle to the window displayed previously.  If this window does no 
584 longer exist, @code{other} has the same effect as @code{next}.
585 @xref{Selecting}.
587 @item @kbd{C-a a}
588 (meta)@*
589 Send the command character (C-a) to window. See @code{escape} command.
590 @xref{Command Character}. 
592 @item @kbd{C-a A}
593 (title)@*
594 Allow the user to enter a title for the current window.
595 @xref{Naming Windows}.
597 @item @kbd{C-a b}
598 @itemx @kbd{C-a C-b}
599 (break)@*
600 Send a break to the tty.
601 @xref{Break}.
603 @item @kbd{C-a B}
604 (pow_break)@*
605 Close and reopen the tty-line.
606 @xref{Break}.
608 @item @kbd{C-a c}
609 @itemx @kbd{C-a C-c}
610 (screen)@*
611 Create a new window with a shell and switch to that window.
612 @xref{Screen Command}.
614 @item @kbd{C-a C}
615 (clear)@*
616 Clear the screen.  @xref{Clear}.
618 @item @kbd{C-a d}
619 @itemx @kbd{C-a C-d}
620 (detach)@*
621 Detach @code{screen} from this terminal.  @xref{Detach}.
623 @item @kbd{C-a D D}
624 (pow_detach)@*
625 Detach and logout.  @xref{Power Detach}.
627 @item @kbd{C-a f}
628 @itemx @kbd{C-a C-f}
629 (flow)@*
630 Cycle flow among @samp{on}, @samp{off} or @samp{auto}.  @xref{Flow}.
632 @item @kbd{C-a F}
633 (fit)@*
634 Resize the window to the current region size.  @xref{Fit}.
636 @item @kbd{C-a C-g}
637 (vbell)@*
638 Toggle visual bell mode.  @xref{Bell}.
640 @item @kbd{C-a h}
641 (hardcopy)@*
642 Write a hardcopy of the current window to the file ``hardcopy.@var{n}''.
643 @xref{Hardcopy}.
645 @item @kbd{C-a H}
646 (log)@* 
647 Toggle logging of the current window to the file ``screenlog.@var{n}''.
648 @xref{Log}.
650 @item @kbd{C-a i}
651 @itemx @kbd{C-a C-i}
652 (info)@*
653 Show info about the current window.  @xref{Info}.
655 @item @kbd{C-a k}
656 @itemx @kbd{C-a C-k}
657 (kill)@*
658 Destroy the current window.  @xref{Kill}.
660 @item @kbd{C-a l}
661 @itemx @kbd{C-a C-l}
662 (redisplay)@*
663 Fully refresh the current window.  @xref{Redisplay}.
665 @item @kbd{C-a L}
666 (login)@*
667 Toggle the current window's login state.  @xref{Login}.
669 @item @kbd{C-a m}
670 @itemx @kbd{C-a C-m}
671 (lastmsg)@*
672 Repeat the last message displayed in the message line.
673 @xref{Last Message}.
675 @item @kbd{C-a M}
676 (monitor)
677 Toggle monitoring of the current window.  @xref{Monitor}.
679 @item @kbd{C-a @key{SPC}}
680 @itemx @kbd{C-a n}
681 @itemx @kbd{C-a C-n}
682 (next)@*
683 Switch to the next window.  @xref{Selecting}.
685 @item @kbd{C-a N}
686 (number)@*
687 Show the number (and title) of the current window.  @xref{Number}.
689 @item @kbd{C-a p}
690 @itemx @kbd{C-a C-p}
691 @itemx @kbd{C-a C-h}
692 @itemx @kbd{C-a @key{BackSpace}}
693 (prev)@*
694 Switch to the previous window (opposite of @kbd{C-a n}).
695 @xref{Selecting}.
697 @item @kbd{C-a q}
698 @itemx @kbd{C-a C-q}
699 (xon)@*
700 Send a ^Q (ASCII XON) to the current window.  @xref{XON/XOFF}.
702 @item @kbd{C-a Q}
703 (only)@*
704 Delete all regions but the current one.  @xref{Regions}.
706 @item @kbd{C-a r}
707 @itemx @kbd{C-a C-r}
708 (wrap)@*
709 Toggle the current window's line-wrap setting (turn the current window's
710 automatic margins on or off).  @xref{Wrap}.
712 @item @kbd{C-a s}
713 @itemx @kbd{C-a C-s}
714 (xoff)@*
715 Send a ^S (ASCII XOFF) to the current window.  @xref{XON/XOFF}.
717 @item @kbd{C-a S}
718 (split)@*
719 Split the current region horizontally into two new ones.  @xref{Regions}.
721 @item @kbd{C-a t}
722 @itemx @kbd{C-a C-t}
723 (time)@*
724 Show the load average and xref.  @xref{Time}.
726 @item @kbd{C-a v}
727 (version)@*
728 Display the version and compilation date.  @xref{Version}.
730 @item @kbd{C-a C-v}
731 (digraph)@*
732 Enter digraph.  @xref{Digraph}.
734 @item @kbd{C-a w}
735 @itemx @kbd{C-a C-w}
736 (windows)@*
737 Show a list of active windows.  @xref{Windows}.
739 @item @kbd{C-a W}
740 (width)@*
741 Toggle between 80 and 132 columns.  @xref{Window Size}.
743 @item @kbd{C-a x}
744 @itemx @kbd{C-a C-x}
745 (lockscreen)@*
746 Lock your terminal.  @xref{Lock}.
748 @item @kbd{C-a X}
749 (remove)@*
750 Kill the current region.  @xref{Regions}.
752 @item @kbd{C-a z}
753 @itemx @kbd{C-a C-z}
754 (suspend)@*
755 Suspend @code{screen}.  @xref{Suspend}.
757 @item @kbd{C-a Z}
758 (reset)@*
759 Reset the virtual terminal to its ``power-on'' values.  
760 @xref{Reset}.
762 @item @kbd{C-a .}
763 (dumptermcap)@*
764 Write out a @file{.termcap} file.  @xref{Dump Termcap}.
766 @item @kbd{C-a ?}
767 (help)@*
768 Show key bindings.  @xref{Help}.
770 @item @kbd{C-a C-\}
771 (quit)@*
772 Kill all windows and terminate @code{screen}.  @xref{Quit}.
774 @item @kbd{C-a :}
775 (colon)@*
776 Enter a command line.  @xref{Colon}.
778 @item @kbd{C-a [}
779 @itemx @kbd{C-a C-[}
780 @itemx @kbd{C-a @key{ESC}}
781 (copy)@*
782 Enter copy/scrollback mode.  @xref{Copy}.
784 @item @kbd{C-a ]}
785 @itemx @kbd{C-a C-]}
786 (paste .)@*
787 Write the contents of the paste buffer to the stdin queue of the
788 current window.  @xref{Paste}.
790 @item @kbd{C-a @{}
791 @itemx @kbd{C-a @}}
792 (history)@*
793 Copy and paste a previous (command) line.  @xref{History}.
795 @item @kbd{C-a >}
796 (writebuf)@*
797 Write the paste buffer out to the screen-exchange file.
798 @xref{Screen Exchange}.
800 @item @kbd{C-a <}
801 (readbuf)@*
802 Read the screen-exchange file into the paste buffer.
803 @xref{Screen Exchange}.
805 @item @kbd{C-a =}
806 (removebuf)@*
807 Delete the screen-exchange file.  @xref{Screen Exchange}.
809 @item @kbd{C-a _}
810 (silence)@*
811 Start/stop monitoring the current window for inactivity. @xref{Silence}.
813 @item @kbd{C-a |}
814 (split -v)@*
815 Split the current region vertically into two new ones.  @xref{Regions}.
817 @item @kbd{C-a ,}
818 (license)@*
819 Show the copyright page.  @xref{License}.
821 @item @kbd{C-a *}
822 (displays)@*
823 Show the listing of attached displays.  @xref{Displays}.
824 @end table
826 @node Command Summary,  , Default Key Bindings, Commands
827 @section Command Summary
828 @cindex command summary 
830 @table @code
831 @item acladd @var{usernames}
832 Allow other users in this session.  @xref{Multiuser Session}.
833 @item aclchg @var{usernames permbits list}
834 Change a user's permissions.  @xref{Multiuser Session}.
835 @item acldel @var{username}
836 Disallow other user in this session.  @xref{Multiuser Session}.
837 @item aclgrp @var{usrname} [@var{groupname}]
838 Inherit permissions granted to a group leader. @xref{Multiuser Session}.
839 @item aclumask [@var{users}]+/-@var{bits} ...
840 Predefine access to new windows. @xref{Umask}.
841 @item activity @var{message}
842 Set the activity notification message.  @xref{Monitor}.
843 @item addacl @var{usernames}
844 Synonym to @code{acladd}.  @xref{Multiuser Session}.
845 @item allpartial @var{state}
846 Set all windows to partial refresh.  @xref{Redisplay}.
847 @item altscreen @var{state}
848 Enables support for the "alternate screen" terminal capability.  @xref{Redisplay}.
849 @item at [@var{ident}][@kbd{#}@var{|}@kbd{*}@var{|}@kbd{%}] @var{command} [@var{args}]
850 Execute a command at other displays or windows.  @xref{At}.
851 @item attrcolor @var{attrib} [@var{attribute/color-modifier}]
852 Map attributes to colors.  @xref{Attrcolor}.
853 @item autodetach @var{state}
854 Automatically detach the session on SIGHUP.  @xref{Detach}.
855 @item autonuke @var{state}
856 Enable a clear screen to discard unwritten output.  @xref{Autonuke}.
857 @item backtick @var{id} @var{lifespan} @var{autorefresh} @var{command} [@var{args}]
858 Define a command for the backtick string escape.  @xref{Backtick}.
859 @item bce [@var{state}]
860 Change background color erase.  @xref{Character Processing}.
861 @item bell_msg [@var{message}]
862 Set the bell notification message.  @xref{Bell}.
863 @item bind [-c @var{class}] @var{key} [@var{command} [@var{args}]]
864 Bind a command to a key.  @xref{Bind}.
865 @item bindkey [@var{opts}] [@var{string} [@var{cmd args}]]
866 Bind a string to a series of keystrokes. @xref{Bindkey}.
867 @item blanker
868 Blank the screen.  @xref{Screen Saver}.
869 @item blankerprg
870 Define a blanker program.  @xref{Screen Saver}.
871 @item break [@var{duration}]
872 Send a break signal to the current window.  @xref{Break}.
873 @item breaktype [@var{tcsendbreak} | @var{TCSBRK} | @var{TIOCSBRK}]
874 Specify how to generate breaks.  @xref{Break}.
875 @item bufferfile [@var{exchange-file}]
876 Select a file for screen-exchange.  @xref{Screen Exchange}.
877 @item c1 [@var{state}]
878 Change c1 code processing.  @xref{Character Processing}.
879 @item caption @var{mode} [@var{string}]
880 Change caption mode and string.  @xref{Regions}.
881 @item chacl @var{usernames permbits list}
882 Synonym to @code{aclchg}. @xref{Multiuser Session}.
883 @item charset @var{set}
884 Change character set slot designation.  @xref{Character Processing}.
885 @item chdir [@var{directory}]
886 Change the current directory for future windows.  @xref{Chdir}.
887 @item clear
888 Clear the window screen.  @xref{Clear}.
889 @item colon
890 Enter a @code{screen} command.  @xref{Colon}.
891 @item command [-c @var{class}]
892 Simulate the screen escape key.  @xref{Command Character}.
893 @item compacthist [@var{state}]
894 Selects compaction of trailing empty lines.  @xref{Scrollback}.
895 @item console [@var{state}]
896 Grab or ungrab console output.  @xref{Console}.
897 @item copy
898 Enter copy mode.  @xref{Copy}.
899 @item copy_reg [@var{key}]
900 Removed. Use @code{paste} instead.  @xref{Registers}.
901 @item crlf @var{state}
902 Select line break behavior for copying.  @xref{Line Termination}.
903 @item debug @var{state}
904 Suppress/allow debugging output.  @xref{Debug}.
905 @item defautonuke @var{state}
906 Select default autonuke behavior.  @xref{Autonuke}.
907 @item defbce @var{state}
908 Select background color erase.  @xref{Character Processing}.
909 @item defbreaktype [@var{tcsendbreak} | @var{TCSBRK} | @var{TIOCSBRK}]
910 Specify the default for generating breaks.  @xref{Break}.
911 @item defc1 @var{state}
912 Select default c1 processing behavior.  @xref{Character Processing}.
913 @item defcharset [@var{set}]
914 Change defaul character set slot designation.  @xref{Character Processing}.
915 @item defencoding @var{enc}
916 Select default window encoding.  @xref{Character Processing}.
917 @item defescape @var{xy}
918 Set the default command and @code{meta} characters.  @xref{Command Character}.
919 @item defflow @var{fstate}
920 Select default flow control behavior.  @xref{Flow}.
921 @item defgr @var{state}
922 Select default GR processing behavior.  @xref{Character Processing}.
923 @item defhstatus [@var{status}]
924 Select default window hardstatus line.  @xref{Hardstatus}.
925 @item deflog @var{state}
926 Select default window logging behavior.  @xref{Log}.
927 @item deflogin @var{state}
928 Select default utmp logging behavior.  @xref{Login}.
929 @item defmode @var{mode}
930 Select default file mode for ptys.  @xref{Mode}.
931 @item defmonitor @var{state}
932 Select default activity monitoring behavior.  @xref{Monitor}.
933 @item defmousetrack @var{on}|@var{off}
934 Select the default mouse tracking behavior.  @xref{Mousetrack}.
935 @item defnonblock @var{state}|@var{numsecs}
936 Select default nonblock mode.  @xref{Nonblock}.
937 @item defobuflimit @var{limit}
938 Select default output buffer limit.  @xref{Obuflimit}.
939 @item defscrollback @var{num}
940 Set default lines of scrollback.  @xref{Scrollback}.
941 @item defshell @var{command}
942 Set the default program for new windows.  @xref{Shell}.
943 @item defsilence @var{state}
944 Select default idle monitoring behavior.  @xref{Silence}.
945 @item defslowpaste @var{msec}
946 Select the default inter-character timeout when pasting.  @xref{Paste}.
947 @item defutf8 @var{state}
948 Select default character encoding.  @xref{Character Processing}.
949 @item defwrap @var{state}
950 Set default line-wrapping behavior.  @xref{Wrap}.
951 @item defwritelock @var{on|off|auto}
952 Set default writelock behavior.  @xref{Multiuser Session}.
953 @item defzombie [@var{keys}]
954 Keep dead windows.  @xref{Zombie}.
955 @item detach [-h]
956 Disconnect @code{screen} from the terminal.  @xref{Detach}.
957 @item digraph [@var{preset} [@var{unicode-value}]]
958 Enter a digraph sequence.  @xref{Digraph}.
959 @item dinfo
960 Display terminal information.  @xref{Info}.
961 @item displays
962 List currently active user interfaces. @xref{Displays}.
963 @item dumptermcap
964 Write the window's termcap entry to a file.  @xref{Dump Termcap}.
965 @item echo [-n] @var{message}
966 Display a message on startup.  @xref{Startup}.
967 @item encoding @var{enc} [@var{denc}]
968 Set the encoding of a window.  @xref{Character Processing}.
969 @item escape @var{xy}
970 Set the command and @code{meta} characters.  @xref{Command Character}.
971 @item eval @var{command1} [@var{command2} ...]
972 Parse and execute each argument. @xref{Eval}.
973 @item exec [[@var{fdpat}] @var{command} [@var{args} ...]]
974 Run a subprocess (filter).  @xref{Exec}.
975 @item fit
976 Change window size to current display size.  @xref{Window Size}.
977 @item flow [@var{fstate}]
978 Set flow control behavior.  @xref{Flow}.
979 @item focus
980 Move focus to next region.  @xref{Regions}.
981 @item focusminsize
982 Force the current region to a certain size.  @xref{Focusminsize}.
983 @item gr [@var{state}]
984 Change GR charset processing.  @xref{Character Processing}.
985 @item group [@var{grouptitle}]
986 Change or show the group the current window belongs to.  @xref{Window Groups}.
987 @item hardcopy [-h] [@var{file}]
988 Write out the contents of the current window.  @xref{Hardcopy}.
989 @item hardcopy_append @var{state}
990 Append to hardcopy files.  @xref{Hardcopy}.
991 @item hardcopydir @var{directory}
992 Place, where to dump hardcopy files.  @xref{Hardcopy}.
993 @item hardstatus [@var{state}]
994 Use the hardware status line.  @xref{Hardware Status Line}.
995 @item height [@var{lines} [@var{cols}]]
996 Set display height.  @xref{Window Size}.
997 @item help [-c @var{class}]
998 Display current key bindings.  @xref{Help}.
999 @item history
1000 Find previous command beginning @dots{}.  @xref{History}.
1001 @item hstatus @var{status}
1002 Change the window's hardstatus line.  @xref{Hardstatus}.
1003 @item idle [@var{timeout} [@var{cmd} @var{args}]]
1004 Define a screen saver command.  @xref{Screen Saver}.
1005 @item ignorecase [@var{state}]
1006 Ignore character case in searches.  @xref{Searching}.
1007 @item info
1008 Display window settings.  @xref{Info}.
1009 @item ins_reg [@var{key}]
1010 Removed, use @code{paste} instead.  @xref{Registers}.
1011 @item kill
1012 Destroy the current window.  @xref{Kill}.
1013 @item lastmsg
1014 Redisplay the last message.  @xref{Last Message}.
1015 @item layout new [@var{title}]
1016 Create a layout.  @xref{Layout}.
1017 @item layout remove [@var{n}|@var{title}]
1018 Delete a layout.  @xref{Layout}.
1019 @item layout next
1020 Select the next layout.  @xref{Layout}.
1021 @item layout prev
1022 Select the previous layout.  @xref{Layout}.
1023 @item layout select [@var{n}|@var{title}]
1024 Jump to a layout.  @xref{Layout}.
1025 @item layout show
1026 List the available layouts.  @xref{Layout}.
1027 @item layout title [@var{title}]
1028 Show or set the title of a layout.  @xref{Layout}.
1029 @item layout number [@var{n}]
1030 Show or set the number of a layout.  @xref{Layout}.
1031 @item layout attach [@var{title}|:last]
1032 Show or set which layout to reattach to.  @xref{Layout}.
1033 @item layout save [@var{n}|@var{title}]
1034 Remember the organization of a layout.  @xref{Layout}.
1035 @item layout autosave [@var{on}|@var{off}]
1036 Show or set the status of layout saving.  @xref{Layout}.
1037 @item license
1038 Display licensing information.  @xref{Startup}.
1039 @item lockscreen
1040 Lock the controlling terminal.  @xref{Lock}.
1041 @item log [@var{state}]
1042 Log all output in the current window.  @xref{Log}.
1043 @item logfile @var{filename}
1044 Place where to collect logfiles.  @xref{Log}.
1045 @item login [@var{state}]
1046 Log the window in @file{/etc/utmp}.  @xref{Login}.
1047 @item logtstamp [@var{state}]
1048 Configure logfile time-stamps.  @xref{Log}.
1049 @item mapdefault
1050 Use only the default mapping table for the next keystroke.  @xref{Bindkey Control}.
1051 @item mapnotnext
1052 Don't try to do keymapping on the next keystroke.  @xref{Bindkey Control}.
1053 @item maptimeout @var{n}
1054 Set the inter-character timeout used for keymapping. @xref{Bindkey Control}.
1055 @item markkeys @var{string}
1056 Rebind keys in copy mode.  @xref{Copy Mode Keys}.
1057 @item maxwin @var{n}
1058 Set the maximum window number. @xref{Maxwin}.
1059 @item meta
1060 Insert the command character.  @xref{Command Character}.
1061 @item monitor [@var{state}]
1062 Monitor activity in window.  @xref{Monitor}.
1063 @item mousetrack [@var{on}|@var{off}]
1064 Enable selecting splitted regions with mouse clicks.  @xref{Mousetrack}.
1065 @item msgminwait @var{sec}
1066 Set minimum message wait.  @xref{Message Wait}.
1067 @item msgwait @var{sec}
1068 Set default message wait.  @xref{Message Wait}.
1069 @item multiuser @var{state}
1070 Go into single or multi user mode. @xref{Multiuser Session}.
1071 @item nethack @var{state}
1072 Use @code{nethack}-like error messages.  @xref{Nethack}.
1073 @item next
1074 Switch to the next window.  @xref{Selecting}.
1075 @item nonblock [@var{state}|@var{numsecs}]
1076 Disable flow control to the current display. @xref{Nonblock}.|@var{numsecs}]
1077 @item number [@var{n}]
1078 Change/display the current window's number.  @xref{Number}.
1079 @item obuflimit [@var{limit}]
1080 Select output buffer limit.  @xref{Obuflimit}.
1081 @item only
1082 Kill all other regions.  @xref{Regions}.
1083 @item other
1084 Switch to the window you were in last.  @xref{Selecting}.
1085 @item partial @var{state}
1086 Set window to partial refresh.  @xref{Redisplay}.
1087 @item password [@var{crypted_pw}]
1088 Set reattach password.  @xref{Detach}.
1089 @item paste [@var{src_regs} [@var{dest_reg}]]
1090 Paste contents of paste buffer or registers somewhere.  @xref{Paste}.
1091 @item pastefont [@var{state}]
1092 Include font information in the paste buffer.  @xref{Paste}.
1093 @item pow_break
1094 Close and Reopen the window's terminal.  @xref{Break}.
1095 @item pow_detach
1096 Detach and hang up.  @xref{Power Detach}.
1097 @item pow_detach_msg [@var{message}]
1098 Set message displayed on @code{pow_detach}.  @xref{Power Detach}.
1099 @item prev
1100 Switch to the previous window.  @xref{Selecting}.
1101 @item printcmd [@var{cmd}]
1102 Set a command for VT100 printer port emulation.  @xref{Printcmd}.
1103 @item process [@var{key}]
1104 Treat a register as input to @code{screen}.  @xref{Registers}.
1105 @item quit
1106 Kill all windows and exit.  @xref{Quit}.
1107 @item readbuf [-e @var{encoding}] [@var{filename}]
1108 Read the paste buffer from the screen-exchange file.  @xref{Screen Exchange}.
1109 @item readreg [-e @var{encoding}] [@var{reg} [@var{file}]]
1110 Load a register from paste buffer or file.  @xref{Registers}.
1111 @item redisplay
1112 Redisplay the current window.  @xref{Redisplay}.
1113 @item register [-e @var{encoding}] @var{key} @var{string}
1114 Store a string to a register.  @xref{Registers}.
1115 @item remove
1116 Kill current region.  @xref{Regions}.
1117 @item removebuf
1118 Delete the screen-exchange file.  @xref{Screen Exchange}.
1119 @item rendition bell | monitor | so @var{attr} [@var{color}]
1120 Change text attributes in caption for flagged windows.  @xref{Rendition}.
1121 @item reset
1122 Reset the terminal settings for the window.  @xref{Reset}.
1123 @item resize [(+/-)lines]
1124 Grow or shrink a region
1125 @item screen [@var{opts}] [@var{n}] [@var{cmd} [@var{args}] | //group]
1126 Create a new window.  @xref{Screen Command}.
1127 @item scrollback @var{num}
1128 Set size of scrollback buffer.  @xref{Scrollback}.
1129 @item select [@var{n}|-|.]
1130 Switch to a specified window.  @xref{Selecting}.
1131 @item sessionname [@var{name}]
1132 Name this session.  @xref{Session Name}.
1133 @item setenv [@var{var} [@var{string}]]
1134 Set an environment variable for new windows.  @xref{Setenv}.
1135 @item setsid @var{state}
1136 Controll process group creation for windows.  @xref{Setsid}.
1137 @item shell @var{command}
1138 Set the default program for new windows.  @xref{Shell}.
1139 @item shelltitle @var{title}
1140 Set the default name for new windows.  @xref{Shell}.
1141 @item silence [@var{state}|@var{seconds}]
1142 Monitor a window for inactivity.  @xref{Silence}.
1143 @item silencewait @var{seconds}
1144 Default timeout to trigger an inactivity notify.  @xref{Silence}.
1145 @item sleep @var{num}
1146 Pause during startup.  @xref{Startup}.
1147 @item slowpaste @var{msec}
1148 Slow down pasting in windows.  @xref{Paste}.
1149 @item source @var{file}
1150 Run commands from a file.  @xref{Source}.
1151 @item sorendition [@var{attr} [@var{color}]]
1152 Deprecated. Use @code{rendition so} instead. @xref{Rendition}.
1153 @item split
1154 Split region into two parts.  @xref{Regions}.
1155 @item startup_message @var{state}
1156 Display copyright notice on startup.  @xref{Startup}.
1157 @item stuff @var{string}
1158 Stuff a string in the input buffer of a window.  @xref{Paste}.
1159 @item su [@var{username} [@var{password} [@var{password2}]]]
1160 Identify a user. @xref{Multiuser Session}.
1161 @item suspend
1162 Put session in background.  @xref{Suspend}.
1163 @item term @var{term}
1164 Set @code{$TERM} for new windows.  @xref{Term}.
1165 @item termcap @var{term} @var{terminal-tweaks} [@var{window-tweaks}]
1166 Tweak termcap entries for best performance.  @xref{Termcap Syntax}.
1167 @item terminfo @var{term} @var{terminal-tweaks} [@var{window-tweaks}]
1168 Ditto, for terminfo systems.  @xref{Termcap Syntax}.
1169 @item termcapinfo @var{term} @var{terminal-tweaks} [@var{window-tweaks}]
1170 Ditto, for both systems.  @xref{Termcap Syntax}.
1171 @item time [@var{string}]
1172 Display time and load average.  @xref{Time}.
1173 @item title [@var{windowtitle}]
1174 Set the name of the current window.  @xref{Title Command}.
1175 @item umask [@var{users}]+/-@var{bits} ...
1176 Synonym to @code{aclumask}. @xref{Umask}.
1177 @item unbindall
1178 Unset all keybindings. @xref{Bind}.
1179 @item unsetenv @var{var}
1180 Unset environment variable for new windows.  @xref{Setenv}.
1181 @item utf8 [@var{state} [@var{dstate}]]
1182 Select character encoding of the current window.  @xref{Character Processing}.
1183 @item vbell [@var{state}]
1184 Use visual bell.  @xref{Bell}.
1185 @item vbell_msg [@var{message}]
1186 Set vbell message.  @xref{Bell}.
1187 @item vbellwait @var{sec}
1188 Set delay for vbell message.  @xref{Bell}.
1189 @item version
1190 Display @code{screen} version.  @xref{Version}.
1191 @item wall @var{message}
1192 Write a message to all displays.  @xref{Multiuser Session}.
1193 @item width [@var{cols} [@var{lines}]]
1194 Set the width of the window.  @xref{Window Size}.
1195 @item windowlist [[-b] [-m] [-g]] | string [@var{string}] | title [@var{title}]
1196 Present a list of all windows for selection.  @xref{Windowlist}.
1197 @item windows
1198 List active windows.  @xref{Windows}.
1199 @item wrap [@var{state}]
1200 Control line-wrap behavior.  @xref{Wrap}.
1201 @item writebuf [-e @var{encoding}] [@var{filename}]
1202 Write paste buffer to screen-exchange file.  @xref{Screen Exchange}.
1203 @item writelock @var{on}|@var{off}|@var{auto}
1204 Grant exclusive write permission.  @xref{Multiuser Session}.
1205 @item xoff
1206 Send an XOFF character.  @xref{XON/XOFF}.
1207 @item xon
1208 Send an XON character.  @xref{XON/XOFF}.
1209 @item zmodem [off|auto|catch|pass]
1210 Define how screen treats zmodem requests.  @xref{Zmodem}.
1211 @item zombie [@var{keys} [onerror] ]
1212 Keep dead windows.  @xref{Zombie}.
1213 @end table
1215 @node New Window, Selecting, Commands, Top
1216 @chapter New Window
1218 This section describes the commands for creating a new window for
1219 running programs.  When a new window is created, the first available
1220 number is assigned to it.
1221 The number of windows is limited at compile-time by the MAXWIN
1222 configuration parameter (which defaults to 40).
1224 @menu
1225 * Chdir::                       Change the working directory for new windows.
1226 * Screen Command::              Create a new window.
1227 * Setenv::                      Set environment variables for new windows.
1228 * Shell::                       Parameters for shell windows.
1229 * Term::                        Set the terminal type for new windows.
1230 * Window Types::                Creating different types of windows.
1231 * Window Groups::               Grouping windows together
1232 @end menu
1234 @node Chdir, Screen Command,  , New Window
1235 @section Chdir
1236 @deffn Command chdir [directory]
1237 (none)@*
1238 Change the current directory of @code{screen} to the specified directory
1239 or, if called without an argument, to your home directory (the value of
1240 the environment variable @code{$HOME}).  All windows that are created by means
1241 of the @code{screen} command from within @file{.screenrc} or by means of
1242 @kbd{C-a : screen @dots{}} or @kbd{C-a c} use this as their default
1243 directory.  Without a @code{chdir} command, this would be the directory
1244 from which @code{screen} was invoked.  Hardcopy and log files are always
1245 written to the @emph{window's} default directory, @emph{not} the current
1246 directory of the process running in the window.  You can use this
1247 command multiple times in your @file{.screenrc} to start various windows
1248 in different default directories, but the last @code{chdir} value will
1249 affect all the windows you create interactively.
1250 @end deffn
1252 @node Screen Command, Setenv, Chdir, New Window
1253 @section Screen Command
1254 @kindex c
1255 @kindex C-c
1256 @deffn Command screen [opts] [n] [cmd [args] @var{| //group}]
1257 (@kbd{C-a c}, @kbd{C-a C-c})@*
1258 Establish a new window.  The flow-control options (@samp{-f}, @samp{-fn}
1259 and @samp{-fa}), title option (@samp{-t}), login options
1260 (@samp{-l} and @samp{-ln}) , terminal type option (@samp{-T @var{term}}),
1261 the all-capability-flag (@samp{-a}) and scrollback option 
1262 (@samp{-h @var{num}}) may be specified with each command. 
1263 The option (@samp{-M}) turns monitoring on for this window.
1264 The option (@samp{-L}) turns output logging on for this window.
1265 If an optional number @var{n} in the range 0@dots{}MAXWIN-1 is given,
1266 the window number @var{n} is assigned to the newly created window (or,
1267 if this number is already in-use, the next available number).  If a
1268 command is specified after @code{screen}, this command (with the given
1269 arguments) is started in the window; otherwise, a shell is created.
1270 If @samp{//group} is supplied, a container-type window is created in
1271 which other windows may be created inside it. @xref{Window Groups}.
1273 Screen has built in some functionality of @samp{cu} and @samp{telnet}.
1274 @xref{Window Types}.
1275 @end deffn
1277 Thus, if your @file{.screenrc} contains the lines
1279 @example
1280 # example for .screenrc:
1281 screen 1
1282 screen -fn -t foobar 2 -L telnet foobar
1283 @end example
1285 @noindent
1286 @code{screen} creates a shell window (in window #1) and a window with a
1287 TELNET connection to the machine foobar (with no flow-control using the
1288 title @samp{foobar} in window #2) and will write a logfile @samp{screenlog.2}
1289 of the telnet session.  If you do not include any
1290 @code{screen} commands in your @file{.screenrc} file, then @code{screen}
1291 defaults to creating a single shell window, number zero.  When the
1292 initialization is completed, @code{screen} switches to the last window
1293 specified in your .screenrc file or, if none, it opens default window
1296 @node Setenv, Shell, Screen Command, New Window
1297 @section Setenv
1298 @deffn Command setenv var string
1299 (none)@*
1300 Set the environment variable @var{var} to value @var{string}.
1301 If only @var{var} is specified, the user will be prompted to enter a value.
1302 If no parameters are specified, the user will be prompted for both variable
1303 and value. The environment is inherited by all subsequently forked shells.
1304 @end deffn
1306 @deffn Command unsetenv var
1307 (none)@*
1308 Unset an environment variable.
1309 @end deffn
1311 @node Shell, Term, Setenv, New Window
1312 @section Shell
1313 @deffn Command shell command
1314 @deffnx Command defshell command
1315 (none)@*
1316 Set the command to be used to create a new shell.  This overrides the
1317 value of the environment variable @code{$SHELL}.  This is useful if
1318 you'd like to run a tty-enhancer which is expecting to execute the
1319 program specified in @code{$SHELL}.  If the command begins with
1320 a @samp{-} character, the shell will be started as a login-shell.
1322 @code{defshell} is currently a synonym to the @code{shell} command.
1323 @end deffn
1325 @deffn Command shelltitle title
1326 (none)@*
1327 Set the title for all shells created during startup or by the C-a C-c
1328 command.  @xref{Naming Windows}, for details about what titles are.
1329 @end deffn
1331 @node Term, Window Types , Shell, New Window
1332 @section Term
1333 @deffn Command term term
1334 (none)@*
1335 In each window @code{screen} opens, it sets the @code{$TERM}
1336 variable to @code{screen} by default, unless no description for
1337 @code{screen} is installed in the local termcap or terminfo data base.
1338 In that case it pretends that the terminal emulator is @samp{vt100}.
1339 This won't do much harm, as @code{screen} is VT100/ANSI compatible.  The
1340 use of the @code{term} command is discouraged for non-default purpose.
1341 That is, one may want to specify special @code{$TERM} settings (e.g. vt100) for
1342 the next @code{screen rlogin othermachine} command. Use the command
1343 @code{screen -T vt100 rlogin othermachine} rather than setting
1344 and resetting the default.
1345 @end deffn
1347 @node Window Types, Window Groups, Term, New Window
1348 @section Window Types
1349 @cindex window types
1350 Screen provides three different window types. New windows are created
1351 with @code{screen}'s @samp{screen} command (@pxref{Screen Command}).
1352 The first parameter to the @samp{screen} command defines which
1353 type of window is created. The different window types are all
1354 special cases of the normal type. They have been added in order
1355 to allow @code{screen} to be used efficiently as a console
1356 with 100 or more windows.
1357 @itemize @bullet
1358 @item
1359 The normal window contains a shell (default, if no parameter is given)
1360 or any other system command that could be executed from a shell.
1361 (e.g. @samp{slogin}, etc...).
1363 @item
1364 If a tty (character special device) name (e.g. @samp{/dev/ttya})
1365 is specified as the first parameter, then the window is directly
1366 connected to this device.
1367 This window type is similar to @samp{screen cu -l /dev/ttya}.
1368 Read and write access is required on the device node,
1369 an exclusive open is attempted on the node to mark the connection line
1370 as busy.
1371 An optional parameter is allowed consisting of a comma separated
1372 list of flags in the notation used by @samp{stty(1)}:
1373 @table @code
1374 @item <baud_rate>
1375 Usually 300, 1200, 9600 or 19200. This affects transmission as well as
1376 receive speed.
1377 @item cs8 or cs7
1378 Specify the transmission of eight (or seven) bits per byte.
1379 @item ixon or -ixon
1380 Enables (or disables) software flow-control (CTRL-S/CTRL-Q) for sending
1381 data.
1382 @item ixoff or -ixoff
1383 Enables (or disables) software flow-control for receiving data.
1384 @item istrip or -istrip
1385 Clear (or keep) the eight bit in each received byte.
1386 @end table
1388 You may want to specify as many of these options as applicable.
1389 Unspecified options cause the terminal driver to make up the parameter
1390 values of the connection. These values are system-dependent and may be
1391 in defaults or values saved from a previous connection.
1393 For tty windows, the @code{info} command shows some of the modem
1394 control lines in the status line.
1395 These may include @samp{RTS}, @samp{CTS}, @samp{DTR}, @samp{CD} and
1396 more. This depends rather on on the available @code{ioctl()}'s and system
1397 header files than on the physical capabilities of the serial board. 
1398 The name of a logical low (inactive) signal is preceded by an 
1399 exclamation mark (@samp{!}), otherwise the signal is logical high (active).
1400 Unsupported but shown signals are usually shown low.
1401 When the @code{CLOCAL} status bit is true, the whole set of modem signals is 
1402 placed inside curly braces (@samp{@{} and @samp{@}}).
1403 When the @code{CRTSCTS} or @code{TIOCSOFTCAR} bit is true, the signals 
1404 @samp{CTS} or @samp{CD} are shown in parenthesis, respectively.
1406 For tty windows, the command @code{break} causes the Data transmission
1407 line (TxD) to go low for a specified period of time. This is expected
1408 to be interpreted as break signal on the other side.
1409 No data is sent and no modem control line is changed when a
1410 @code{break} is issued.
1412 @item
1413 If the first parameter is @code{//telnet}, the second parameter is
1414 expected to be a host name, and an optional third parameter may specify
1415 a TCP port number (default decimal 23). Screen will connect to a
1416 server listening on the remote host and use the telnet protocol to
1417 communicate with that server.
1419 For telnet windows, the command @code{info} shows details about
1420 the connection in square brackets (@samp{[} and @samp{]}) at the end of
1421 the status line.
1422 @table @code
1423 @item b
1424 BINARY. The connection is in binary mode.
1425 @item e
1426 ECHO. Local echo is disabled.
1427 @item c
1428 SGA. The connection is in `character mode' (default: `line mode').
1429 @item t
1430 TTYPE. The terminal type has been requested by the remote host. Screen
1431 sends the name @code{screen} unless instructed otherwise (see also the
1432 command @samp{term}).
1433 @item w
1434 NAWS. The remote site is notified about window size changes.
1435 @item f
1436 LFLOW. The remote host will send flow control information.
1437 (Ignored at the moment.)
1438 @end table
1439 Additional flags for debugging are @samp{x}, @samp{t} and @samp{n}
1440 (XDISPLOC, TSPEED and NEWENV).
1442 For telnet windows, the command @code{break} sends the telnet code
1443 @code{IAC BREAK} (decimal 243) to the remote host.
1445 @end itemize
1447 @node Window Groups, , Window Types, New Window
1448 @section Window Groups
1449 @cindex window groups
1450 Screen provides a method for grouping windows together. Windows can be
1451 organized in a heirarchial fashion, resembling a tree structure. New
1452 screens are created using the @code{screen} command while new groups
1453 are created using @code{screen //group}. @xref{Screen Command}. 
1455 Once a new group is created, it will act as a container for windows
1456 and even other groups. When a group is selected, you will see the
1457 output of the @code{windowlist} command, allowing you to select a
1458 window inside. If there are no windows inside a group, use the 
1459 @code{screen} command to create one. Once inside a group, using the
1460 commands @code{next} and @code{prev} will switch between windows only
1461 in that group. Using the @code{windowlist} command will give you the
1462 opportunity to leave the group you are in. @xref{Windowlist}.
1464 @deffn Command group [grouptitle]
1465 Change or show the group the current window belongs to. Windows can
1466 be moved around between different groups by specifying the name of
1467 the destination group. Without specifying a group, the title of the
1468 current group is displayed.
1469 @end deffn
1471 Using groups in combination with layouts will help create a 
1472 multi-desktop experience. One group can be assigned for each
1473 layout made. Windows can be made, split, and organized within each
1474 group as desired. Afterwhich, switching between groups can be as easy
1475 as switching layouts.
1477 @node Selecting, Session Management, New Window, Top
1478 @chapter Selecting a Window
1480 This section describes the commands for switching between windows in an
1481 @code{screen} session.  The windows are numbered from 0 to 9, and are created
1482 in that order by default (@pxref{New Window}).
1484 @menu
1485 * Next and Previous::           Forward or back one window.
1486 * Other Window::                Switch back and forth between two windows.
1487 * Select::                      Switch to a window (and to one after @code{kill}).
1488 * Windowlist::                  Present a list of all windows for selection.
1489 @end menu
1491 @node Next and Previous, Other Window,  , Selecting
1492 @section Moving Back and Forth
1493 @kindex SPC
1494 @kindex n
1495 @kindex C-n
1496 @deffn Command next
1497 (@kbd{C-a @key{SPC}}, @kbd{C-a n}, @kbd{C-a C-n})@*
1498 Switch to the next window.  This command can be used repeatedly to
1499 cycle through the list of windows.  (On some terminals, C-@key{SPC}
1500 generates a NUL character, so you must release the control key before
1501 pressing space.)
1502 @end deffn
1504 @kindex p
1505 @kindex C-p
1506 @kindex C-h
1507 @kindex Backspace
1508 @deffn Command prev
1509 (@kbd{C-a p}, @kbd{C-a C-p}, @kbd{C-a C-h}, @kbd{C-a @key{Backspace}})@*
1510 Switch to the previous window (the opposite of @kbd{C-a n}).
1511 @end deffn
1513 @node Other Window, Select, Next and Previous, Selecting
1514 @section Other Window
1515 @kindex C-a
1516 @deffn Command other
1517 (@kbd{C-a C-a})@*
1518 Switch to the last window displayed.  Note that this command
1519 defaults to the command character typed twice, unless overridden.
1520 For instance, if you use the option @samp{-e]x}, 
1521 this command becomes @kbd{]]} (@pxref{Command Character}).
1522 @end deffn
1524 @node Select, Windowlist, Other Window, Selecting
1525 @section Select
1526 @kindex 0@dots{}9
1527 @kindex '
1528 @deffn Command select [n @var{|-|.}]
1529 (@kbd{C-a @var{n}}, @kbd{C-a '})@*
1530 Switch to the window with the number @var{n}.
1531 If no window number is specified, you get prompted for an 
1532 identifier. This can be a window name (title) or a number.
1533 When a new window is established, the lowest available number
1534 is assigned to this window.
1535 Thus, the first window can be activated by @code{select 0}; there
1536 can be no more than 10 windows present simultaneously (unless screen is
1537 compiled with a higher MAXWIN setting).
1538 There are two special arguments, @code{select -} switches to the
1539 internal blank window and @code{select .} switches to the
1540 current window. The latter is useful if used with screen's
1541 @code{-X} option.
1543 @end deffn
1545 @node Windowlist, , Select, Selecting
1546 @section Windowlist
1547 @kindex "
1548 @deffn Command windowlist [-b] [-m] [-g]
1549 @deffnx Command windowlist string [@var{string}]
1550 @deffnx Command windowlist title [@var{title}]
1551 (@kbd{C-a "})@*
1552 Display all windows in a table for visual window selection.
1553 The desired window can be selected via the standard
1554 movement keys (@pxref{Movement}) and activated via
1555 the return key.  If screen was in a window group, screen will
1556 back out of the group and then display the windows in that
1557 group. If the @code{-b} option is given, screen will
1558 switch to the blank window before presenting the list, so
1559 that the current window is also selectable.
1560 The @code{-m} option changes the order of the windows, instead of
1561 sorting by window numbers screen uses its internal most-recently-used
1562 list. The @code{-g} option will show the windows inside any groups
1563 in that level and downwards.
1565 The table format can be changed with the string and title
1566 option, the title is displayed as table heading, while the
1567 lines are made by using the string setting.  The default
1568 setting is @samp{Num Name%=Flags} for the title and
1569 @samp{%3n %t%=%f} for the lines. See the string escapes chapter
1570 (@pxref{String Escapes}) for more codes (e.g. color settings).
1572 @end deffn
1574 @node Session Management, Regions, Selecting, Top
1575 @chapter Session Management Commands
1577 Perhaps the most useful feature of @code{screen} is the way it allows
1578 the user to move a session between terminals, by detaching and
1579 reattaching.  This also makes life easier for modem users who have to
1580 deal with unexpected loss of carrier.
1582 @menu
1583 * Detach::                      Disconnect @code{screen} from your terminal.
1584 * Power Detach::                Detach and log out.
1585 * Lock::                        Lock your terminal temporarily.
1586 * Multiuser Session::           Changing number of allowed users.
1587 * Session Name::                Rename your session for later reattachment.
1588 * Suspend::                     Suspend your session.
1589 * Quit::                        Terminate your session.
1590 @end menu
1592 @node Detach, Power Detach,  , Session Management
1593 @section Detach
1595 @deffn Command autodetach state
1596 (none)@*
1597 Sets whether @code{screen} will automatically detach upon hangup, which
1598 saves all your running programs until they are resumed with a
1599 @code{screen -r} command.  When turned off, a hangup signal will
1600 terminate @code{screen} and all the processes it contains. Autodetach is
1601 on by default.
1602 @end deffn
1604 @kindex d
1605 @kindex C-d
1606 @deffn Command detach
1607 (@kbd{C-a d}, @kbd{C-a C-d})@*
1608 Detach the @code{screen} session (disconnect it from the terminal and
1609 put it into the background).  A detached @code{screen} can be resumed by
1610 invoking @code{screen} with the @code{-r} option (@pxref{Invoking
1611 Screen}).
1612 The @code{-h} option tells screen to immediately close the connection
1613 to the terminal (@samp{hangup}).
1614 @end deffn
1616 @deffn Command password [crypted_pw]
1617 (none)@*
1618 Present a crypted password in your @file{.screenrc} file and screen will
1619 ask for it, whenever someone attempts to resume a detached session. This
1620 is useful, if you have privileged programs running under @code{screen}
1621 and you want to protect your session from reattach attempts by users
1622 that managed to assume your uid. (I.e. any superuser.)  If no crypted
1623 password is specified, screen prompts twice a password and places its
1624 encryption in the paste buffer.  Default is `none', which disables
1625 password checking.
1626 @end deffn
1628 @node Power Detach, Lock, Detach, Session Management
1629 @section Power Detach
1631 @kindex D
1632 @deffn Command pow_detach
1633 (@kbd{C-a D D})@*
1634 Mainly the same as @code{detach}, but also sends a HANGUP signal
1635 to the parent process of @code{screen}.@*
1636 @emph{Caution}: This will result in a
1637 logout if @code{screen} was started from your login shell.
1638 @end deffn
1640 @deffn Command pow_detach_msg [message]
1641 (none)@*
1642 The @var{message} specified here is output whenever a power detach is
1643 performed. It may be used as a replacement for a logout message or to reset 
1644 baud rate, etc.
1645 Without a parameter, the current message is shown.
1646 @end deffn
1648 @node Lock, Multiuser Session, Power Detach, Session Management
1649 @section Lock
1650 @kindex x
1651 @kindex C-x
1652 @deffn Command lockscreen
1653 (@kbd{C-a x}, @kbd{C-a C-x})@*
1654 Call a screenlock program (@file{/local/bin/lck} or @file{/usr/bin/lock}
1655 or a builtin, if no other is available). Screen does not accept any
1656 command keys until this program terminates. Meanwhile processes in the
1657 windows may continue, as the windows are in the detached state.
1658 The screenlock program may be changed through the environment variable
1659 @code{$LOCKPRG} (which must be set in the shell from which @code{screen}
1660 is started) and is executed with the user's uid and gid.
1662 Warning: When you leave other shells unlocked and have no password set
1663 on @code{screen}, the lock is void: One could easily re-attach from an
1664 unlocked shell. This feature should rather be called
1665 @code{lockterminal}.
1666 @end deffn
1668 @node Multiuser Session, Session Name, Lock, Session Management
1669 @section Multiuser Session
1670 @cindex multiuser session 
1672 These commands allow other users to gain access to one single @code{screen}
1673 session. When attaching to a multiuser @code{screen} the sessionname is 
1674 specified as @code{username/sessionname} to the @code{-S} command line option.
1675 @code{Screen} must be compiled with multiuser support to enable features 
1676 described here.
1678 @menu
1679 * Multiuser::                   Enable / Disable multiuser mode.
1680 * Acladd::                      Enable a specific user.
1681 * Aclchg::                      Change a users permissions.
1682 * Acldel::                      Disable a specific user.
1683 * Aclgrp::                      Grant a user permissions to other users.
1684 * Displays::                    List all active users at their displays.
1685 * Umask::                       Predefine access to new windows.
1686 * Wall::                        Write a message to all users.
1687 * Writelock::                   Grant exclusive window access.
1688 * Su::                          Substitute user.
1689 @end menu
1691 @node Multiuser, Acladd,  , Multiuser Session
1692 @subsection Multiuser
1693 @deffn Command multiuser @var{state}
1694 (none)@*
1695 Switch between single-user and multi-user mode. Standard screen operation is 
1696 single-user. In multi-user mode the commands @code{acladd}, @code{aclchg} and 
1697 @code{acldel} can be used to enable (and disable) other users accessing this 
1698 @code{screen}.  
1699 @end deffn
1701 @node Acladd, Aclchg, Multiuser, Multiuser Session
1702 @subsection Acladd
1703 @deffn Command acladd @var{usernames}
1704 @deffnx Command addacl @var{usernames}
1705 (none)@*
1706 Enable users to fully access this screen session. @var{Usernames} can be one 
1707 user or a comma separated list of users. This command enables to attach to
1708 the @code{screen} session and performs the equivalent of
1709 @code{aclchg @var{usernames} +rwx "#?"}. To add a user with restricted access,
1710 use the @code{aclchg} command below. 
1711 @code{Addacl} is a synonym to @code{acladd}.
1712 Multi-user mode only.
1713 @end deffn
1715 @node Aclchg, Acldel, Acladd, Multiuser Session
1716 @subsection Aclchg
1717 @deffn Command aclchg @var{usernames permbits list}
1718 @deffnx Command chacl @var{usernames permbits list}
1719 (none)@*
1720 Change permissions for a comma separated list of users. 
1721 Permission bits are represented as @samp{r}, @samp{w} and @samp{x}. 
1722 Prefixing @samp{+} grants the permission, @samp{-} removes it. The third 
1723 parameter is a comma separated list of commands or windows (specified either 
1724 by number or title). The special list @samp{#} refers to all windows, @samp{?} 
1725 to all commands. If @var{usernames} consists of a single @samp{*}, all 
1726 known users are affected. 
1727 A command can be executed when the user has the @samp{x} bit for it. The user
1728 can type input to a window when he has its @samp{w} bit set and no other
1729 user obtains a writelock for this window. Other bits are currently ignored.
1730 To withdraw the writelock from another user in e.g. window 2:
1731 @samp{aclchg @var{username} -w+w 2}. To allow read-only access 
1732 to the session: @samp{aclchg @var{username} -w "#"}. As soon as a user's name 
1733 is known to screen, he can attach to the session and (per default) has full 
1734 permissions for all command and windows. Execution permission for the acl 
1735 commands, @code{at} and others should also be removed or the user may be able 
1736 to regain write permission.
1737 @code{Chacl} is a synonym to @code{aclchg}.
1738 Multi-user mode only.
1739 @end deffn
1741 @node Acldel, Aclgrp, Aclchg, Multiuser Session
1742 @subsection Acldel
1743 @deffn Command acldel @var{username}
1744 (none)@*
1745 Remove a user from screen's access control list. If currently attached, all the
1746 user's displays are detached from the session. He cannot attach again.
1747 Multi-user mode only.
1748 @end deffn
1750 @node Aclgrp, Displays, Acldel, Multiuser Session
1751 @subsection Aclgrp
1752 @deffn Command aclgrp @var{username} [@var{groupname}]
1753 (none)@*
1754 Creates groups of users that share common access rights. The
1755 name  of the group is the username of the group leader. Each
1756 member of  the  group  inherits  the  permissions  that  are
1757 granted  to the group leader. That means, if a user fails an
1758 access check, another check is made for the group leader.
1759 A user is removed from all groups the special value @samp{none}
1760 is used for @var{groupname}. If the second parameter is omitted
1761 all groups the user is in are listed.
1762 @end deffn
1764 @node Displays, Umask, Aclgrp, Multiuser Session
1765 @subsection Displays
1766 @kindex *
1767 @deffn Command displays
1768 (@kbd{C-a *})@*
1769 Shows a tabular listing  of  all  currently  connected  user
1770 front-ends  (displays).   This  is most useful for multiuser
1771 sessions.
1772 @end deffn
1774 @node Umask, Wall, Displays, Multiuser Session
1775 @subsection aclumask
1776 @deffn Command aclumask [@var{users}]+/-@var{bits} ...
1777 @deffnx Command umask [@var{users}]+/-@var{bits} ...
1778 (none)@*
1779 This specifies the access other users have to  windows  that
1780 will  be  created  by  the caller of the command. @var{Users} may be no,
1781 one or a comma separated list of known usernames.  If  no  users  are
1782 specified,  a  list of all currently known users is assumed.
1783 @var{Bits} is any  combination  of  access  control  bits  allowed
1784 defined  with the @code{aclchg} command. The special username @samp{?}
1785 predefines the access that  not  yet  known  users  will  be
1786 granted  to any window initially.  The special username @samp{??}
1787 predefines the access that not yet known users  are  granted
1788 to any command. Rights of the special username nobody cannot
1789 be changed (see the @code{su} command).
1790 @code{Umask} is a synonym to @code{aclumask}.
1791 @end deffn
1794 @node Wall, Writelock, Umask, Multiuser Session
1795 @subsection Wall
1796 @deffn Command wall @var{message}
1797 (none)@*
1798 Write a message to all displays. The message will appear in the terminal's
1799 status line.
1800 @end deffn
1802 @node Writelock, Su , Wall, Multiuser Session
1803 @subsection Writelock
1804 @deffn Command writelock @var{on|off|auto}
1805 (none)@*
1806 In addition to access control lists, not all users may be able to write to
1807 the same window at once. Per default, writelock is in @samp{auto} mode and
1808 grants exclusive input permission to the user who is the first to switch
1809 to the particular window. When he leaves the window, other users may obtain
1810 the writelock (automatically). The writelock of the current window is disabled
1811 by the command @code{writelock off}. If the user issues the command
1812 @code{writelock on} he keeps the exclusive write permission while switching
1813 to other windows.
1814 @end deffn
1816 @deffn Command defwritelock @var{on|off|auto}
1817 (none)@*
1818 Sets the default writelock behavior for new windows. Initially all windows
1819 will be created with no writelocks.
1820 @end deffn
1822 @node Su,  , Writelock, Multiuser Session
1823 @subsection Su
1824 @deffn Command su [@var{username} [@var{password} [@var{password2}]]]
1825 (none)@*
1826 Substitute the user of a display. The  command  prompts  for
1827 all parameters that are omitted. If passwords are specified
1828 as parameters, they have  to  be  specified  un-crypted.  The
1829 first  password  is matched against the systems passwd database,
1830 the second password  is  matched  against  the @code{screen}
1831 password  as  set  with the commands @code{acladd} or @code{password}.
1832 @code{Su} may be useful for the @code{screen} administrator to test
1833 multiuser  setups.
1834 When  the  identification  fails,  the  user has
1835 access to the commands available for user @samp{nobody}. These are
1836 @code{detach}, @code{license}, @code{version}, @code{help} and
1837 @code{displays}.
1838 @end deffn
1840 @node Session Name, Suspend, Multiuser Session, Session Management
1841 @section Session Name
1842 @deffn Command sessionname [@var{name}]
1843 (none)@*
1844 Rename the current session. Note that for @code{screen -list} the name
1845 shows up with the process-id prepended. If the argument @var{name} is
1846 omitted, the name of this session is displayed.@*
1847 @emph{Caution}: The @code{$STY}
1848 environment variable will still reflect the old name in pre-existing
1849 shells. This may result in
1850 confusion.  Use of this command is generally
1851 discouraged. Use the @code{-S} command-line option if you want to
1852 name a new session.The default is constructed from the tty and host names.
1853 @end deffn
1855 @node Suspend, Quit, Session Name, Session Management
1856 @section Suspend
1857 @kindex z
1858 @kindex C-z
1859 @deffn Command suspend
1860 (@kbd{C-a z}, @kbd{C-a C-z})@*
1861 Suspend @code{screen}.  The windows are in the detached state while
1862 @code{screen} is suspended.  This feature relies on the parent shell
1863 being able to do job control.
1864 @end deffn
1866 @node Quit,  , Suspend, Session Management
1867 @section Quit
1868 @kindex C-\
1869 @deffn Command quit
1870 (@kbd{C-a C-\})@*
1871 Kill all windows and terminate @code{screen}.  Note that on VT100-style
1872 terminals the keys @kbd{C-4} and @kbd{C-\} are identical.  So be careful
1873 not to type @kbd{C-a C-4} when selecting window no. 4.  Use the empty
1874 bind command (as in @code{bind "^\"}) to remove a key binding
1875 (@pxref{Key Binding}).
1876 @end deffn
1878 @node Regions, Window Settings, Session Management, Top
1879 @chapter Regions
1880 @cindex regions
1881 Screen has the ability to display more than one window on the
1882 user's display. This is done by splitting the screen in regions,
1883 which can contain different windows.
1885 @menu
1886 * Split::                       Split a region into two
1887 * Focus::                       Change to the next region
1888 * Only::                        Delete all other regions
1889 * Remove::                      Delete the current region
1890 * Resize::                      Grow or shrink a region
1891 * Caption::                     Control the window's caption
1892 * Fit::                         Resize a window to fit the region
1893 * Focusminsize::                Force a minimum size on a current region
1894 * Layout::                      Manage groups of regions
1895 @end menu
1897 @node Split, Focus,  , Regions
1898 @section Split
1899 @kindex S
1900 @kindex |
1901 @deffn Command split [-v]
1902 (@kbd{C-a S}, @kbd{C-a |})@*
1903 Split the current region into two new ones. All regions on the
1904 display are resized to make room for the new region. The blank
1905 window is displayed on the new region. The default is to create
1906 a horizontal split, putting the new regions on the top and
1907 bottom of each other. Using -v will create a vertical split,
1908 causing the new regions to appear side by side of each other.
1910 With this current implementation of @code{screen}, scrolling data
1911 will appear much slower in a vertically splited region than one
1912 that is not. This should be taken into consideration if you need
1913 to use system commands such as @code{cat} or @code{tail -f}.
1914 @end deffn
1916 @node Focus, Only, Split, Regions
1917 @section Focus
1918 @kindex TAB
1919 @deffn Command focus
1920 (@kbd{C-a @key{Tab}})@*
1921 Move the input focus to the next region. This is done in a cyclic
1922 way so that the top region is selected after the bottom one. If
1923 no subcommand is given it defaults to `down'. `up' cycles in the
1924 opposite order, `top' and `bottom' go to the top and bottom
1925 region respectively. Useful bindings are (j and k as in vi)
1926 @example
1927 bind j focus down
1928 bind k focus up
1929 bind t focus top
1930 bind b focus bottom
1931 @end example
1932 @end deffn
1934 @node Only, Remove, Focus, Regions
1935 @section Only
1936 @kindex Q
1937 @deffn Command only
1938 (@kbd{C-a Q})@*
1939 Kill all regions but the current one.
1940 @end deffn
1942 @node Remove, Resize, Only, Regions
1943 @section Remove
1944 @kindex X
1945 @deffn Command remove
1946 (@kbd{C-a X})@*
1947 Kill the current region. This is a no-op if there is only one region.
1948 @end deffn
1950 @node Resize, Caption, Remove, Regions
1951 @section Resize
1952 @deffn Command resize [(+/-)@var{lines}]
1953 (none)@*
1954 Resize the current region. The space will be removed from or added to
1955 the region below or if there's not enough space from the region above.
1956 @example
1957 resize +N       increase current region height by N
1958 resize -N       decrease current region height by N
1959 resize  N       set current region height to N
1960 resize  =       make all windows equally high
1961 resize  max     maximize current region height
1962 resize  min     minimize current region height
1963 @end example
1964 @end deffn
1966 @node Caption, Fit, Resize, Regions
1967 @section Caption
1968 @deffn Command caption @code{always}|@code{splitonly} [string]
1969 @deffnx Command caption @code{string} [string]
1970 (none)@*
1971 This command controls the display of the window captions. Normally
1972 a caption is only used if more than one window is shown on the
1973 display (split screen mode). But if the type is set to
1974 @code{always}, @code{screen} shows a caption
1975 even if only one window is displayed. The default
1976 is @samp{splitonly}.
1978 The second form changes the text used for the caption. You can use
1979 all string escapes (@pxref{String Escapes}). @code{Screen} uses
1980 a default of @samp{%3n %t}.
1982 You can mix both forms by providing the string as an additional
1983 argument.
1984 @end deffn
1986 @node Fit, Focusminsize, Caption, Regions
1987 @section Fit
1988 @kindex F
1989 @deffn Command fit
1990 (@kbd{C-a F})@*
1991 Change the window size to the size of the current region. This
1992 command is needed because screen doesn't adapt the window size
1993 automatically if the window is displayed more than once.
1994 @end deffn
1996 @node Focusminsize, Layout, Fit, Regions
1997 @section Focusminsize
1998 @deffn Command focusminsize [ (width|@code{max}|@code{_})  (height|@code{max}|@code{_}) ]
1999 (none)@*
2000 This forces any currently selected region to be automatically
2001 resized at least a certain @var{width} and @var{height}. All
2002 other surrounding regions will be resized in order to accomodate.
2003 This constraint follows everytime the @code{focus} command is
2004 used. The @code{resize} command can be used to increase either
2005 dimension of a region, but never below what is set with
2006 @code{focusminsize}. The underscore @samp{_} is a synonym for
2007 @code{max}. Setting a @var{width} and @var{height} of @code{0 0}
2008 (zero zero) will undo any constraints and allow for manual resizing.
2009 Without any parameters, the minimum width and height is shown.
2010 @end deffn
2012 @node Layout, , Focusminsize, Regions
2013 @section Layout
2014 @cindex layout
2015 Using regions, and perhaps a large enough terminal, you can create
2016 a more of a desktop feel to @code{screen}. By being able to split
2017 regions horizontally or vertically, you can take advantage of the
2018 lesser used spaces of your terminal. The catch to these splits has
2019 been that they're not kept between screen detachments and reattachments.
2021 Layouts will help your organization of regions. You can create one
2022 layout of four horizontal regions and then create a separate layout
2023 of regions in a two by two array. The regions don't have to contain 
2024 the same windows. You can easily switch between layouts and keep
2025 them between detachments and reattachments.
2027 Note that there are several subcommands to @code{layout}.
2029 @deffn Command layout @code{new} [title]
2030 (none)@*
2031 Create a new layout. The screen will change to one whole region 
2032 and be switched to the blank window. From here, you build the 
2033 regions and the windows they show as you desire. The new layout 
2034 will be numbered with the smallest available integer, starting 
2035 with zero. You can optionally give a title to your new layout. 
2036 Otherwise, it will have a default title of @code{layout}. You 
2037 can always change the title later by using the command 
2038 @code{layout title}.
2039 @end deffn
2041 @deffn Command layout @code{remove} [n|title]
2042 (none)@*
2043 Remove, or in other words, delete the specified layout. Either
2044 the number or the title can be specified. Without either
2045 specification, @code{screen} will remove the current layout.
2047 Removing a layout does not affect your set windows or regions.
2048 @end deffn
2050 @deffn Command layout @code{next}
2051 (none)@*
2052 Switch to the next layout available
2053 @end deffn
2055 @deffn Command layout @code{prev}
2056 (none)@*
2057 Switch to the previous layout available
2058 @end deffn
2060 @deffn Command layout @code{select} [n|title]
2061 (none)@*
2062 Select the desired layout. Either the number or the title can
2063 be specified. Without either specification, @code{screen} will
2064 prompt and ask which screen is desired. To see which layouts are
2065 available, use the @code{layout show} command.
2066 @end deffn
2068 @deffn Command layout @code{show}
2069 (none)@*
2070 List on the message line the number(s) and title(s) of the available
2071 layout(s). The current layout is flagged.
2072 @end deffn
2074 @deffn Command layout @code{title} [title]
2075 (none)@*
2076 Change or display the title of the current layout. A string given
2077 will be used to name the layout. Without any options, the current
2078 title and number is displayed on the message line.
2079 @end deffn
2081 @deffn Command layout @code{number} [n]
2082 (none)@*
2083 Change or display the number of the current layout. An integer given
2084 will be used to number the layout. Without any options, the current
2085 number and title is displayed on the message line.
2086 @end deffn
2088 @deffn Command layout @code{attach} [title|@code{:last}]
2089 (none)@*
2090 Change or display which layout to reattach back to. The default is
2091 @code{:last}, which tells @code{screen} to reattach back to the last
2092 used layout just before detachment. By supplying a title, You can
2093 instruct @code{screen} to reattach to a particular layout regardless
2094 which one was used at the time of detachment. Without any options,
2095 the layout to reattach to will be shown in the message line.
2096 @end deffn
2098 @deffn Command layout @code{save} [n|title]
2099 (none)@*
2100 Remember the current arrangement of regions. When used, @code{screen}
2101 will remember the arrangement of vertically and horizontally split
2102 regions. This arrangement is restored when a @code{screen} session
2103 is reattached or switched back from a different layout. If a number
2104 or title is supplied, @code{screen} will remember the arrangement of
2105 that particular layout. Without any options, @code{screen} will
2106 remember the current layout.
2108 Saving your regions can be done automatically by using the
2109 @code{layout autosave} command.
2110 @end deffn
2112 @deffn Command layout @code{autosave} [@code{on}|@code{off}]
2113 (none)@*
2114 Change or display the status of automatcally saving layouts. The
2115 default is @code{on}, meaning when @code{screen} is detached or
2116 changed to a different layout, the arrangement of regions and windows
2117 will be remembered at the time of change and restored upon return.
2118 If autosave is set to @code{off}, that arrangement will only be
2119 restored to either to the last manual save, using @code{layout save},
2120 or to when the layout was first created, to a single region with
2121 a single window. Without either an @code{on} or an @code{off}, the
2122 current status is displayed on the message line.
2123 @end deffn
2126 @node Window Settings, Virtual Terminal, Regions, Top
2127 @chapter Window Settings
2129 These commands control the way @code{screen} treats individual windows
2130 in a session.  @xref{Virtual Terminal}, for commands to control the
2131 terminal emulation itself.
2133 @menu
2134 * Naming Windows::              Control the name of the window
2135 * Console::                     See the host's console messages
2136 * Kill::                        Destroy an unwanted window
2137 * Login::                       Control @file{/etc/utmp} logging
2138 * Mode::                        Control the file mode of the pty
2139 * Monitor::                     Watch for activity in a window
2140 * Windows::                     List the active windows
2141 * Hardstatus::                  Set a window's hardstatus line
2142 @end menu
2144 @node Naming Windows, Console,  , Window Settings
2145 @section Naming Windows (Titles)
2146 @cindex title
2148 You can customize each window's name in the window display (viewed with
2149 the @code{windows} command (@pxref{Windows}) by setting it with
2150 one of the title commands.  Normally the name displayed is the actual
2151 command name of the program created in the window.  However, it is
2152 sometimes useful to distinguish various programs of the same name or to
2153 change the name on-the-fly to reflect the current state of the window.
2155 The default name for all shell windows can be set with the
2156 @code{shelltitle} command (@pxref{Shell}).  You can specify the name you
2157 want for a window with the @samp{-t} option to the @code{screen} command
2158 when the window is created (@pxref{Screen Command}).  To change the name after
2159 the window has been created you can use the title-string escape-sequence
2160 (@kbd{@key{ESC} k @var{name} @key{ESC} \}) and the @code{title} command
2161 (C-a A).  The former can be output from an application to control the
2162 window's name under software control, and the latter will prompt for a
2163 name when typed.  You can also bind predefined names to keys with the
2164 @code{title} command to set things quickly without prompting.
2166 @menu
2167 * Title Command::                 The @code{title} command.
2168 * Dynamic Titles::                Make shell windows change titles dynamically.
2169 * Title Prompts::                 Set up your shell prompt for dynamic Titles.
2170 * Title Screenrc::                Set up Titles in your @file{.screenrc}.
2171 @end menu
2173 @node Title Command, Dynamic Titles,  , Naming Windows
2174 @subsection Title Command
2175 @kindex A
2176 @deffn Command title [windowtitle]
2177 (@kbd{C-a A})@*
2178 Set the name of the current window to @var{windowtitle}. If no name is 
2179 specified, screen prompts for one.
2180 @end deffn
2182 @node Dynamic Titles, Title Prompts, Title Command, Naming Windows
2183 @subsection Dynamic Titles
2184 @code{screen} has a shell-specific heuristic that is enabled by
2185 setting the window's name to @var{search|name} and arranging to have a
2186 null title escape-sequence output as a part of your prompt.  The
2187 @var{search} portion specifies an end-of-prompt search string, while the
2188 @var{name} portion specifies the default shell name for the window.  If
2189 the @var{name} ends in a @samp{:} @code{screen} will add what it
2190 believes to be the current command running in the window to the end of
2191 the specified name (e.g. @var{name:cmd}).  Otherwise the current
2192 command name supersedes the shell name while it is running.
2194 Here's how it works: you must modify your shell prompt to output a null
2195 title-escape-sequence (@key{ESC} k @key{ESC} \) as a part of your prompt.
2196 The last part of your prompt must be the same as the string you
2197 specified for the @var{search} portion of the title.  Once this is set
2198 up, @code{screen} will use the title-escape-sequence to clear the previous
2199 command name and get ready for the next command.  Then, when a newline
2200 is received from the shell, a search is made for the end of the prompt.
2201 If found, it will grab the first word after the matched string and use
2202 it as the command name.  If the command name begins with @samp{!},
2203 @samp{%}, or @samp{^}, @code{screen} will use the first word on the
2204 following line (if found) in preference to the just-found name.  This
2205 helps csh users get more accurate titles when using job control or
2206 history recall commands.
2208 @node Title Prompts, Title Screenrc, Dynamic Titles, Naming Windows
2209 @subsection Setting up your prompt for shell titles
2210 One thing to keep in mind when adding a null title-escape-sequence to your
2211 prompt is that some shells (like the csh) count all the non-control
2212 characters as part of the prompt's length.  If these invisible
2213 characters aren't a multiple of 8 then backspacing over a tab will
2214 result in an incorrect display.  One way to get around this is to use a
2215 prompt like this:
2217 @example
2218 set prompt='@value{esc}[0000m@value{esc}k@value{esc}\% '
2219 @end example
2221 The escape-sequence @samp{@value{esc}[0000m} not only normalizes the
2222 character attributes, but all the zeros round the length of the
2223 invisible characters up to 8.
2225 Tcsh handles escape codes in the prompt more intelligently, so you can
2226 specify your prompt like this:
2228 @example
2229 set prompt="%@{\ek\e\\%@}\% "
2230 @end example
2232 Bash users will probably want to echo the escape sequence in the
2233 PROMPT_COMMAND:
2235 @example
2236 PROMPT_COMMAND='printf "\033k\033\134"'
2237 @end example
2239 (I used @samp{\134} to output a @samp{\} because of a bug in v1.04).
2241 @node Title Screenrc,  , Title Prompts, Naming Windows
2242 @subsection Setting up shell titles in your @file{.screenrc}
2243 Here are some .screenrc examples:
2245 @example
2246 screen -t top 2 nice top
2247 @end example
2249 Adding this line to your .screenrc would start a niced version of the
2250 @code{top} command in window 2 named @samp{top} rather than @samp{nice}.
2252 @example
2253 shelltitle '> |csh'
2254 screen 1
2255 @end example
2257 This file would start a shell using the given shelltitle.  The title
2258 specified is an auto-title that would expect the prompt and the typed
2259 command to look something like the following:
2261 @example
2262 /usr/joe/src/dir> trn
2263 @end example
2265 (it looks after the '> ' for the command name).
2266 The window status would show the name @samp{trn} while the command was
2267 running, and revert to @samp{csh} upon completion.
2269 @example
2270 bind R screen -t '% |root:' su
2271 @end example
2273 Having this command in your .screenrc would bind the key sequence
2274 @kbd{C-a R} to the @code{su} command and give it an auto-title name of
2275 @samp{root:}.  For this auto-title to work, the screen could look
2276 something like this:
2278 @example
2279 % !em
2280 emacs file.c
2281 @end example
2283 Here the user typed the csh history command @code{!em} which ran the
2284 previously entered @code{emacs} command.  The window status would show
2285 @samp{root:emacs} during the execution of the command, and revert to
2286 simply @samp{root:} at its completion.
2288 @example
2289 bind o title
2290 bind E title ""
2291 bind u title (unknown)
2292 @end example
2294 The first binding doesn't have any arguments, so it would prompt you for
2295 a title when you type @kbd{C-a o}.  The second binding would clear an
2296 auto-titles current setting (C-a E).  The third binding would set the
2297 current window's title to @samp{(unknown)} (C-a u).
2299 @node Console, Kill, Naming Windows, Window Settings
2300 @section Console
2301 @deffn Command console [@var{state}]
2302 (none)@*
2303 Grabs or un-grabs the machines console output to a window. When the argument
2304 is omitted the current state is displayed.
2305 @emph{Note}: Only the owner of @file{/dev/console} can grab the console
2306 output. This command is only available if the host supports the ioctl
2307 @code{TIOCCONS}.
2308 @end deffn
2310 @node Kill, Login, Console, Window Settings
2311 @section Kill
2313 @kindex k
2314 @kindex C-k
2315 @deffn Command kill
2316 (@kbd{C-a k}, @kbd{C-a C-k})@*
2317 Kill the current window.@*
2318 If there is an @code{exec} command running (@pxref{Exec}) then it is killed.
2319 Otherwise the process (e.g. shell) running in the window receives a 
2320 @code{HANGUP} condition, 
2321 the window structure is removed and screen (your display) switches to another
2322 window. When the last window is destroyed, @code{screen} exits.
2323 After a kill screen switches to the previously displayed window.
2324 @* 
2325 @emph{Caution}: @code{emacs} users may find themselves killing their
2326 @code{emacs} session when trying to delete the current line.  For this
2327 reason, it is probably wise to use a different command character
2328 (@pxref{Command Character}) or rebind @code{kill} to another key
2329 sequence, such as @kbd{C-a K} (@pxref{Key Binding}).
2330 @end deffn
2332 @node Login, Mode, Kill, Window Settings
2333 @section Login
2335 @deffn Command deflogin state
2336 (none)@*
2337 Same as the @code{login} command except that the default setting for new
2338 windows is changed.  This defaults to `on' unless otherwise specified at
2339 compile time (@pxref{Installation}). Both commands are only present when
2340 @code{screen} has been compiled with utmp support.
2341 @end deffn
2343 @kindex L
2344 @deffn Command login [state]
2345 (@kbd{C-a L})@*
2346 Adds or removes the entry in @file{/etc/utmp} for the current window.
2347 This controls whether or not the window is @dfn{logged in}.  In addition
2348 to this toggle, it is convenient to have ``log in'' and ``log out''
2349 keys.  For instance, @code{bind I login on} and @code{bind O 
2350 login off} will map these keys to be @kbd{C-a I} and @kbd{C-a O}
2351 (@pxref{Key Binding}).
2352 @end deffn
2354 @node Mode, Monitor, Login, Window Settings
2355 @section Mode
2356 @deffn Command defmode mode
2357 (none)@*
2358 The mode of each newly allocated pseudo-tty is set to @var{mode}.
2359 @var{mode} is an octal number as used by chmod(1).  Defaults to 0622 for
2360 windows which are logged in, 0600 for others (e.g. when @code{-ln} was 
2361 specified for creation, @pxref{Screen Command}).
2362 @end deffn
2364 @node Monitor, Windows, Mode, Window Settings
2365 @section Monitoring
2367 @deffn Command activity message
2368 (none)@*
2369 When any activity occurs in a background window that is being monitored,
2370 @code{screen} displays a notification in the message line.  The
2371 notification message can be redefined by means of the @code{activity}
2372 command.  Each occurrence of @samp{%} in @var{message} is replaced by
2373 the number of the window in which activity has occurred, and each
2374 occurrence of @samp{^G} is replaced by the definition for bell in your
2375 termcap (usually an audible bell).  The default message is
2377 @example
2378 'Activity in window %n'
2379 @end example
2381 Note that monitoring is off for all windows by default, but can be altered
2382 by use of the @code{monitor} command (@kbd{C-a M}).
2383 @end deffn
2385 @deffn Command defmonitor state
2386 (none)@*
2387 Same as the @code{monitor} command except that the default setting for
2388 new windows is changed.  Initial setting is `off'.
2389 @end deffn
2391 @kindex M
2392 @deffn Command monitor [state]
2393 (@kbd{C-a M})@*
2394 Toggles monitoring of the current window.  When monitoring is turned on
2395 and the affected window is switched into the background, the activity
2396 notification message will be displayed in the status line at the first
2397 sign of output, and the window will also be marked with an @samp{@@} in
2398 the window-status display (@pxref{Windows}).  Monitoring defaults to
2399 @samp{off} for all windows.
2400 @end deffn
2402 @node Windows, Hardstatus, Monitor, Window Settings
2403 @section Windows
2404 @kindex w
2405 @kindex C-w
2406 @deffn Command windows
2407 (@kbd{C-a w}, @kbd{C-a C-w})@*
2408 Uses the message line to display a list of all the windows.  Each
2409 window is listed by number with the name of the program running in the
2410 window (or its title). 
2412 The current window is marked with a @samp{*};
2413 the previous window is marked with a @samp{-}; 
2414 all the windows that are logged in are marked with a @samp{$} (@pxref{Login});
2415 a background window that has received a bell is marked with a @samp{!};
2416 a background window that is being monitored and has had activity occur is 
2417 marked with an @samp{@@} (@pxref{Monitor});
2418 a window which has output logging turned on is marked with @samp{(L)};
2419 windows occupied by other users are marked with @samp{&}
2420 or @samp{&&} if the window is shared by other users;
2421 windows in the zombie state are marked with @samp{Z}. 
2423 If this list is too long to fit on the terminal's status line only the
2424 portion around the current window is displayed.
2425 @end deffn
2427 @node Hardstatus, Mousetrack, Windows, Window Settings
2428 @section Hardstatus
2430 @code{Screen} maintains a hardstatus line for every window. If a window
2431 gets selected, the display's hardstatus will be updated to match
2432 the window's hardstatus line.
2433 The hardstatus line can be changed with the ANSI Application
2434 Program Command (APC): @samp{ESC_<string>ESC\}. As a convenience
2435 for xterm users the sequence @samp{ESC]0..2;<string>^G} is
2436 also accepted.
2438 @deffn Command defhstatus [status]
2439 (none)@*
2440 The hardstatus line that all new windows will get is set to
2441 @var{status}.
2442 This command is useful to make the hardstatus of every window
2443 display the window number or title or the like.  @var{status}
2444 may contain the same directives as in the window messages, but
2445 the directive escape character is @samp{^E} (octal 005) instead
2446 of @samp{%}.  This was done to make a misinterpretation of program
2447 generated hardstatus lines impossible.
2448 If the parameter @var{status}
2449 is omitted, the current default string is displayed.
2450 Per default the hardstatus line of new windows is empty.
2451 @end deffn
2453 @deffn Command hstatus status
2454 (none)@*
2455 Changes the current window's hardstatus line to @var{status}.
2456 @end deffn
2458 @node Mousetrack, , Hardstatus, Miscellaneous
2459 @section Mousetrack
2461 @deffn Command mousetrack [ @code{on|off} ]
2462 (none)@*
2463 This command determines whether @code{screen} will watch for
2464 mouse clicks. When this command is enabled, regions that have
2465 been split in various ways can be selected by pointing to them
2466 with a mouse and left-clicking them. Without specifying @var{on}
2467 or @var{off}, the current state is displayed. The default state
2468 is determined by the @code{defmousetrack} command.
2469 @end deffn
2471 @deffn Command defmousetrack @code{on|off} 
2472 (none)@*
2473 This command determines the default state of the @code{mousetrack}
2474 command, currently defaulting of @var{off}.
2475 @end deffn
2477 @node Virtual Terminal, Copy and Paste, Window Settings, Top
2478 @chapter Virtual Terminal
2480 Each window in a @code{screen} session emulates a VT100 terminal, with
2481 some extra functions added. The VT100 emulator is hard-coded, no other
2482 terminal types can be emulated. 
2483 The commands described here modify the terminal emulation.
2485 @menu
2486 * Control Sequences::           Details of the internal VT100 emulation.
2487 * Input Translation::           How keystrokes are remapped.
2488 * Digraph::                     Entering digraph sequences.
2489 * Bell::                        Getting your attention.
2490 * Clear::                       Clear the window display.
2491 * Info::                        Terminal emulation statistics.
2492 * Redisplay::                   When the display gets confusing.
2493 * Wrap::                        Automatic margins.
2494 * Reset::                       Recovering from ill-behaved applications.
2495 * Window Size::                 Changing the size of your terminal.
2496 * Character Processing::        Change the effect of special characters.
2497 @end menu
2499 @node Control Sequences, Input Translation,  , Virtual Terminal
2500 @section Control Sequences
2501 @cindex control sequences
2502 The following is a list of control sequences recognized by
2503 @code{screen}.  @samp{(V)} and @samp{(A)} indicate VT100-specific and
2504 ANSI- or ISO-specific functions, respectively.
2506 @example
2507 ESC E                           Next Line
2508 ESC D                           Index
2509 ESC M                           Reverse Index
2510 ESC H                           Horizontal Tab Set
2511 ESC Z                           Send VT100 Identification String
2512 ESC 7                   (V)     Save Cursor and Attributes
2513 ESC 8                   (V)     Restore Cursor and Attributes
2514 ESC [s                  (A)     Save Cursor and Attributes
2515 ESC [u                  (A)     Restore Cursor and Attributes
2516 ESC c                           Reset to Initial State
2517 ESC g                           Visual Bell
2518 ESC Pn p                        Cursor Visibility (97801)
2519     Pn = 6                      Invisible
2520          7                      Visible
2521 ESC =                   (V)     Application Keypad Mode
2522 ESC >                   (V)     Numeric Keypad Mode
2523 ESC # 8                 (V)     Fill Screen with E's
2524 ESC \                   (A)     String Terminator
2525 ESC ^                   (A)     Privacy Message String (Message Line)
2526 ESC !                           Global Message String (Message Line)
2527 ESC k                           Title Definition String
2528 ESC P                   (A)     Device Control String
2529                                 Outputs a string directly to the host
2530                                 terminal without interpretation.
2531 ESC _                   (A)     Application Program Command (Hardstatus)
2532 ESC ] 0 ; string ^G     (A)     Operating System Command (Hardstatus, xterm
2533                                 title hack)
2534 ESC ] 83 ; cmd ^G       (A)     Execute screen command. This only works if
2535                                 multi-user support is compiled into screen.
2536                                 The pseudo-user ":window:" is used to check
2537                                 the access control list. Use "addacl :window:
2538                                 -rwx #?" to create a user with no rights and
2539                                 allow only the needed commands.
2540 Control-N               (A)     Lock Shift G1 (SO)
2541 Control-O               (A)     Lock Shift G0 (SI)
2542 ESC n                   (A)     Lock Shift G2
2543 ESC o                   (A)     Lock Shift G3
2544 ESC N                   (A)     Single Shift G2
2545 ESC O                   (A)     Single Shift G3
2546 ESC ( Pcs               (A)     Designate character set as G0
2547 ESC ) Pcs               (A)     Designate character set as G1
2548 ESC * Pcs               (A)     Designate character set as G2
2549 ESC + Pcs               (A)     Designate character set as G3
2550 ESC [ Pn ; Pn H                 Direct Cursor Addressing
2551 ESC [ Pn ; Pn f                 same as above
2552 ESC [ Pn J                      Erase in Display
2553       Pn = None or 0            From Cursor to End of Screen
2554            1                    From Beginning of Screen to Cursor
2555            2                    Entire Screen
2556 ESC [ Pn K                      Erase in Line
2557       Pn = None or 0            From Cursor to End of Line
2558            1                    From Beginning of Line to Cursor
2559            2                    Entire Line
2560 ESC [ Pn X                      Erase character
2561 ESC [ Pn A                      Cursor Up
2562 ESC [ Pn B                      Cursor Down
2563 ESC [ Pn C                      Cursor Right
2564 ESC [ Pn D                      Cursor Left
2565 ESC [ Pn E                      Cursor next line
2566 ESC [ Pn F                      Cursor previous line
2567 ESC [ Pn G                      Cursor horizontal position
2568 ESC [ Pn `                      same as above
2569 ESC [ Pn d                      Cursor vertical position
2570 ESC [ Ps ;...; Ps m             Select Graphic Rendition
2571       Ps = None or 0            Default Rendition
2572            1                    Bold
2573            2            (A)     Faint
2574            3            (A)     @i{Standout} Mode (ANSI: Italicized)
2575            4                    Underlined
2576            5                    Blinking
2577            7                    Negative Image
2578            22           (A)     Normal Intensity
2579            23           (A)     @i{Standout} Mode off (ANSI: Italicized off)
2580            24           (A)     Not Underlined
2581            25           (A)     Not Blinking
2582            27           (A)     Positive Image
2583            30           (A)     Foreground Black
2584            31           (A)     Foreground Red
2585            32           (A)     Foreground Green
2586            33           (A)     Foreground Yellow
2587            34           (A)     Foreground Blue
2588            35           (A)     Foreground Magenta
2589            36           (A)     Foreground Cyan
2590            37           (A)     Foreground White
2591            39           (A)     Foreground Default
2592            40           (A)     Background Black
2593            ...                  ...
2594            49           (A)     Background Default
2595 ESC [ Pn g                      Tab Clear
2596       Pn = None or 0            Clear Tab at Current Position
2597            3                    Clear All Tabs
2598 ESC [ Pn ; Pn r         (V)     Set Scrolling Region
2599 ESC [ Pn I              (A)     Horizontal Tab
2600 ESC [ Pn Z              (A)     Backward Tab
2601 ESC [ Pn L              (A)     Insert Line
2602 ESC [ Pn M              (A)     Delete Line
2603 ESC [ Pn @@              (A)     Insert Character
2604 ESC [ Pn P              (A)     Delete Character
2605 ESC [ Pn S                      Scroll Scrolling Region Up
2606 ESC [ Pn T                      Scroll Scrolling Region Down
2607 ESC [ Pn ^                      same as above
2608 ESC [ Ps ;...; Ps h             Set Mode
2609 ESC [ Ps ;...; Ps l             Reset Mode
2610       Ps = 4            (A)     Insert Mode
2611            20           (A)     @samp{Automatic Linefeed} Mode.
2612            34                   Normal Cursor Visibility
2613            ?1           (V)     Application Cursor Keys
2614            ?3           (V)     Change Terminal Width to 132 columns
2615            ?5           (V)     Reverse Video
2616            ?6           (V)     @samp{Origin} Mode
2617            ?7           (V)     @samp{Wrap} Mode
2618            ?9                   X10 mouse tracking
2619            ?25          (V)     Visible Cursor
2620            ?47                  Alternate Screen (old xterm code)
2621            ?1000        (V)     VT200 mouse tracking
2622            ?1047                Alternate Screen (new xterm code)
2623            ?1049                Alternate Screen (new xterm code)
2624 ESC [ 5 i               (A)     Start relay to printer (ANSI Media Copy)
2625 ESC [ 4 i               (A)     Stop relay to printer (ANSI Media Copy)
2626 ESC [ 8 ; Ph ; Pw t             Resize the window to @samp{Ph} lines and
2627                                 @samp{Pw} columns (SunView special)
2628 ESC [ c                         Send VT100 Identification String
2629 ESC [ x                 (V)     Send Terminal Parameter Report
2630 ESC [ > c                       Send Secondary Device Attributes String
2631 ESC [ 6 n                       Send Cursor Position Report
2633 @end example
2636 @node Input Translation, Digraph, Control Sequences, Virtual Terminal
2637 @section Input Translation
2638 @cindex input translation
2639 In order to do a full VT100 emulation @code{screen} has to detect
2640 that a sequence of characters in the input stream was generated
2641 by a keypress on the user's keyboard and insert the VT100
2642 style escape sequence. @code{Screen} has a very flexible way of doing
2643 this by making it possible to map arbitrary commands on arbitrary
2644 sequences of characters. For standard VT100 emulation the command
2645 will always insert a string in the input buffer of the window
2646 (see also command @code{stuff}, @pxref{Paste}).
2647 Because the sequences generated by a keypress can
2648 change after a reattach from a different terminal type, it is
2649 possible to bind commands to the termcap name of the keys.
2650 @code{Screen} will insert the correct binding after each
2651 reattach. See @ref{Bindkey} for further details on the syntax and examples.
2653 Here is the table of the default key bindings. (A) means that the
2654 command is executed if the keyboard is switched into application
2655 mode.
2656 @example
2658 Key name        Termcap name    Command
2659 -----------------------------------------------------
2660 Cursor up            ku         stuff \033[A
2661                                 stuff \033OA      (A)
2662 Cursor down          kd         stuff \033[B
2663                                 stuff \033OB      (A)
2664 Cursor right         kr         stuff \033[C
2665                                 stuff \033OC      (A)
2666 Cursor left          kl         stuff \033[D
2667                                 stuff \033OD      (A)
2668 Function key 0       k0         stuff \033[10~
2669 Function key 1       k1         stuff \033OP
2670 Function key 2       k2         stuff \033OQ
2671 Function key 3       k3         stuff \033OR
2672 Function key 4       k4         stuff \033OS
2673 Function key 5       k5         stuff \033[15~
2674 Function key 6       k6         stuff \033[17~
2675 Function key 7       k7         stuff \033[18~
2676 Function key 8       k8         stuff \033[19~
2677 Function key 9       k9         stuff \033[20~
2678 Function key 10      k;         stuff \033[21~
2679 Function key 11      F1         stuff \033[23~
2680 Function key 12      F2         stuff \033[24~
2681 Home                 kh         stuff \033[1~
2682 End                  kH         stuff \033[4~
2683 Insert               kI         stuff \033[2~
2684 Delete               kD         stuff \033[3~
2685 Page up              kP         stuff \033[5~
2686 Page down            kN         stuff \033[6~
2687 Keypad 0             f0         stuff 0
2688                                 stuff \033Op      (A)
2689 Keypad 1             f1         stuff 1
2690                                 stuff \033Oq      (A)
2691 Keypad 2             f2         stuff 2
2692                                 stuff \033Or      (A)
2693 Keypad 3             f3         stuff 3
2694                                 stuff \033Os      (A)
2695 Keypad 4             f4         stuff 4
2696                                 stuff \033Ot      (A)
2697 Keypad 5             f5         stuff 5
2698                                 stuff \033Ou      (A)
2699 Keypad 6             f6         stuff 6
2700                                 stuff \033Ov      (A)
2701 Keypad 7             f7         stuff 7
2702                                 stuff \033Ow      (A)
2703 Keypad 8             f8         stuff 8
2704                                 stuff \033Ox      (A)
2705 Keypad 9             f9         stuff 9
2706                                 stuff \033Oy      (A)
2707 Keypad +             f+         stuff +
2708                                 stuff \033Ok      (A)
2709 Keypad -             f-         stuff -
2710                                 stuff \033Om      (A)
2711 Keypad *             f*         stuff *
2712                                 stuff \033Oj      (A)
2713 Keypad /             f/         stuff /
2714                                 stuff \033Oo      (A)
2715 Keypad =             fq         stuff =
2716                                 stuff \033OX      (A)
2717 Keypad .             f.         stuff .
2718                                 stuff \033On      (A)
2719 Keypad ,             f,         stuff ,
2720                                 stuff \033Ol      (A)
2721 Keypad enter         fe         stuff \015
2722                                 stuff \033OM      (A)
2723 @end example
2725 @node Digraph, Bell, Input Translation, Virtual Terminal
2726 @section Digraph
2728 @kindex C-v
2729 @deffn Command digraph [preset [unicode-value]] 
2730 (@kbd{C-a C-v})@*
2731 This command prompts the user for a digraph sequence. The next
2732 two characters typed are looked up in a builtin table and the
2733 resulting character is inserted in the input stream. For example,
2734 if the user enters @samp{a"}, an a-umlaut will be inserted. If the
2735 first character entered is a 0 (zero), @code{screen}
2736 will treat the following characters (up to three) as an octal
2737 number instead.  The optional argument @var{preset}
2738 is treated as user input, thus one can create an "umlaut" key.
2739 For example the command @samp{bindkey ^K digraph '"'} enables the user
2740 to generate an a-umlaut by typing @samp{CTRL-K a}. When a non-zero
2741 @var{unicode-value} is specified, a new  digraph  is  created with the
2742 specified preset. The digraph is unset if a zero value is provided
2743 for the @var{unicode-value}.
2745 The following table is the builtin sequences.
2747 @documentencoding ISO-8859-1
2748 @example
2749      Sequence   Octal   Digraph   Unicode Equivalent
2750      -----------------------------------------------
2751      ' ', ' '    160    (space)         U+00A0
2752      'N', 'S'    160    (space)         U+00A0
2753      '~', '!'    161       ¡            U+00A1
2754      '!', '!'    161       ¡            U+00A1
2755      '!', 'I'    161       ¡            U+00A1
2756      'c', '|'    162       ¢            U+00A2
2757      'c', 't'    162       ¢            U+00A2
2758      '$', '$'    163       £            U+00A3
2759      'P', 'd'    163       £            U+00A3
2760      'o', 'x'    164       ¤            U+00A4
2761      'C', 'u'    164       ¤            U+00A4
2762      'C', 'u'    164       ¤            U+00A4
2763      'E', 'u'    164       ¤            U+00A4
2764      'Y', '-'    165       ¥            U+00A5
2765      'Y', 'e'    165       ¥            U+00A5
2766      '|', '|'    166       ¦            U+00A6
2767      'B', 'B'    166       ¦            U+00A6
2768      'p', 'a'    167       §            U+00A7
2769      'S', 'E'    167       §            U+00A7
2770      '"', '"'    168       ¨            U+00A8
2771      ''', ':'    168       ¨            U+00A8
2772      'c', 'O'    169       ©            U+00A9
2773      'C', 'o'    169       ©            U+00A9
2774      'a', '-'    170       ª            U+00AA
2775      '<', '<'    171       «            U+00AB
2776      '-', ','    172       ¬            U+00AC
2777      'N', 'O'    172       ¬            U+00AC
2778      '-', '-'    173       ­            U+00AD
2779      'r', 'O'    174       ®            U+00AE
2780      'R', 'g'    174       ®            U+00AE
2781      '-', '='    175       ¯            U+00AF
2782      ''', 'm'    175       ¯            U+00AF
2783      '~', 'o'    176       °            U+00B0
2784      'D', 'G'    176       °            U+00B0
2785      '+', '-'    177       ±            U+00B1
2786      '2', '2'    178       ²            U+00B2
2787      '2', 'S'    178       ²            U+00B2
2788      '3', '3'    179       ³            U+00B3
2789      '3', 'S'    179       ³            U+00B3
2790      ''', '''    180       ´            U+00B4
2791      'j', 'u'    181       µ            U+00B5
2792      'M', 'y'    181       µ            U+00B5
2793      'p', 'p'    182       ¶            U+00B6
2794      'P', 'I'    182       ¶            U+00B6
2795      '~', '.'    183       ·            U+00B7
2796      '.', 'M'    183       ·            U+00B7
2797      ',', ','    184       ¸            U+00B8
2798      ''', ','    184       ¸            U+00B8
2799      '1', '1'    185       ¹            U+00B9
2800      '1', 'S'    185       ¹            U+00B9
2801      'o', '-'    186       º            U+00BA
2802      '>', '>'    187       »            U+00BB
2803      '1', '4'    188       ¼            U+00BC
2804      '1', '2'    189       ½            U+00BD
2805      '3', '4'    190       ¾            U+00BE
2806      '~', '?'    191       ¿            U+00BF
2807      '?', '?'    191       ¿            U+00BF
2808      '?', 'I'    191       ¿            U+00BF
2809      'A', '`'    192       À            U+00C0
2810      'A', '!'    192       À            U+00C0
2811      'A', '''    193       Á            U+00C1
2812      'A', '^'    194       Â            U+00C2
2813      'A', '>'    194       Â            U+00C2
2814      'A', '~'    195       Ã            U+00C3
2815      'A', '?'    195       Ã            U+00C3
2816      'A', '"'    196       Ä            U+00C4
2817      'A', ':'    196       Ä            U+00C4
2818      'A', '@@'    197       Å            U+00C5
2819      'A', 'A'    197       Å            U+00C5
2820      'A', 'E'    198       Æ            U+00C6
2821      'C', ','    199       Ç            U+00C7
2822      'E', '`'    200       È            U+00C8
2823      'E', '!'    200       È            U+00C8
2824      'E', '''    201       É            U+00C9
2825      'E', '^'    202       Ê            U+00CA
2826      'E', '>'    202       Ê            U+00CA
2827      'E', '"'    203       Ë            U+00CB
2828      'E', ':'    203       Ë            U+00CB
2829      'I', '`'    204       Ì            U+00CC
2830      'I', '!'    204       Ì            U+00CC
2831      'I', '''    205       Í            U+00CD
2832      'I', '^'    206       Î            U+00CE
2833      'I', '>'    206       Î            U+00CE
2834      'I', '"'    207       Ï            U+00CF
2835      'I', ':'    207       Ï            U+00CF
2836      'D', '-'    208       Ð            U+00D0
2837      'N', '~'    209       Ñ            U+00D1
2838      'N', '?'    209       Ñ            U+00D1
2839      'O', '`'    210       Ò            U+00D2
2840      'O', '!'    210       Ò            U+00D2
2841      'O', '''    211       Ó            U+00D3
2842      'O', '^'    212       Ô            U+00D4
2843      'O', '>'    212       Ô            U+00D4
2844      'O', '~'    213       Õ            U+00D5
2845      'O', '?'    213       Õ            U+00D5
2846      'O', '"'    214       Ö            U+00D6
2847      'O', ':'    214       Ö            U+00D6
2848      '/', '\'    215       ×            U+00D7
2849      '*', 'x'    215       ×            U+00D7
2850      'O', '/'    216       Ø            U+00D8
2851      'U', '`'    217       Ù            U+00D9
2852      'U', '!'    217       Ù            U+00D9
2853      'U', '''    218       Ú            U+00DA
2854      'U', '^'    219       Û            U+00DB
2855      'U', '>'    219       Û            U+00DB
2856      'U', '"'    220       Ü            U+00DC
2857      'U', ':'    220       Ü            U+00DC
2858      'Y', '''    221       Ý            U+00DD
2859      'I', 'p'    222       Þ            U+00DE
2860      'T', 'H'    222       Þ            U+00DE
2861      's', 's'    223       ß            U+00DF
2862      's', '"'    223       ß            U+00DF
2863      'a', '`'    224       à            U+00E0
2864      'a', '!'    224       à            U+00E0
2865      'a', '''    225       á            U+00E1
2866      'a', '^'    226       â            U+00E2
2867      'a', '>'    226       â            U+00E2
2868      'a', '~'    227       ã            U+00E3
2869      'a', '?'    227       ã            U+00E3
2870      'a', '"'    228       ä            U+00E4
2871      'a', ':'    228       ä            U+00E4
2872      'a', 'a'    229       å            U+00E5
2873      'a', 'e'    230       æ            U+00E6
2874      'c', ','    231       ç            U+00E7
2875      'e', '`'    232       è            U+00E8
2876      'e', '!'    232       è            U+00E8
2877      'e', '''    233       é            U+00E9
2878      'e', '^'    234       ê            U+00EA
2879      'e', '>'    234       ê            U+00EA
2880      'e', '"'    235       ë            U+00EB
2881      'e', ':'    235       ë            U+00EB
2882      'i', '`'    236       ì            U+00EC
2883      'i', '!'    236       ì            U+00EC
2884      'i', '''    237       í            U+00ED
2885      'i', '^'    238       î            U+00EE
2886      'i', '>'    238       î            U+00EE
2887      'i', '"'    239       ï            U+00EF
2888      'i', ':'    239       ï            U+00EF
2889      'd', '-'    240       ð            U+00F0
2890      'n', '~'    241       ñ            U+00F1
2891      'n', '?'    241       ñ            U+00F1
2892      'o', '`'    242       ò            U+00F2
2893      'o', '!'    242       ò            U+00F2
2894      'o', '''    243       ó            U+00F3
2895      'o', '^'    244       ô            U+00F4
2896      'o', '>'    244       ô            U+00F4
2897      'o', '~'    245       õ            U+00F5
2898      'o', '?'    245       õ            U+00F5
2899      'o', '"'    246       ö            U+00F6
2900      'o', ':'    246       ö            U+00F6
2901      ':', '-'    247       ÷            U+00F7
2902      'o', '/'    248       ø            U+00F8
2903      'u', '`'    249       ù            U+00F9
2904      'u', '!'    249       ù            U+00F9
2905      'u', '''    250       ú            U+00FA
2906      'u', '^'    251       û            U+00FB
2907      'u', '>'    251       û            U+00FB
2908      'u', '"'    252       ü            U+00FC
2909      'u', ':'    252       ü            U+00FC
2910      'y', '''    253       ý            U+00FD
2911      'i', 'p'    254       þ            U+00FE
2912      't', 'h'    254       þ            U+00FE
2913      'y', '"'    255       ÿ            U+00FF
2914      'y', ':'    255       ÿ            U+00FF
2915      '"', '['    196       Ä            U+00C4
2916      '"', '\'    214       Ö            U+00D6
2917      '"', ']'    220       Ü            U+00DC
2918      '"', '@{'    228       ä            U+00E4
2919      '"', '|'    246       ö            U+00F6
2920      '"', '@}'    252       ü            U+00FC
2921      '"', '~'    223       ß            U+00DF
2922 @end example 
2924 @end deffn
2926 @node Bell, Clear, Digraph, Virtual Terminal
2927 @section Bell
2929 @deffn Command bell_msg [message]
2930 (none)@*
2931 When a bell character is sent to a background window, @code{screen}
2932 displays a notification in the message line.  The notification message
2933 can be re-defined by this command.  Each occurrence
2934 of @samp{%} in @var{message} is replaced by the number of the window to
2935 which a bell has been sent, and each occurrence of @samp{^G} is replaced
2936 by the definition for bell in your termcap (usually an audible bell).
2937 The default message is
2939 @example
2940 'Bell in window %n'
2941 @end example
2943 An empty message can be supplied to the @code{bell_msg} command to suppress
2944 output of a message line (@code{bell_msg ""}).
2945 Without a parameter, the current message is shown.
2946 @end deffn
2948 @kindex C-g
2949 @deffn Command vbell [state]
2950 (@kbd{C-a C-g})@*
2951 Sets or toggles the visual bell setting for the current window. If 
2952 @code{vbell} is switched to @samp{on}, but your
2953 terminal does not support a visual bell, the visual bell message is
2954 displayed in the status line when the bell character is received. 
2955 Visual bell support of a terminal is 
2956 defined by the termcap variable @code{vb}. @xref{Bell, , Visual Bell, 
2957 termcap, The Termcap Manual}, for more information on visual bells. 
2958 The equivalent terminfo capability is @code{flash}.
2960 Per  default, @code{vbell} is @samp{off}, thus the audible bell is used.
2961 @end deffn
2963 @deffn Command vbell_msg [message]
2964 (none)@*
2965 Sets the visual bell message. @var{Message} is printed to the status
2966 line if the window receives a bell character (^G), @code{vbell} is
2967 set to @samp{on} and the terminal does not support a visual bell.
2968 The default message is @samp{Wuff, Wuff!!}.
2969 Without a parameter, the current message is shown.
2970 @end deffn
2972 @deffn Command vbellwait sec
2973 (none)@*
2974 Define a delay in seconds after each display of @code{screen} 's visual
2975 bell message. The default is 1 second.
2976 @end deffn
2978 @node Clear, Info, Bell, Virtual Terminal
2979 @section Clear
2980 @kindex C
2981 @deffn Command clear
2982 (@kbd{C-a C})@*
2983 Clears the screen and saves its contents to the scrollback buffer.
2984 @end deffn
2986 @node Info, Redisplay, Clear, Virtual Terminal
2987 @section Info
2988 @kindex i
2989 @kindex C-i
2990 @deffn Command info
2991 (@kbd{C-a i}, @kbd{C-a C-i})@*
2992 Uses the message line to display some information about the current
2993 window: the cursor position in the form @samp{(@var{column},@var{row})}
2994 starting with @samp{(1,1)}, the terminal width and height plus the size
2995 of the scrollback buffer in lines, like in @samp{(80,24)+50}, 
2996 the current state of window XON/XOFF flow control is shown like this
2997 (@pxref{Flow Control}):
2998 @example
2999   +flow     automatic flow control, currently on.
3000   -flow     automatic flow control, currently off.
3001   +(+)flow  flow control enabled. Agrees with automatic control.
3002   -(+)flow  flow control disabled. Disagrees with automatic control.
3003   +(-)flow  flow control enabled. Disagrees with automatic control.
3004   -(-)flow  flow control disabled. Agrees with automatic control.
3005 @end example
3007 The current line wrap setting (@samp{+wrap} indicates enabled, @samp{-wrap}
3008 not) is also shown. The flags @samp{ins}, @samp{org}, @samp{app}, @samp{log},
3009 @samp{mon} and @samp{nored} are displayed when the window is in insert mode,
3010 origin mode, application-keypad mode, has output logging,
3011 activity monitoring or partial redraw enabled.
3013 The currently active 
3014 character set (@samp{G0}, @samp{G1}, @samp{G2}, or @samp{G3}), and in
3015 square brackets the terminal character sets that are currently
3016 designated as @samp{G0} through @samp{G3}.  
3017 If the window is in UTF-8 mode, the string @samp{UTF-8} is shown instead.
3018 Additional modes depending on the type of the window are displayed at
3019 the end of the status line (@pxref{Window Types}).
3021 If the state machine of the terminal emulator is in a non-default state,
3022 the info line is started with a string identifying the current state.
3024 For system information use @code{time}.
3025 @end deffn
3027 @deffn Command dinfo
3028 (none)@*
3029 Show what @code{screen} thinks about your terminal. Useful if you want to know
3030 why features like color or the alternate charset don't work.
3031 @end deffn
3033 @node Redisplay, Wrap, Info, Virtual Terminal
3034 @section Redisplay
3036 @deffn Command allpartial state
3037 (none)@*
3038 If set to on, only the current cursor line is refreshed on window change.
3039 This affects all windows and is useful for slow terminal lines. The 
3040 previous setting of full/partial refresh for each window is restored
3041 with @code{allpartial off}. This is a global flag that immediately takes effect
3042 on all windows overriding the @code{partial} settings. It does not change the 
3043 default redraw behavior of newly created windows. 
3044 @end deffn
3046 @deffn Command altscreen state
3047 (none)@*
3048 If set to on, "alternate screen" support is enabled in virtual terminals,
3049 just like in xterm.  Initial setting is @samp{off}.
3050 @end deffn
3052 @deffn Command partial state
3053 (none)@*
3054 Defines whether the display should be refreshed (as with
3055 @code{redisplay}) after switching to the current window. This command
3056 only affects the current window.  To immediately affect all windows use the
3057 @code{allpartial} command.  Default is @samp{off}, of course.  This default is 
3058 fixed, as there is currently no @code{defpartial} command. 
3059 @end deffn
3061 @kindex l
3062 @kindex C-l
3063 @deffn Command redisplay
3064 (@kbd{C-a l}, @kbd{C-a C-l})@*
3065 Redisplay the current window.  Needed to get a full redisplay in
3066 partial redraw mode.
3067 @end deffn
3069 @node Wrap, Reset, Redisplay, Virtual Terminal
3070 @section Wrap
3072 @kindex r
3073 @kindex C-r
3074 @deffn Command wrap state
3075 (@kbd{C-a r}, @kbd{C-a C-r}) @*
3076 Sets the line-wrap setting for the current window.  When line-wrap is
3077 on, the second consecutive printable character output at the last column
3078 of a line will wrap to the start of the following line.  As an added
3079 feature, backspace (^H) will also wrap through the left margin to the
3080 previous line.  Default is @samp{on}.
3081 @end deffn
3083 @deffn Command defwrap state
3084 (none) @*
3085 Same as the @code{wrap} command except that the default setting for new 
3086 windows is changed. Initially line-wrap is on and can be toggled with the 
3087 @code{wrap} command (@kbd{C-a r}) or by means of "C-a : wrap on|off".
3088 @end deffn
3090 @node Reset, Window Size, Wrap, Virtual Terminal
3091 @section Reset
3092 @kindex Z
3093 @deffn Command reset
3094 (@kbd{C-a Z})@*
3095 Reset the virtual terminal to its ``power-on'' values. Useful when strange
3096 settings (like scroll regions or graphics character set) are left over from
3097 an application.
3098 @end deffn
3100 @node Window Size, Character Processing, Reset, Virtual Terminal
3101 @section Window Size
3102 @kindex W
3103 @deffn Command width [@code{-w}|@code{-d}] [cols [lines]]
3104 (@kbd{C-a W})@*
3105 Toggle the window width between 80 and 132 columns, or set it to
3106 @var{cols} columns if an argument is specified.  This requires a
3107 capable terminal and the termcap entries @samp{Z0} and @samp{Z1}.  See
3108 the @code{termcap} command (@pxref{Termcap}), for more information.
3109 You can also specify a height if you want to
3110 change  both  values.  The @code{-w} option tells screen to leave
3111 the display size unchanged and just set the  window  size,
3112 @code{-d} vice versa.
3113 @end deffn
3115 @deffn Command height [@code{-w}|@code{-d}] [lines [cols]]
3116 (none)@*
3117 Set the display height to a specified number of lines. When no
3118 argument is given it toggles between 24 and 42 lines display.
3119 @end deffn
3121 @node Character Processing, ,Window Size, Virtual Terminal
3122 @section Character Processing
3124 @deffn Command c1 [state]
3125 (none)@*
3126 Change c1 code processing. @samp{c1 on} tells screen to treat
3127 the input characters between 128 and 159 as control functions.
3128 Such an 8-bit code is normally the same as ESC followed by the 
3129 corresponding 7-bit code. The default setting is to process c1 
3130 codes and can be changed with the @samp{defc1} command.
3131 Users with fonts that have usable characters in the 
3132 c1 positions may want to turn this off.
3134 @end deffn
3135 @deffn Command gr [state]
3136 (none)@*
3137 Turn GR charset switching on/off. Whenever screen sees an input
3138 char with an 8th bit set, it will use the charset stored in the
3139 GR slot and print the character with the 8th bit stripped. The
3140 default (see also @samp{defgr}) is not to process GR switching because
3141 otherwise the ISO88591 charset would not work.
3142 @end deffn
3144 @deffn Command bce [state]
3145 (none)@*
3146 Change background-color-erase setting. If @samp{bce} is set to
3147 on, all characters cleared by an erase/insert/scroll/clear
3148 operation will be displayed in the current background color.
3149 Otherwise the default background color is used.
3150 @end deffn
3152 @deffn Command encoding enc [denc]
3153 (none)@*
3154 Tell screen how to interpret the input/output. The first argument
3155 sets the encoding of the current window.
3156 Each window can emulate a different encoding. The optional second
3157 parameter overwrites the encoding of the connected terminal.
3158 It should never be needed as screen uses the locale setting to detect
3159 the encoding.
3160 There is also a way to select a terminal encoding depending on
3161 the terminal type by using the @samp{KJ} termcap entry. @xref{Special Capabilities}.
3163 Supported encodings are
3164 @code{eucJP}, @code{SJIS}, @code{eucKR},
3165 @code{eucCN}, @code{Big5}, @code{GBK}, @code{KOI8-R}, @code{CP1251},
3166 @code{UTF-8}, @code{ISO8859-2}, @code{ISO8859-3},
3167 @code{ISO8859-4}, @code{ISO8859-5}, @code{ISO8859-6},
3168 @code{ISO8859-7}, @code{ISO8859-8}, @code{ISO8859-9},
3169 @code{ISO8859-10}, @code{ISO8859-15}, @code{jis}.
3171 See also @samp{defencoding}, which changes the default setting of a new
3172 window.
3173 @end deffn
3175 @deffn Command charset set
3176 (none)@*
3177 Change the current character set slot designation and charset
3178 mapping.  The first four character of @var{set}
3179 are treated as charset designators while the fifth and sixth
3180 character must be in range @samp{0} to @samp{3} and set the GL/GR
3181 charset mapping. On every position a @samp{.} may be used to indicate
3182 that the corresponding charset/mapping should not be changed
3183 (@var{set} is padded to six characters internally by appending
3184 @samp{.} chars). New windows have @samp{BBBB02} as default
3185 charset, unless a @samp{encoding} command is active.
3187 The current setting can be viewed with the @ref{Info} command.
3188 @end deffn
3190 @deffn Command utf8 [state [dstate]]
3191 (none)@*
3192 Change the encoding used in the current window. If utf8 is enabled, the
3193 strings sent to the window will be UTF-8 encoded and vice versa.
3194 Omitting the
3195 parameter toggles the setting. If a second parameter is given, the
3196 display's
3197 encoding is also changed (this should rather be done with screen's
3198 @samp{-U} option).
3199 See also @samp{defutf8}, which changes the default setting of a new
3200 window.
3201 @end deffn
3203 @deffn Command defc1 state
3204 (none)@*
3205 Same as the @samp{c1} command except that the default setting for
3206 new windows is changed. Initial setting is @samp{on}.
3207 @end deffn
3209 @deffn Command defgr state
3210 (none)@*
3211 Same as the @samp{gr} command except that the default setting for
3212 new windows is changed. Initial setting is @samp{off}.
3213 @end deffn
3215 @deffn Command defbce state
3216 (none)@*
3217 Same as the @samp{bce} command except that the default setting for
3218 new windows is changed. Initial setting is @samp{off}.
3219 @end deffn
3221 @deffn Command defencoding enc
3222 (none)@*
3223 Same as the @samp{encoding} command except that the default setting for
3224 new windows is changed. Initial setting is the encoding taken from the
3225 terminal.
3226 @end deffn
3228 @deffn Command defcharset [set]
3229 Like the @samp{charset} command except that the default setting for
3230 new windows is changed. Shows current default if called without
3231 argument.
3232 @end deffn
3234 @deffn Command defutf8 state
3235 (none)@*
3236 Same as the @samp{utf8} command except that the default setting for new
3237 windows is changed. Initial setting is @code{on} if screen was started
3238 with @samp{-U}, otherwise @code{off}.
3239 @end deffn
3241 @node Copy and Paste, Subprocess Execution, Virtual Terminal, Top
3242 @chapter Copy and Paste
3243 @cindex copy and paste
3245 For those confined to a hardware terminal, these commands provide a cut
3246 and paste facility more powerful than those provided by most windowing
3247 systems.
3249 @menu
3250 * Copy::                        Copy from scrollback to buffer
3251 * Paste::                       Paste from buffer into window
3252 * Registers::                   Longer-term storage
3253 * Screen Exchange::             Sharing data between screen users
3254 * History::                     Recalling previous input
3255 @end menu
3257 @node Copy, Paste,  , Copy and Paste
3258 @section Copying
3259 @cindex marking
3260 @cindex scrollback
3261 @kindex [
3262 @kindex C-[
3263 @kindex ESC
3264 @deffn Command copy
3265 (@kbd{C-a [}, @kbd{C-a C-[}, @kbd{C-a @key{ESC}})@*
3266 Enter copy/scrollback mode. This allows you to copy text from the
3267 current window and its history into the paste buffer. In this mode a
3268 @code{vi}-like full screen editor is active, with controls as
3269 outlined below.
3270 @end deffn
3272 @menu
3273 * Line Termination::            End copied lines with CR/LF
3274 * Scrollback::                  Set the size of the scrollback buffer
3275 * Copy Mode Keys::              Remap keys in copy mode
3276 * Movement::                    Move around in the scrollback buffer
3277 * Marking::                     Select the text you want
3278 * Repeat count::                Repeat a command
3279 * Searching::                   Find the text you want
3280 * Specials::                    Other random keys
3281 @end menu
3283 @node Line Termination, Scrollback,  , Copy
3284 @subsection CR/LF
3285 @deffn Command crlf [state]
3286 (none)@*
3287 This affects the copying of text regions with the @code{copy} command.
3288 If it is set to @samp{on}, lines will be separated by the two character
3289 sequence @samp{CR}/@samp{LF}.  Otherwise only @samp{LF} is used.
3290 @code{crlf} is off by default.
3291 When no parameter is given, the state is toggled.
3292 @end deffn
3294 @node Scrollback, Copy Mode Keys, Line Termination, Copy
3295 @subsection Scrollback
3296 @deffn Command defscrollback num
3297 (none)@*
3298 Same as the @code{scrollback} command except that the default setting
3299 for new windows is changed.  Defaults to 100.
3300 @end deffn
3302 @deffn Command scrollback num
3303 (none)@*
3304 Set the size of the scrollback buffer for the current window to
3305 @var{num} lines.  The default scrollback is 100 lines.  Use @copy{info}
3306 to view the current setting.
3307 @end deffn
3309 @deffn Command compacthist [state]
3310 (none)@*
3311 This tells screen whether to suppress trailing blank lines when
3312 scrolling up text into the history buffer. Turn compacting @samp{on}
3313 to hold more useful lines in your scrollback buffer.
3314 @end deffn
3316 @node Copy Mode Keys, Movement, Scrollback, Copy
3317 @subsection markkeys
3318 @deffn Command markkeys string
3319 (none)@*
3320 This is a method of changing the keymap used for copy/history mode.  The
3321 string is made up of @var{oldchar}=@var{newchar} pairs which are
3322 separated by @samp{:}. Example: The command @code{markkeys
3323 h=^B:l=^F:$=^E} would set some keys to be more familiar to @code{emacs}
3324 users.
3325 If your terminal sends characters, that cause you to abort copy mode,
3326 then this command may help by binding these characters to do nothing.
3327 The no-op character is `@@' and is used like this: @code{markkeys @@=L=H}
3328 if you do not want to use the `H' or `L' commands any longer. 
3329 As shown in this example, multiple keys can be assigned to one function
3330 in a single statement.
3331 @end deffn
3333 @node Movement, Marking, Copy Mode Keys, Copy
3334 @subsection Movement Keys
3336 @noindent
3337 @kbd{h}, @kbd{j}, @kbd{k}, @kbd{l} move the cursor line by line or
3338 column by column.
3340 @noindent
3341 @kbd{0}, @kbd{^} and @kbd{$} move to the leftmost column or to the first
3342 or last non-whitespace character on the line.
3344 @noindent
3345 @kbd{H}, @kbd{M} and @kbd{L} move the cursor to the leftmost column
3346 of the top, center or bottom line of the window. 
3348 @noindent
3349 @kbd{+} and @kbd{-} move the cursor to the leftmost column of the next
3350 or previous line.
3352 @noindent
3353 @kbd{G} moves to the specified absolute line (default: end of buffer).
3355 @noindent
3356 @kbd{|} moves to the specified absolute column.
3358 @noindent
3359 @kbd{w}, @kbd{b}, @kbd{e} move the cursor word by word.
3361 @noindent
3362 @kbd{B}, @kbd{E} move the cursor WORD by WORD (as in vi).
3364 @noindent
3365 @kbd{C-u} and @kbd{C-d} scroll the display up/down by the specified
3366 amount of lines while preserving the cursor position. (Default: half
3367 screenful).
3369 @noindent
3370 @kbd{C-b} and @kbd{C-f} move the cursor up/down a full screen.
3372 @noindent
3373 @kbd{g} moves to the beginning of the buffer.
3375 @noindent
3376 @kbd{%} jumps to the specified percentage of the buffer.
3378 Note that Emacs-style movement keys can be specified by a .screenrc
3379 command. (@code{markkeys "h=^B:l=^F:$=^E"}) There is no simple method for
3380 a full emacs-style keymap, however, as this involves multi-character codes.
3382 @node Marking, Repeat count, Movement, Copy
3383 @subsection Marking
3385 The copy range is specified by setting two marks. The text between these
3386 marks will be highlighted. Press @kbd{space} to set the first or second
3387 mark respectively.
3389 @noindent
3390 @kbd{Y} and @kbd{y} can be used to mark one whole line or to mark from 
3391 start of line.
3393 @noindent
3394 @kbd{W} marks exactly one word. 
3396 @node Repeat count, Searching, Marking, Copy
3397 @subsection Repeat Count
3399 Any command in copy mode can be prefixed with a number (by pressing
3400 digits @kbd{0@dots{}9}) which is taken as a repeat count. Example:
3401 @kbd{C-a C-[ H 10 j 5 Y} will copy lines 11 to 15 into the paste buffer.
3403 @node Searching, Specials, Repeat count, Copy
3404 @subsection Searching
3406 @noindent
3407 @kbd{/} @code{vi}-like search forward.
3409 @noindent
3410 @kbd{?} @code{vi}-like search backward.
3412 @noindent
3413 @kbd{C-a s} @code{emacs} style incremental search forward.
3415 @noindent
3416 @kbd{C-r} @code{emacs} style reverse i-search.
3418 @deffn Command ignorecase [state]
3419 (none)@*
3420 Tell screen to ignore the case of characters in searches. Default is
3421 @code{off}.
3422 @end deffn
3424 @node Specials,  , Searching, Copy
3425 @subsection Specials
3427 There are, however, some keys that act differently here from in
3428 @code{vi}.  @code{Vi} does not allow to yank rectangular blocks of text,
3429 but @code{screen} does. Press
3431 @noindent
3432 @kbd{c} or @kbd{C} to set the left or right margin respectively. If no
3433 repeat count is given, both default to the current cursor position.@*
3434 Example: Try this on a rather full text screen: 
3435 @kbd{C-a [ M 20 l SPACE c 10 l 5 j C SPACE}.
3437 @noindent
3438 This moves one to the middle line of the screen, moves in 20 columns left,
3439 marks the beginning of the paste buffer, sets the left column, moves 5 columns
3440 down, sets the right column, and then marks the end of
3441 the paste buffer. Now try:@*
3442 @kbd{C-a [ M 20 l SPACE 10 l 5 j SPACE}
3444 @noindent
3445 and notice the difference in the amount of text copied.
3447 @noindent
3448 @kbd{J} joins lines. It toggles between 4 modes: lines separated by a
3449 newline character (012), lines glued seamless, lines separated by a single
3450 space or comma separated lines. Note that you can prepend the newline
3451 character with a carriage return character, by issuing a @code{set crlf
3452 on}.
3454 @noindent
3455 @kbd{v} is for all the @code{vi} users who use @code{:set numbers} - it
3456 toggles the left margin between column 9 and 1.
3458 @noindent
3459 @kbd{a} before the final space key turns on append mode. Thus
3460 the contents of the paste buffer will not be overwritten, but appended to.
3462 @noindent
3463 @kbd{A} turns on append mode and sets a (second) mark.
3465 @noindent
3466 @kbd{>} sets the (second) mark and writes the contents of the paste buffer
3467 to the screen-exchange file (@file{/tmp/screen-exchange} per default)
3468 once copy-mode is finished.  @xref{Screen Exchange}.@*
3469 This example demonstrates how to dump the
3470 whole scrollback buffer to that file: @*@kbd{C-a [ g SPACE G $ >}.
3472 @noindent
3473 @kbd{C-g} gives information about the current line and column.
3475 @noindent
3476 @kbd{x} exchanges the first mark and the current cursor position. You
3477 can use this to adjust an already placed mark.
3479 @noindent
3480 @kbd{@@} does nothing.  Absolutely nothing.  Does not even exit copy
3481 mode.
3483 @noindent
3484 All keys not described here exit copy mode.
3486 @node Paste, Registers, Copy, Copy and Paste
3487 @section Paste
3489 @kindex ]
3490 @kindex C-]
3491 @deffn Command paste [registers [destination]]
3492 (@kbd{C-a ]}, @kbd{C-a C-]})@*
3493 Write the (concatenated) contents of the specified registers to the stdin 
3494 stream of the current window.  The register @samp{.} is treated as the
3495 paste buffer. If no parameter is specified the user is prompted to enter a 
3496 single register. The paste buffer can be filled with the 
3497 @code{copy}, @code{history} and @code{readbuf} commands.
3498 Other registers can be filled with the @code{register}, @code{readreg} and
3499 @code{paste} commands.
3500 If @code{paste} is called with a second argument, the contents of the specified
3501 registers is pasted into the named destination register rather than
3502 the window. If @samp{.} is used as the second argument, the display's paste 
3503 buffer is the destination.
3504 Note, that @code{paste} uses a wide variety of resources: Usually both, a 
3505 current window and a current display are required. But whenever a second
3506 argument is specified no current window is needed. When the source specification
3507 only contains registers (not the paste buffer) then there need not be a current
3508 display (terminal attached), as the registers are a global resource. The
3509 paste buffer exists once for every user.
3510 @end deffn
3512 @deffn Command stuff string
3513 (none)@*
3514 Stuff the string @var{string} in the input buffer of the current window.
3515 This is like the @code{paste} command, but with much less overhead.
3516 You cannot paste large buffers with the @code{stuff} command. It is most
3517 useful for key bindings. @xref{Bindkey}.
3518 @end deffn
3520 @deffn Command pastefont [state]
3521 Tell screen to include font information in the paste buffer. The
3522 default is not to do so. This command is especially useful for
3523 multi character fonts like kanji.
3524 @end deffn
3526 @deffn Command slowpaste msec
3527 @deffnx Command defslowpaste msec
3528 (none)@*
3529 Define the speed text is inserted in the current window by the @code{paste} 
3530 command. If the slowpaste value is nonzero text is written character by 
3531 character.
3532 @code{screen} will pause for @var{msec} milliseconds after each write
3533 to allow the application to process the input. only use @code{slowpaste} if 
3534 your underlying system exposes flow control problems while pasting large 
3535 amounts of text. 
3536 @code{defslowpaste} specifies the default for new windows.
3537 @end deffn
3539 @deffn Command readreg [-e encoding] [register [filename]]
3540 (none)@*
3541 Does one of two things, dependent on number of arguments: with zero or one
3542 arguments it it duplicates the paste buffer contents into the register specified
3543 or entered at the prompt. With two arguments it reads the contents of the named
3544 file into the register, just as @code{readbuf} reads the screen-exchange file
3545 into the paste buffer.
3546 You can tell screen the encoding of the file via the @code{-e} option.
3547 The following example will paste the system's password file into
3548 the screen window (using register p, where a copy remains):
3550 @example
3551 C-a : readreg p /etc/passwd
3552 C-a : paste p
3553 @end example
3554 @end deffn
3556 @node Registers, Screen Exchange, Paste, Copy and Paste
3557 @section Registers
3559 @deffn Command copy_reg [key]
3560 (none)@*
3561 Removed. Use @code{readreg} instead.
3562 @end deffn
3564 @deffn Command ins_reg [key]
3565 (none)@*
3566 Removed. Use @code{paste} instead.
3567 @end deffn
3569 @deffn Command process [key]
3570 (none)@*
3571 Stuff the contents of the specified register into the @code{screen}
3572 input queue. If no argument is given you are prompted for a
3573 register name. The text is parsed as if it had been typed in from the user's
3574 keyboard. This command can be used to bind multiple actions to a single key.
3575 @end deffn
3577 @deffn Command register [-e encoding] key string
3578 (none)@*
3579 Save the specified @var{string} to the register @var{key}.
3580 The encoding of the string can be specified via the @code{-e} option.
3581 @end deffn
3583 @node Screen Exchange, History, Registers, Copy and Paste
3584 @section Screen Exchange
3586 @deffn Command bufferfile [@var{exchange-file}]
3587 (none)@*
3588 Change the filename used for reading and writing with the paste buffer.
3589 If the @var{exchange-file} parameter is omitted, @code{screen} reverts
3590 to the default of @file{/tmp/screen-exchange}.  The following example
3591 will paste the system's password file into the screen window (using the 
3592 paste buffer, where a copy remains):
3594 @example
3595 C-a : bufferfile /etc/passwd
3596 C-a < C-a ]
3597 C-a : bufferfile
3598 @end example
3599 @end deffn
3601 @kindex <
3602 @deffn Command readbuf [-e @var{encoding}] [@var{filename}]
3603 (@kbd{C-a <})@*
3604 Reads the contents of the specified file into the paste buffer.
3605 You can tell screen the encoding of the file via the @code{-e} option.
3606 If no file is specified, the screen-exchange filename is used.
3607 @end deffn
3609 @kindex =
3610 @deffn Command removebuf
3611 (@kbd{C-a =})@*
3612 Unlinks the screen-exchange file.
3613 @end deffn
3615 @kindex >
3616 @deffn Command writebuf [-e @var{encoding}] [@var{filename}]
3617 (@kbd{C-a >})@*
3618 Writes the contents of the paste buffer to the specified file, or the
3619 public accessible screen-exchange file if no filename is given.
3620 This is thought of as a primitive means of
3621 communication between @code{screen} users on the same host.
3622 If an encoding is specified the paste buffer is recoded on the fly to
3623 match the encoding.
3624 See also
3625 @kbd{C-a @key{ESC}} (@pxref{Copy}).
3626 @end deffn
3628 @node History,  , Screen Exchange, Copy and Paste
3629 @section History
3631 @kindex @{
3632 @kindex @}
3633 @deffn Command history
3634 (@kbd{C-a @{}, @kbd{C-a @}})@*
3635 Usually users work with a shell that allows easy access to previous
3636 commands.  For example, @code{csh} has the command @code{!!} to repeat
3637 the last command executed.  @code{screen} provides a primitive way of
3638 recalling ``the command that started @dots{}'': You just type the first
3639 letter of that command, then hit @kbd{C-a @{} and @code{screen} tries to
3640 find a previous line that matches with the prompt character to the left
3641 of the cursor. This line is pasted into this window's input queue.  Thus
3642 you have a crude command history (made up by the visible window and its
3643 scrollback buffer).
3644 @end deffn
3646 @node Subprocess Execution, Key Binding, Copy and Paste, Top
3647 @chapter Subprocess Execution
3648 Control Input or Output of a window by another filter process.
3649 Use with care!
3651 @menu
3652 * Exec::                        The @code{exec} command syntax.
3653 * Using Exec::                  Weird things that filters can do.
3654 @end menu
3656 @node Exec, Using Exec,  , Subprocess Execution
3657 @section Exec
3658 @deffn Command exec [[@var{fdpat}] @var{newcommand} [@var{args} ... ]]
3659 (none)@*
3660 Run a unix subprocess (specified by an executable path @var{newcommand} and 
3661 its optional arguments) in the current window. The flow of data between
3662 newcommands stdin/stdout/stderr, the process originally started (let us call it 
3663 "application-process") and 
3664 screen itself (window) is controlled by the file descriptor pattern @var{fdpat}.
3665 This pattern is basically a three character sequence representing stdin, stdout
3666 and stderr of newcommand. A dot (@code{.}) connects the file descriptor
3667 to screen. An exclamation mark (@code{!}) causes the file descriptor to be
3668 connected to the application-process. A colon (@code{:}) combines both.
3670 User input will go to newcommand unless newcommand receives the 
3671 application-process'
3672 output (@var{fdpat}s first character is @samp{!} or @samp{:}) or a pipe symbol
3673 (@samp{|}) is added to the end of @var{fdpat}.
3675 Invoking @code{exec} without arguments shows name and arguments of the currently
3676 running subprocess in this window. Only one subprocess can be running per 
3677 window.
3679 When a subprocess is running the @code{kill} command will affect it instead of 
3680 the windows process. Only one subprocess a time can be running in each window.
3682 Refer to the postscript file @file{doc/fdpat.ps} for a confusing
3683 illustration of all 21 possible combinations. Each drawing shows the digits
3684 2, 1, 0 representing the three file descriptors of newcommand. The box
3685 marked `W' is usual pty that has the application-process on its slave side.
3686 The box marked `P' is the secondary pty that now has screen at its master
3687 side.
3688 @end deffn
3690 @node Using Exec,  , Exec, Subprocess Execution
3691 @section Using Exec
3692 @noindent 
3693 Abbreviations:
3695 @itemize @bullet
3696 @item
3697 Whitespace between the word @samp{exec} and @var{fdpat} and the command name
3698 can be omitted. 
3700 @item
3701 Trailing dots and a @var{fdpat} consisting only of dots can be omitted. 
3703 @item 
3704 A simple @samp{|} is synonymous for the @samp{!..|} pattern.
3706 @item
3707 The word @samp{exec} can be omitted when the @samp{|} abbreviation is used.
3709 @item
3710 The word @samp{exec} can always be replaced by leading @samp{!}.
3711 @end itemize
3713 @noindent 
3714 Examples:
3716 @table @code
3717 @item !/bin/sh
3718 @itemx exec /bin/sh
3719 @itemx exec ... /bin/sh
3720 All of the above are equivalent.
3721 Creates another shell in the same window, while the original shell is still 
3722 running. Output of both shells is displayed and user input is sent to the new
3723 @file{/bin/sh}.
3725 @item !!stty 19200
3726 @itemx exec!stty 19200
3727 @itemx exec !.. stty 19200
3728 All of the above are equivalent.
3729 Set the speed of the window's tty. If your stty command operates on stdout,
3730 then add another @samp{!}. This is a useful command, when a screen window
3731 is directly connected to a serial line that needs to be configured.
3733 @item |less
3734 @itemx exec !..| less
3735 Both are equivalent.
3736 This adds a pager to the window output. The special character @samp{|} is 
3737 needed to give the user control over the pager although it gets its input from 
3738 the window's process. This works, because @samp{less} listens on stderr 
3739 (a behavior that @code{screen} would not expect without the @samp{|}) 
3740 when its stdin is not a tty. @code{Less} versions newer than 177 fail miserably
3741 here; good old @code{pg} still works.
3743 @item !:sed -n s/.*Error.*/\007/p
3744 Sends window output to both, the user and the sed command. The sed inserts an
3745 additional bell character (oct. 007) to the window output seen by screen.
3746 This will cause 'Bell in window x' messages, whenever the string @samp{Error}
3747 appears in the window.
3748 @end table
3750 @node Key Binding, Flow Control, Subprocess Execution, Top
3751 @chapter Key Binding
3752 @cindex key binding
3753 @cindex binding
3755 You may disagree with some of the default bindings (I know I do).  The
3756 @code{bind} command allows you to redefine them to suit your
3757 preferences.
3759 @menu
3760 * Bind::                        @code{bind} syntax.
3761 * Bind Examples::               Using @code{bind}.
3762 * Command Character::           The character used to start keyboard commands.
3763 * Help::                        Show current key bindings.
3764 * Bindkey::                     @code{bindkey} syntax.
3765 * Bindkey Examples::            Some easy examples.
3766 * Bindkey Control::             How to control the bindkey mechanism.
3767 @end menu
3769 @node Bind, Bind Examples,  , Key Binding
3770 @section The @code{bind} command
3771 @deffn Command bind [-c class] key [command [args]]
3772 (none)@*
3773 Bind a command to a key.  The @var{key} argument is either a single
3774 character, a two-character sequence of the form @samp{^x} (meaning
3775 @kbd{C-x}), a backslash followed by an octal number (specifying the
3776 ASCII code of the character), or a backslash followed by a second
3777 character, such as @samp{\^} or @samp{\\}.  The argument can also be
3778 quoted, if you like.  If no further argument is given, any previously
3779 established binding for this key is removed.  The @var{command}
3780 argument can be any command (@pxref{Command Index}).
3782 If a command class is specified via the @code{-c} option, the
3783 key is bound for the specified class.  Use the @code{command}
3784 command to activate a class. Command classes can be used
3785 to create multiple command keys or multi-character bindings.
3787 By default, most suitable commands are bound to one or more keys
3788 (@pxref{Default Key Bindings}); for instance, the command to create a
3789 new window is bound to @kbd{C-c} and @kbd{c}.  The @code{bind} command
3790 can be used to redefine the key bindings and to define new bindings.
3791 @end deffn
3793 @deffn Command unbindall
3794 (none)@*
3795 Unbind all the bindings. This can be useful when
3796 screen is used solely for its detaching abilities, such as when
3797 letting a console application run as a daemon. If, for some reason,
3798 it is necessary to bind commands after this, use 'screen -X'.
3799 @end deffn
3801 @node Bind Examples, Command Character, Bind, Key Binding
3802 @section Examples of the @code{bind} command
3803 @noindent
3804 Some examples:
3806 @example
3807 bind ' ' windows
3808 bind ^f screen telnet foobar
3809 bind \033 screen -ln -t root -h 1000 9 su
3810 @end example
3812 @noindent
3813 would bind the space key to the command that displays a list of windows
3814 (so that the command usually invoked by @kbd{C-a C-w} would also be
3815 available as @kbd{C-a space}), bind @kbd{C-f} to the command
3816 ``create a window with a TELNET connection to foobar'', and bind
3817 @key{ESC} to the command that creates an non-login window with title
3818 @samp{root} in slot #9, with a superuser shell and a scrollback buffer
3819 of 1000 lines.
3821 @example
3822 bind -c demo1 0 select 10
3823 bind -c demo1 1 select 11
3824 bind -c demo1 2 select 12
3825 bindkey "^B" command -c demo1
3826 @end example
3827 makes @kbd{C-b 0} select window 10, @kbd{C-b 1} window 11, etc.
3829 @example
3830 bind -c demo2 0 select 10
3831 bind -c demo2 1 select 11
3832 bind -c demo2 2 select 12
3833 bind - command -c demo2
3834 @end example
3835 makes @kbd{C-a - 0} select window 10, @kbd{C-a - 1} window 11, etc.
3837 @node Command Character, Help, Bind Examples, Key Binding
3838 @cindex escape character
3839 @cindex command character
3840 @section Command Character
3842 @deffn Command escape xy
3843 (none)@*
3844 Set the command character to @var{x} and the character generating a
3845 literal command character (by triggering the @code{meta} command)
3846 to @var{y} (similar to the @samp{-e} option). 
3847 Each argument is either a single character, a two-character
3848 sequence of the form @samp{^x} (meaning @kbd{C-x}), a backslash followed
3849 by an octal number (specifying the ASCII code of the character), or a
3850 backslash followed by a second character, such as @samp{\^} or
3851 @samp{\\}.  The default is @samp{^Aa}, but @samp{``} is recommended by
3852 one of the authors.
3853 @end deffn
3855 @deffn Command defescape xy
3856 (none)@*
3857 Set the default command characters. This is equivalent to the command 
3858 @code{escape} except that it is useful for multiuser sessions only. 
3859 In a multiuser session
3860 @code{escape} changes the command character of the calling user, where 
3861 @code{defescape} changes the default command characters for users that
3862 will be added later.
3863 @end deffn
3865 @kindex a
3866 @deffn Command meta
3867 (@kbd{C-a a})@*
3868 Send the command character (@kbd{C-a}) to the process in the current
3869 window.  The keystroke for this command is the second parameter to the
3870 @samp{-e} command line switch (@pxref{Invoking Screen}), or the
3871 @code{escape} .screenrc directive.
3872 @end deffn
3874 @deffn Command command [-c @var{class}]
3875 (none)@*
3876 This command has the same effect as typing the screen escape character
3877 (@kbd{C-a}). It is probably only useful for key bindings.
3878 If the @samp{-c} option is given, select the specified command class.
3879 @xref{Bind}, @xref{Bindkey}.
3880 @end deffn
3882 @node Help, Bindkey, Command Character, Key Binding
3883 @section Help
3884 @kindex ?
3885 @deffn Command help
3886 (@kbd{C-a ?})@*
3887 Displays a help screen showing you all the key bindings.  The first
3888 pages list all the internal commands followed by their bindings.
3889 Subsequent pages will display the custom commands, one command per key.
3890 Press space when you're done reading each page, or return to exit early.
3891 All other characters are ignored.
3892 If the @samp{-c} option is given, display all bound commands for the
3893 specified command class.
3894 @xref{Default Key Bindings}.
3895 @end deffn
3897 @node Bindkey, Bindkey Examples, Help, Key Binding
3898 @section Bindkey
3899 @deffn Command bindkey [@var{opts}] [@var{string} [@var{cmd} @var{args}]]
3900 (none)@*
3901 This command manages screen's input translation tables. Every
3902 entry in one of the tables tells screen how to react if a certain
3903 sequence of characters is encountered. There are three tables:
3904 one that should contain actions programmed by the user, one for
3905 the default actions used for terminal emulation and one for
3906 screen's copy mode to do cursor movement. See @ref{Input Translation}
3907 for a list of default key bindings.
3909 If the @samp{-d}
3910 option is given, bindkey modifies the default table, @samp{-m}
3911 changes the copy mode table and with neither option the user
3912 table is selected. The argument @samp{string} is the sequence of
3913 characters to which an action is bound. This can either be a fixed
3914 string or a termcap keyboard capability name (selectable with the
3915 @samp{-k} option).
3917 Some keys on a VT100 terminal can send a different
3918 string if application mode is turned on (e.g. the cursor keys).
3919 Such keys have two entries in the translation table. You can
3920 select the application mode entry by specifying the @samp{-a}
3921 option.
3923 The @samp{-t} option tells screen not to do inter-character
3924 timing. One cannot turn off the timing if a termcap capability is
3925 used.
3927 @samp{cmd} can be any of screen's commands with an arbitrary
3928 number of @samp{args}. If @samp{cmd} is omitted the key-binding is
3929 removed from the table. 
3930 @end deffn
3932 @node Bindkey Examples, Bindkey Control,Bindkey, Key Binding
3933 @section Bindkey Examples
3934 @noindent
3935 Here are some examples of keyboard bindings:
3937 @example
3938 bindkey -d
3939 @end example
3940 @noindent
3941 Show all of the default key bindings. The application mode entries
3942 are marked with [A].
3944 @example
3945 bindkey -k k1 select 1
3946 @end example
3947 @noindent
3948 Make the "F1" key switch to window one.
3950 @example
3951 bindkey -t foo stuff barfoo
3952 @end example
3953 @noindent
3954 Make @samp{foo} an abbreviation of the word @samp{barfoo}. Timeout is
3955 disabled so that users can type slowly.
3957 @example
3958 bindkey "\024" mapdefault
3959 @end example
3960 @noindent
3961 This key-binding makes @samp{C-t} an escape character for key-bindings. If
3962 you did the above @samp{stuff barfoo} binding, you can enter the word
3963 @samp{foo} by typing @samp{C-t foo}. If you want to insert a
3964 @samp{C-t} you have to press the key twice (i.e., escape the escape
3965 binding).
3967 @example
3968 bindkey -k F1 command
3969 @end example
3970 @noindent
3971 Make the F11 (not F1!) key an alternative screen
3972 escape (besides @samp{C-a}).
3974 @node Bindkey Control, , Bindkey Examples, Key Binding
3975 @section Bindkey Control
3976 @deffn Command mapdefault
3977 (none)@*
3978 Tell screen that the next input character should only be looked up
3979 in the default bindkey table.
3980 @end deffn
3981 @deffn Command mapnotnext
3982 (none)@*
3983 Like mapdefault, but don't even look in the default bindkey table.
3984 @end deffn
3985 @deffn Command maptimeout n
3986 (none)@*
3987 Set the inter-character timer for input sequence detection to a timeout
3988 of @var{n} ms. The default timeout is 300ms. Maptimeout with no
3989 arguments shows the current setting.
3990 @end deffn
3992 @node Flow Control, Termcap, Key Binding, Top
3993 @chapter Flow Control
3994 @cindex flow control
3996 @code{screen} can trap flow control characters or pass them to the
3997 program, as you see fit.  This is useful when your terminal wants to use
3998 XON/XOFF flow control and you are running a program which wants to use
3999 ^S/^Q for other purposes (i.e. @code{emacs}).
4001 @menu
4002 * Flow Control Summary::        The effect of @code{screen} flow control
4003 * Flow::                        Setting the flow control behavior
4004 * XON/XOFF::                    Sending XON or XOFF to the window
4005 @end menu
4007 @node Flow Control Summary, Flow,  , Flow Control
4008 @section About @code{screen} flow control settings
4009 Each window has a flow-control setting that determines how screen deals
4010 with the XON and XOFF characters (and perhaps the interrupt character).
4011 When flow-control is turned off, screen ignores the XON and XOFF
4012 characters, which allows the user to send them to the current program by
4013 simply typing them (useful for the @code{emacs} editor, for instance).
4014 The trade-off is that it will take longer for output from a
4015 ``normal'' program to pause in response to an XOFF.  With
4016 flow-control turned on, XON and XOFF characters are used to immediately
4017 pause the output of the current window.  You can still send these
4018 characters to the current program, but you must use the appropriate
4019 two-character screen commands (typically @kbd{C-a q} (xon) and @kbd{C-a
4020 s} (xoff)).  The xon/xoff commands are also useful for typing C-s and
4021 C-q past a terminal that intercepts these characters.
4023 Each window has an initial flow-control value set with either the
4024 @samp{-f} option or the @code{defflow} command.  By default the
4025 windows are set to automatic flow-switching.  It can then be toggled
4026 between the three states 'fixed on', 'fixed off' and 'automatic'
4027 interactively with the @code{flow} command bound to @kbd{C-a f}.
4029 The automatic flow-switching mode deals with flow control using the
4030 TIOCPKT mode (like @code{rlogin} does). If the tty driver does not
4031 support TIOCPKT, screen tries to determine the right mode based on the
4032 current setting of the application keypad --- when it is enabled,
4033 flow-control is turned off and visa versa.  Of course, you can still
4034 manipulate flow-control manually when needed.
4036 If you're running with flow-control enabled and find that pressing the
4037 interrupt key (usually C-c) does not interrupt the display until another
4038 6-8 lines have scrolled by, try running screen with the @samp{interrupt}
4039 option (add the @samp{interrupt} flag to the @code{flow} command in your
4040 .screenrc, or use the @samp{-i} command-line option).  This causes the
4041 output that @code{screen} has accumulated from the interrupted program
4042 to be flushed.  One disadvantage is that the virtual terminal's memory
4043 contains the non-flushed version of the output, which in rare cases can
4044 cause minor inaccuracies in the output.  For example, if you switch
4045 screens and return, or update the screen with @kbd{C-a l} you would see
4046 the version of the output you would have gotten without @samp{interrupt}
4047 being on.  Also, you might need to turn off flow-control (or use
4048 auto-flow mode to turn it off automatically) when running a program that
4049 expects you to type the interrupt character as input, as the
4050 @samp{interrupt} parameter only takes effect when flow-control is
4051 enabled.  If your program's output is interrupted by mistake, a simple
4052 refresh of the screen with @kbd{C-a l} will restore it.  Give each mode
4053 a try, and use whichever mode you find more comfortable.
4055 @node Flow, XON/XOFF, Flow Control Summary, Flow Control
4056 @section Flow
4057 @deffn Command defflow fstate [interrupt]
4058 (none)@*
4059 Same as the @code{flow} command except that the default setting for new
4060 windows is changed. Initial setting is `auto'.
4061 Specifying @code{flow auto interrupt} has the same effect as the
4062 command-line options @samp{-fa} and @samp{-i}.
4063 Note that if @samp{interrupt} is enabled, all existing displays are
4064 changed immediately to forward interrupt signals.
4065 @end deffn
4067 @kindex f
4068 @kindex C-f
4069 @deffn Command flow [fstate]
4070 (@kbd{C-a f}, @kbd{C-a C-f})@*
4071 Sets the flow-control mode for this window to @var{fstate}, which can be
4072 @samp{on}, @samp{off} or @samp{auto}.
4073 Without parameters it cycles the current window's
4074 flow-control setting.  Default is set by `defflow'.
4075 @end deffn
4077 @node XON/XOFF,  , Flow, Flow Control
4078 @section XON and XOFF
4079 @kindex q
4080 @kindex C-q
4081 @deffn Command xon
4082 (@kbd{C-a q}, @kbd{C-a C-q})@*
4083 Send a ^Q (ASCII XON) to the program in the current window.  Redundant
4084 if flow control is set to @samp{off} or @samp{auto}.
4085 @end deffn
4087 @kindex s
4088 @kindex C-s
4089 @deffn Command xoff
4090 (@kbd{C-a s}, @kbd{C-a C-s})@*
4091 Send a ^S (ASCII XOFF) to the program in the current window.
4092 @end deffn
4094 @node Termcap, Message Line, Flow Control, Top
4095 @chapter Termcap
4097 @code{Screen} demands the most out of your terminal so that it can
4098 perform its VT100 emulation most efficiently.  These functions provide
4099 means for tweaking the termcap entries for both your physical terminal
4100 and the one simulated by @code{screen}.
4102 @menu
4103 * Window Termcap::              Choosing a termcap entry for the window.
4104 * Dump Termcap::                Write out a termcap entry for the window.
4105 * Termcap Syntax::              The @code{termcap} and @code{terminfo} commands.
4106 * Termcap Examples::            Uses for @code{termcap}.
4107 * Special Capabilities::        Non-standard capabilities used by @code{screen}.
4108 * Autonuke::                    Flush unseen output
4109 * Obuflimit::                   Allow pending output when reading more
4110 * Character Translation::       Emulating fonts and charsets.
4111 @end menu
4113 @node Window Termcap, Dump Termcap,  , Termcap
4114 @section Choosing the termcap entry for a window
4115 Usually @code{screen} tries to emulate as much of the VT100/ANSI
4116 standard as possible. But if your terminal lacks certain capabilities
4117 the emulation may not be complete. In these cases @code{screen} has to
4118 tell the applications that some of the features are missing. This is no
4119 problem on machines using termcap, because @code{screen} can use the
4120 @code{$TERMCAP} variable to customize the standard screen termcap.
4122 But if you do a rlogin on another machine or your machine supports only
4123 terminfo this method fails. Because of this @code{screen} offers a way
4124 to deal with these cases. Here is how it works:
4126 When @code{screen} tries to figure out a terminal name for itself, it
4127 first looks for an entry named @code{screen.@var{term}}, where
4128 @var{term} is the contents of your @code{$TERM} variable.  If no such entry
4129 exists, @code{screen} tries @samp{screen} (or @samp{screen-w}, if the
4130 terminal is wide (132 cols or more)).  If even this entry cannot be
4131 found, @samp{vt100} is used as a substitute.
4133 The idea is that if you have a terminal which doesn't support an
4134 important feature (e.g. delete char or clear to EOS) you can build a new
4135 termcap/terminfo entry for @code{screen} (named
4136 @samp{screen.@var{dumbterm}}) in which this capability has been
4137 disabled.  If this entry is installed on your machines you are able to
4138 do a rlogin and still keep the correct termcap/terminfo entry.  The
4139 terminal name is put in the @code{$TERM} variable of all new windows.
4140 @code{screen} also sets the @code{$TERMCAP} variable reflecting the
4141 capabilities of the virtual terminal emulated. 
4142 Furthermore, the variable @code{$WINDOW} is set to the window number of each
4143 window.
4145 The actual set of capabilities supported by the virtual terminal depends
4146 on the capabilities supported by the physical terminal.  If, for
4147 instance, the physical terminal does not support underscore mode,
4148 @code{screen} does not put the @samp{us} and @samp{ue} capabilities into
4149 the window's @code{$TERMCAP} variable, accordingly.  However, a minimum number
4150 of capabilities must be supported by a terminal in order to run
4151 @code{screen}; namely scrolling, clear screen, and direct cursor
4152 addressing (in addition, @code{screen} does not run on hardcopy
4153 terminals or on terminals that over-strike).
4155 Also, you can customize the @code{$TERMCAP} value used by @code{screen} by
4156 using the @code{termcap} command, or by defining the variable
4157 @code{$SCREENCAP} prior to startup.  When the latter defined, its value will be
4158 copied verbatim into each window's @code{$TERMCAP} variable.  This can either
4159 be the full terminal definition, or a filename where the terminal
4160 @samp{screen} (and/or @samp{screen-w}) is defined.
4162 Note that @code{screen} honors the @code{terminfo} command if the system
4163 uses the terminfo database rather than termcap.  On such machines the
4164 @code{$TERMCAP} variable has no effect and you must use the
4165 @code{dumptermcap} command (@pxref{Dump Termcap}) and the @code{tic}
4166 program to generate terminfo entries for @code{screen} windows.
4168 When the boolean @samp{G0} capability is present in the termcap entry
4169 for the terminal on which @code{screen} has been called, the terminal
4170 emulation of @code{screen} supports multiple character sets.  This
4171 allows an application to make use of, for instance, the VT100 graphics
4172 character set or national character sets.  The following control
4173 functions from ISO 2022 are supported: @samp{lock shift G0} (@samp{SI}),
4174 @samp{lock shift G1} (@samp{SO}), @samp{lock shift G2}, @samp{lock shift
4175 G3}, @samp{single shift G2}, and @samp{single shift G3}.  When a virtual
4176 terminal is created or reset, the ASCII character set is designated as
4177 @samp{G0} through @samp{G3}.  When the @samp{G0} capability is present,
4178 screen evaluates the capabilities @samp{S0}, @samp{E0}, and @samp{C0} if
4179 present. @samp{S0} is the sequence the terminal uses to enable and start
4180 the graphics character set rather than @samp{SI}.  @samp{E0} is the
4181 corresponding replacement for @samp{SO}. @samp{C0} gives a character by
4182 character translation string that is used during semi-graphics mode.
4183 This string is built like the @samp{acsc} terminfo capability.
4185 When the @samp{po} and @samp{pf} capabilities are present in the
4186 terminal's termcap entry, applications running in a @code{screen} window
4187 can send output to the printer port of the terminal.  This allows a user
4188 to have an application in one window sending output to a printer
4189 connected to the terminal, while all other windows are still active (the
4190 printer port is enabled and disabled again for each chunk of output).
4191 As a side-effect, programs running in different windows can send output
4192 to the printer simultaneously.  Data sent to the printer is not
4193 displayed in the window. The @code{info} command displays a line starting
4194 with @samp{PRIN} while the printer is active.
4196 Some capabilities are only put into the @code{$TERMCAP} variable of the virtual
4197 terminal if they can be efficiently implemented by the physical
4198 terminal.  For instance, @samp{dl} (delete line) is only put into the
4199 @code{$TERMCAP} variable if the terminal supports either delete line itself or
4200 scrolling regions. Note that this may provoke confusion, when the
4201 session is reattached on a different terminal, as the value of @code{$TERMCAP}
4202 cannot be modified by parent processes.  You can force @code{screen} to
4203 include all capabilities in @code{$TERMCAP} with the @samp{-a}
4204 command-line option (@pxref{Invoking Screen}).
4206 The "alternate screen" capability is not enabled by default.
4207 Set the @code{altscreen} @file{.screenrc} command to enable it.
4209 @node Dump Termcap, Termcap Syntax, Window Termcap, Termcap
4210 @section Write out the window's termcap entry
4211 @kindex .
4212 @deffn Command dumptermcap
4213 (@kbd{C-a .})@*
4214 Write the termcap entry for the virtual terminal optimized for the
4215 currently active window to the file @file{.termcap} in the user's
4216 @file{$HOME/.screen} directory (or wherever @code{screen} stores its
4217 sockets. @pxref{Files}).  This termcap entry is identical to
4218 the value of the environment variable @code{$TERMCAP} that is set up by
4219 @code{screen} for each window. For terminfo based systems you will need
4220 to run a converter like @code{captoinfo} and then compile the entry with
4221 @code{tic}.
4222 @end deffn
4224 @node Termcap Syntax, Termcap Examples, Dump Termcap, Termcap
4225 @section The @code{termcap} command
4226 @deffn Command termcap term terminal-tweaks [window-tweaks]
4227 @deffnx Command terminfo term terminal-tweaks [window-tweaks]
4228 @deffnx Command termcapinfo term terminal-tweaks [window-tweaks]
4229 (none)@*
4230 Use this command to modify your terminal's termcap entry without going
4231 through all the hassles involved in creating a custom termcap entry.
4232 Plus, you can optionally customize the termcap generated for the
4233 windows.  
4234 You have to place these commands in one of the screenrc startup files, as they
4235 are meaningless once the terminal emulator is booted.
4237 If your system uses the terminfo database rather than termcap,
4238 @code{screen} will understand the @code{terminfo} command, which has the
4239 same effects as the @code{termcap} command.   Two separate commands are
4240 provided, as there are subtle syntactic differences, e.g. when parameter
4241 interpolation (using @samp{%}) is required. Note that the termcap names of
4242 the capabilities should also be used with the @code{terminfo} command.
4244 In many cases, where the arguments are valid in both terminfo and termcap
4245 syntax, you can use the command @code{termcapinfo}, which is just a
4246 shorthand for a pair of @code{termcap} and @code{terminfo} commands with
4247 identical arguments.
4248 @end deffn
4250 The first argument specifies which terminal(s) should be affected by
4251 this definition.  You can specify multiple terminal names by separating
4252 them with @samp{|}s.  Use @samp{*} to match all terminals and @samp{vt*}
4253 to match all terminals that begin with @samp{vt}.
4255 Each @var{tweak} argument contains one or more termcap defines
4256 (separated by @samp{:}s) to be inserted at the start of the appropriate
4257 termcap entry, enhancing it or overriding existing values.  The first
4258 tweak modifies your terminal's termcap, and contains definitions that
4259 your terminal uses to perform certain functions.  Specify a null string
4260 to leave this unchanged (e.g. "").  The second (optional) tweak modifies
4261 all the window termcaps, and should contain definitions that screen
4262 understands (@pxref{Virtual Terminal}).
4264 @node Termcap Examples, Special Capabilities, Termcap Syntax, Termcap
4265 @section Termcap Examples
4266 Some examples:
4268 @example
4269 termcap xterm*  xn:hs@@
4270 @end example
4272 @noindent
4273 Informs @code{screen} that all terminals that begin with @samp{xterm}
4274 have firm auto-margins that allow the last position on the screen to be
4275 updated (xn), but they don't really have a status line (no 'hs' --
4276 append @samp{@@} to turn entries off).  Note that we assume @samp{xn} for
4277 all terminal names that start with @samp{vt}, but only if you don't
4278 specify a termcap command for that terminal.
4280 @example
4281 termcap vt*  xn
4282 termcap vt102|vt220  Z0=\E[?3h:Z1=\E[?3l
4283 @end example
4285 @noindent
4286 Specifies the firm-margined @samp{xn} capability for all terminals that
4287 begin with @samp{vt}, and the second line will also add the
4288 escape-sequences to switch into (Z0) and back out of (Z1)
4289 132-character-per-line mode if this is a VT102 or VT220.  (You must
4290 specify Z0 and Z1 in your termcap to use the width-changing commands.)
4292 @example
4293 termcap vt100  ""  l0=PF1:l1=PF2:l2=PF3:l3=PF4
4294 @end example
4296 @noindent
4297 This leaves your vt100 termcap alone and adds the function key labels to
4298 each window's termcap entry.
4300 @example
4301 termcap h19|z19  am@@:im=\E@@:ei=\EO  dc=\E[P
4302 @end example
4304 @noindent
4305 Takes a h19 or z19 termcap and turns off auto-margins (am@@) and enables
4306 the insert mode (im) and end-insert (ei) capabilities (the @samp{@@} in
4307 the @samp{im} string is after the @samp{=}, so it is part of the
4308 string).  Having the @samp{im} and @samp{ei} definitions put into your
4309 terminal's termcap will cause screen to automatically advertise the
4310 character-insert capability in each window's termcap.  Each window will
4311 also get the delete-character capability (dc) added to its termcap,
4312 which screen will translate into a line-update for the terminal (we're
4313 pretending it doesn't support character deletion).
4315 If you would like to fully specify each window's termcap entry, you
4316 should instead set the @code{$SCREENCAP} variable prior to running
4317 @code{screen}.  @xref{Virtual Terminal}, for the details of the
4318 @code{screen} terminal emulation.  @xref{Top, , Termcap, termcap, The
4319 Termcap Manual}, for more information on termcap definitions.
4321 @node Special Capabilities, Autonuke, Termcap Examples, Termcap
4322 @section Special Terminal Capabilities
4323 @cindex terminal capabilities
4324 @cindex capabilities 
4325 The following table describes all terminal capabilities that are
4326 recognized by @code{screen} and are not in the termcap manual
4327 (@pxref{Top, , Termcap, termcap, The Termcap Manual}).
4328 You can place these capabilities in your termcap entries (in
4329 @file{/etc/termcap}) or use them with the commands @code{termcap},
4330 @code{terminfo} and @code{termcapinfo} in your @code{screenrc} files. It is
4331 often not possible to place these capabilities in the terminfo database.
4332 @table @samp
4333 @item LP
4334 (bool)@*
4335 Terminal has VT100 style margins (`magic margins'). Note that
4336 this capability is obsolete --- @code{screen} now uses the standard 
4337 @samp{xn} instead.
4339 @item Z0
4340 (str)@*
4341 Change width to 132 columns.
4343 @item Z1
4344 (str)@*
4345 Change width to 80 columns.
4347 @item WS
4348 (str)@*
4349 Resize display. This capability has the desired width and height as
4350 arguments.  SunView(tm) example: @samp{\E[8;%d;%dt}.
4352 @item NF
4353 (bool)@*
4354 Terminal doesn't need flow control. Send ^S and ^Q direct to
4355 the application. Same as @code{flow off}. The opposite of this
4356 capability is @samp{nx}.
4358 @item G0
4359 (bool)@*
4360 Terminal can deal with ISO 2022 font selection sequences.
4362 @item S0
4363 (str)@*
4364 Switch charset @samp{G0} to the specified charset. Default
4365 is @samp{\E(%.}.
4367 @item E0
4368 (str)@*
4369 Switch charset @samp{G0} back to standard charset. Default
4370 is @samp{\E(B}.
4372 @item C0
4373 (str)@*
4374 Use the string as a conversion table for font 0. See
4375 the @samp{ac} capability for more details.
4377 @item CS
4378 (str)@*
4379 Switch cursor-keys to application mode.
4381 @item CE
4382 (str)@*
4383 Switch cursor-keys to cursor mode.
4385 @item AN
4386 (bool)@*
4387 Enable autonuke for displays of this terminal type.
4388 (@pxref{Autonuke}).
4390 @item OL
4391 (num)@*
4392 Set the output buffer limit. See the @samp{obuflimit} command
4393 (@pxref{Obuflimit}) for more details.
4395 @item KJ
4396 (str)@*
4397 Set the encoding of the terminal. See the @samp{encoding} command
4398 (@pxref{Character Processing}) for valid encodings.
4400 @item AF
4401 (str)@*
4402 Change character foreground color in an ANSI conform way. This
4403 capability will almost always be set to @samp{\E[3%dm}
4404 (@samp{\E[3%p1%dm} on terminfo machines).
4406 @item AB
4407 (str)@*
4408 Same as @samp{AF}, but change background color.
4410 @item AX
4411 (bool)@*
4412 Does understand ANSI set default fg/bg color (@samp{\E[39m / \E[49m}).
4414 @item XC
4415 (str)@*
4416 Describe a translation of characters to strings depending on the
4417 current font.  (@pxref{Character Translation}).
4419 @item XT
4420 (bool)@*
4421 Terminal understands special xterm sequences (OSC, mouse tracking).
4423 @item C8
4424 (bool)@*
4425 Terminal needs bold to display high-intensity colors (e.g. Eterm).
4427 @item TF
4428 (bool)@*
4429 Add missing capabilities to the termcap/info entry. (Set by default).
4430 @end table
4432 @node Autonuke, Obuflimit, Special Capabilities, Termcap
4433 @section Autonuke
4434 @deffn Command autonuke @var{state}
4435 (none)@*
4436 Sets whether a clear screen sequence should nuke all the output
4437 that has not been written to the terminal. @xref{Obuflimit}.
4438 This property is set per display, not per window.
4439 @end deffn
4441 @deffn Command defautonuke @var{state}
4442 (none)@*
4443 Same as the @code{autonuke} command except that the default setting for
4444 new displays is also changed. Initial setting is @code{off}. 
4445 Note that you can use the special @code{AN} terminal capability if you
4446 want to have a terminal type dependent setting.
4447 @end deffn
4449 @node Obuflimit, Character Translation, Autonuke, Termcap
4450 @section Obuflimit
4451 @deffn Command obuflimit [@var{limit}]
4452 (none)@*
4453 If the output buffer contains more bytes than the specified limit, no
4454 more data will be read from the windows. The default value is 256. If
4455 you have a fast display (like @code{xterm}), you can set it to some 
4456 higher value. If no argument is specified, the current setting is displayed.
4457 This property is set per display, not per window.
4458 @end deffn
4460 @deffn Command defobuflimit @var{limit}
4461 (none)@*
4462 Same as the @code{obuflimit} command except that the default setting for new
4463 displays is also changed. Initial setting is 256 bytes. Note that you can use
4464 the special @code{OL} terminal capability if you want to have a terminal
4465 type dependent limit.
4466 @end deffn
4468 @node Character Translation, , Obuflimit, Termcap
4469 @section Character Translation
4470 @code{Screen} has a powerful mechanism to translate characters to
4471 arbitrary strings depending on the current font and terminal type.
4472 Use this feature if you want to work with a common standard character
4473 set (say ISO8851-latin1) even on terminals that scatter the more
4474 unusual characters over several national language font pages.
4476 Syntax:
4478 @example
4479     XC=@var{<charset-mapping>}@{,,@var{<charset-mapping>}@}
4480     @var{<charset-mapping>} := @var{<designator>}@var{<template>}@{,@var{<mapping>}@}
4481     @var{<mapping>} := @var{<char-to-be-mapped>}@var{<template-arg>}
4482 @end example
4484 The things in braces may be repeated any number of times.
4486 A @var{<charset-mapping>} tells screen how to map characters
4487 in font @var{<designator>} (@samp{B}: Ascii, @samp{A}: UK,
4488 @samp{K}: german, etc.)
4489 to strings. Every @var{<mapping>} describes to what string a single
4490 character will be translated. A template mechanism is used, as 
4491 most of the time the codes have a lot in common (for example
4492 strings to switch to and from another charset). Each occurrence
4493 of @samp{%} in @var{<template>} gets substituted with the 
4494 @var{template-arg}
4495 specified together with the character. If your strings are not
4496 similar at all, then use @samp{%} as a template and place the full
4497 string in @var{<template-arg>}. A quoting mechanism was added to make
4498 it possible to use a real @samp{%}. The @samp{\} character quotes the
4499 special characters @samp{\}, @samp{%}, and @samp{,}.
4501 Here is an example:
4503 @example
4504     termcap hp700 'XC=B\E(K%\E(B,\304[,\326\\\\,\334]'
4505 @end example
4507 This tells @code{screen}, how to translate ISOlatin1 (charset @samp{B})
4508 upper case umlaut characters on a @code{hp700} terminal that has a
4509 German charset. @samp{\304} gets translated to
4510 @samp{\E(K[\E(B} and so on.
4511 Note that this line gets parsed *three* times before the internal
4512 lookup table is built, therefore a lot of quoting is needed to
4513 create a single @samp{\}.
4515 Another extension was added to allow more emulation: If a mapping
4516 translates the unquoted @samp{%} char, it will be sent to the terminal
4517 whenever screen switches to the corresponding @var{<designator>}.
4518 In this
4519 special case the template is assumed to be just @samp{%} because
4520 the charset switch sequence and the character mappings normally
4521 haven't much in common.
4523 This example shows one use of the extension:
4524 @example
4525     termcap xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334'
4526 @end example
4528 Here, a part of the German (@samp{K}) charset is emulated on an xterm.
4529 If screen has to change to the @samp{K} charset, @samp{\E(B} will be
4530 sent
4531 to the terminal, i.e. the ASCII charset is used instead. The
4532 template is just @samp{%}, so the mapping is straightforward:
4533 @samp{[} to @samp{\304}, @samp{\} to @samp{\326}, and @samp{]} to
4534 @samp{\334}.
4536 @node Message Line, Logging, Termcap, Top
4537 @chapter The Message Line
4538 @cindex message line
4540 @code{Screen} displays informational messages and other diagnostics in a
4541 @dfn{message line} at the bottom of the screen.  If your terminal has a
4542 status line defined in its termcap, screen will use this for displaying
4543 its messages, otherwise the last line of the screen will be temporarily
4544 overwritten and output will be momentarily interrupted.  The message
4545 line is automatically removed after a few seconds delay, but it can also
4546 be removed early (on terminals without a status line) by beginning to
4547 type.
4549 @menu
4550 * Privacy Message::             Using the message line from your program.
4551 * Hardware Status Line::        Use the terminal's hardware status line.
4552 * Last Message::                Redisplay the last message.
4553 * Message Wait::                Control how long messages are displayed.
4554 @end menu
4556 @node Privacy Message, Hardware Status Line,  , Message Line
4557 @section Using the message line from your program
4558 The message line facility can be used by an application running in the
4559 current window by means of the ANSI @dfn{Privacy message} control
4560 sequence.  For instance, from within the shell, try something like:
4562 @example
4563 echo "@value{esc}^Hello world from window $WINDOW@value{esc}\"
4564 @end example
4566 where @samp{@value{esc}} is ASCII ESC and the @samp{^} that follows it
4567 is a literal caret or up-arrow.
4569 @node Hardware Status Line, Last Message, Privacy Message, Message Line
4570 @section Hardware Status Line
4571 @deffn Command hardstatus [state]
4572 @deffnx Command hardstatus [@code{always}]@code{lastline}|@code{message}|@code{ignore} [string]
4573 @deffnx Command hardstatus @code{string} [string]
4574 (none)@*
4575 This command configures the use and emulation of the terminal's
4576 hardstatus line. The first form toggles whether @code{screen}
4577 will use the hardware status line to display messages. If the
4578 flag is set to @samp{off}, these messages
4579 are overlaid in reverse video mode at the display line. The default
4580 setting is @samp{on}.
4582 The second form tells screen what to do if the terminal doesn't
4583 have a hardstatus line (i.e. the termcap/terminfo capabilities
4584 "hs", "ts", "fs" and "ds" are not set). If the type
4585 @code{lastline} is used, screen will reserve the last line of the
4586 display for the hardstatus. @code{message} uses
4587 @code{screen}'s message mechanism and
4588 @code{ignore} tells @code{screen} never to display the hardstatus.
4589 If you prepend the word @code{always} to the type (e.g., @code{alwayslastline}), @code{screen} will use
4590 the type even if the terminal supports a hardstatus line.
4592 The third form specifies the contents of the hardstatus line.
4593 @code{%h} is used as default string, i.e., the stored hardstatus of the
4594 current window (settable via @samp{ESC]0;^G} or @samp{ESC_\\}) is
4595 displayed.
4596 You can customize this to any string you like including
4597 string escapes (@pxref{String Escapes}).
4598 If you leave
4599 out the argument @var{string}, the current string is displayed.
4601 You can mix the second and third form by providing the string as
4602 additional argument.
4603 @end deffn
4605 @node Last Message, Message Wait, Hardware Status Line, Message Line
4606 @section Display Last Message
4607 @kindex m
4608 @kindex C-m
4609 @deffn Command lastmsg
4610 (@kbd{C-a m}, @kbd{C-a C-m})@*
4611 Repeat the last message displayed in the message line.  Useful if you're
4612 typing when a message appears, because (unless your terminal has a
4613 hardware status line) the message goes away when you press a key.
4614 @end deffn
4616 @node Message Wait,  , Last Message, Message Line
4617 @section Message Wait
4618 @deffn Command msgminwait sec
4619 (none)@*
4620 Defines the time @code{screen} delays a new message when another is
4621 currently displayed.  Defaults to 1 second.
4622 @end deffn
4624 @deffn Command msgwait sec
4625 (none)@*
4626 Defines the time a message is displayed, if @code{screen} is not
4627 disturbed by other activity.  Defaults to 5 seconds.
4628 @end deffn
4630 @node Logging, Startup, Message Line, Top
4631 @chapter Logging
4633 This section describes the commands for keeping a record of your session.
4635 @menu
4636 * Hardcopy::                    Dump the current screen to a file
4637 * Log::                         Log the output of a window to a file
4638 @end menu
4640 @node Hardcopy, Log,  , Logging
4641 @section hardcopy
4642 @kindex h
4643 @deffn Command hardcopy [-h] [@var{file}]
4644 (@kbd{C-a h})@*
4645 Writes out the currently displayed image to the file @var{file}, or,
4646 if no filename is specified, to @file{hardcopy.@var{n}}
4647 in the default directory, where @var{n} is the number of the
4648 current window.  This either appends or overwrites the file if it
4649 exists, as determined by the @code{hardcopy_append} command.
4650 If the option @code{-h} is specified, dump also the
4651 contents of the scrollback buffer.
4652 @end deffn
4654 @deffn Command hardcopy_append state
4655 (none)@*
4656 If set to @samp{on}, @code{screen} will append to the
4657 @file{hardcopy.@var{n}} files created by the command @code{hardcopy};
4658 otherwise, these files are overwritten each time.
4659 @end deffn
4661 @deffn Command hardcopydir directory
4662 (none)@*
4663 Defines a directory where hardcopy files will be placed.
4664 If unset, hardcopys are dumped in screen's current working
4665 directory.
4666 @end deffn
4668 @node Log,  , Hardcopy, Logging
4669 @section log
4671 @deffn Command deflog state
4672 (none)@*
4673 Same as the @code{log} command except that the default setting for new
4674 windows is changed.  Initial setting is `off'.
4675 @end deffn
4677 @kindex H
4678 @deffn Command log [state]
4679 (@kbd{C-a H})@*
4680 Begins/ends logging of the current window to the file
4681 @file{screenlog.@var{n}} in the window's default directory, where
4682 @var{n} is the number of the current window.
4683 This filename can be changed with the @samp{logfile} command.
4684 If no parameter is given,
4685 the logging state is toggled.  The session log is
4686 appended to the previous contents of the file if it already exists.  The
4687 current contents and the contents of the scrollback history are not
4688 included in the session log.  Default is @samp{off}.
4689 @end deffn
4691 @deffn Command logfile filename
4692 @deffnx Command logfile flush secs
4693 (none)@*
4694 Defines the name the log files will get. The default is @samp{screenlog.%n}.
4695 The second form changes the number of seconds @code{screen}
4696 will wait before flushing the logfile buffer to the file-system. The
4697 default value is 10 seconds.
4698 @end deffn
4700 @deffn Command logtstamp [state]
4701 @deffnx Command logtstamp @code{after} secs
4702 @deffnx Command logtstamp @code{string} string
4703 (none)@*
4704 This command controls logfile time-stamp mechanism of screen. If
4705 time-stamps are turned @samp{on}, screen adds a string containing
4706 the current time to the logfile after two minutes of inactivity.
4707 When output continues and more than another two minutes have passed,
4708 a second time-stamp is added to document the restart of the
4709 output. You can change this timeout with the second form
4710 of the command. The third form is used for customizing the time-stamp
4711 string (@samp{-- %n:%t -- time-stamp -- %M/%d/%y %c:%s --\n} by
4712 default).
4713 @end deffn
4715 @node Startup, Miscellaneous, Logging, Top
4716 @chapter Startup
4718 This section describes commands which are only useful in the
4719 @file{.screenrc} file, for use at startup.
4721 @menu
4722 * echo::                        Display a message.
4723 * sleep::                       Pause execution of the @file{.screenrc}.
4724 * Startup Message::             Control display of the copyright notice.
4725 @end menu
4727 @node echo, sleep,  , Startup
4728 @section echo
4729 @deffn Command echo [@samp{-n}] message
4730 (none)@*
4731 The echo command may be used to annoy @code{screen} users with a
4732 'message of the day'. Typically installed in a global screenrc. 
4733 The option @samp{-n} may be used to suppress the line feed.
4734 See also @code{sleep}.  
4735 Echo is also useful for online checking of environment variables.
4736 @end deffn
4738 @node sleep, Startup Message, echo, Startup
4739 @section sleep
4740 @deffn Command sleep num
4741 (none)@*
4742 This command will pause the execution of a .screenrc file for @var{num}
4743 seconds.  Keyboard activity will end the sleep.  It may be used to give
4744 users a chance to read the messages output by @code{echo}.
4745 @end deffn
4747 @node Startup Message,  , sleep, Startup
4748 @section Startup Message
4749 @deffn Command startup_message state
4750 (none)@*
4751 Select whether you want to see the copyright notice during startup.
4752 Default is @samp{on}, as you probably noticed.
4753 @end deffn
4755 @node Miscellaneous, String Escapes, Startup, Top
4756 @chapter Miscellaneous commands
4758 The commands described here do not fit well under any of the other
4759 categories.
4761 @menu
4762 * At::                          Execute a command at other displays or windows.
4763 * Break::                       Send a break signal to the window.
4764 * Debug::                       Suppress/allow debugging output.
4765 * License::                     Display the disclaimer page.
4766 * Nethack::                     Use @code{nethack}-like error messages.
4767 * Nonblock::                    Disable flow-control to a display.
4768 * Number::                      Change the current window's number.
4769 * Silence::                     Notify on inactivity.
4770 * Time::                        Display the time and load average.
4771 * Verbose::                     Display window creation commands.
4772 * Version::                     Display the version of @code{screen}.
4773 * Zombie::                      Keep dead windows.
4774 * Printcmd::                    Set command for VT100 printer port emulation.
4775 * Rendition::                   Change text attributes in caption for flagged windows.
4776 * Sorendition::                 Change the text highlighting method.
4777 * Attrcolor::                   Map attributes to colors.
4778 * Setsid::                      Change process group management.
4779 * Eval::                        Parse and execute arguments.
4780 * Maxwin::                      Set the maximum window number.
4781 * Backtick::                    Program a command for a backtick string escape.
4782 * Screen Saver::                Define a screen safer.
4783 * Zmodem::                      Define how screen treats zmodem requests.
4784 * Mousetrack::                  Set whether screen should track mouse events.
4785 @end menu
4787 @node At, Break,  , Miscellaneous
4788 @section At
4789 @deffn Command at [identifier][#|*|%] command [args]
4790 (none)@*
4791 Execute a command at other displays or windows as if it had been entered there.
4792 @code{At} changes the context (the `current window' or `current display'
4793 setting) of the command. If the first parameter describes a non-unique context,
4794 the command will be executed multiple times. If the first parameter is of the 
4795 form @samp{@var{identifier}*} then identifier is matched against user names.
4796 The command is executed once for each display of the selected user(s).
4797 If the first parameter is of the form @samp{@var{identifier}%} identifier is
4798 matched against displays. Displays are named after the ttys they attach. The
4799 prefix @samp{/dev/} or @samp{/dev/tty} may be omitted from the identifier.
4800 If @var{identifier} has a @code{#} or nothing appended it is matched against
4801 window numbers and titles. Omitting an identifier in front of the @code{#},
4802 @code{*} or @code{%} character selects all users, displays or windows because
4803 a prefix-match is performed. Note that on the affected display(s) a short
4804 message will describe what happened. 
4805 Note that the @code{#} character works as a comment introducer when it is 
4806 preceded by whitespace. This can be escaped by prefixing @code{#} with a 
4807 @code{\}. 
4808 Permission is checked for the initiator of the @code{at} command, not for the
4809 owners of the affected display(s).
4810 Caveat: 
4811 When matching against windows, the command is executed at least 
4812 once per window. Commands that change the internal arrangement of windows
4813 (like @code{other}) may be called again. In shared windows the command will
4814 be repeated for each attached display. Beware, when issuing toggle commands
4815 like @code{login}!
4816 Some commands (e.g. @code{\*Qprocess}) require
4817 that a display is associated with the target windows.  These commands may not
4818 work correctly under @code{at} looping over windows.
4819 @end deffn
4821 @node Break, Debug, At, Miscellaneous
4822 @section Break
4823 @kindex b
4824 @kindex C-b
4825 @deffn Command break [duration]
4826 (@kbd{C-a b}, @kbd{C-a C-b})@*
4827 Send a break signal for @var{duration}*0.25 seconds to this window.
4828 For non-Posix systems the time interval is rounded up to full seconds.
4829 Most useful if a character device is attached to the window rather than
4830 a shell process (@pxref{Window Types}). The maximum duration of
4831 a break signal is limited to 15 seconds.
4832 @end deffn
4834 @kindex B
4835 @deffn Command pow_break
4836 (@kbd{C-a B})@*
4837 Reopen the window's terminal line and send a break condition.
4838 @end deffn
4840 @deffn Command breaktype [tcsendbreak|TIOCSBRK|TCSBRK]
4841 (none)@*
4842 Choose one of the available methods of generating a break signal for
4843 terminal devices. This command should affect the current window only.
4844 But it still behaves identical to @code{defbreaktype}. This will be changed in
4845 the future.
4846 Calling @code{breaktype} with no parameter displays the break setting for the
4847 current window.
4848 @end deffn
4850 @deffn Command defbreaktype [tcsendbreak|TIOCSBRK|TCSBRK]
4851 (none)@*
4852 Choose one of the available methods of generating a break signal for
4853 terminal devices opened afterwards. The preferred methods are 
4854 @code{tcsendbreak} and
4855 @code{TIOCSBRK}. The third, @code{TCSBRK}, blocks the complete @code{screen}
4856 session for the duration of the break, but it may be the only way to
4857 generate long breaks. @code{tcsendbreak} and @code{TIOCSBRK} may or may not
4858 produce long breaks with spikes (e.g. 4 per second). This is not only system
4859 dependent, this also differs between serial board drivers.
4860 Calling @code{defbreaktype} with no parameter displays the current setting.
4861 @end deffn
4863 @node Debug, License, Break, Miscellaneous
4864 @section Debug
4865 @deffn Command debug [on|off]
4866 (none)@*
4867 Turns runtime debugging on or off. If @code{screen} has been compiled with
4868 option @code{-DDEBUG} debugging is available and is turned on per default.
4869 Note that this command only affects debugging output from the main 
4870 @samp{SCREEN} process correctly. Debug output from attacher processes can only
4871 be turned off once and forever.
4872 @end deffn
4874 @node License, Nethack, Debug, Miscellaneous
4875 @section License
4876 @kindex ,
4877 @deffn Command license
4878 (@kbd{C-a ,})@*
4879 Display the disclaimer page. This is done whenever @code{screen} is
4880 started without options, which should be often enough.
4881 @end deffn
4883 @node Nethack, Nonblock, License, Miscellaneous
4884 @section Nethack
4885 @deffn Command nethack state
4886 (none)@*
4887 Changes the kind of error messages used by @code{screen}.  When you are
4888 familiar with the game @code{nethack}, you may enjoy the nethack-style
4889 messages which will often blur the facts a little, but are much funnier
4890 to read. Anyway, standard messages often tend to be unclear as well.
4892 This option is only available if @code{screen} was compiled with the
4893 NETHACK flag defined (@pxref{Installation}). The default setting is then
4894 determined by the presence of the environment variable
4895 @code{$NETHACKOPTIONS} and the file @code{~/.nethackrc} - if either one is
4896 present, the default is @code{on}.
4897 @end deffn
4899 @node Nonblock, Number, Nethack, Miscellaneous
4900 @section Nonblock
4901 @deffn Command nonblock [@var{state}|@var{numsecs}]
4902 Tell screen how to deal with user interfaces (displays) that cease to
4903 accept output. This can happen if a user presses ^S or a TCP/modem
4904 connection gets cut but no hangup is received. If nonblock is
4905 @code{off} (this is the default) screen waits until the display 
4906 restarts to accept the output. If nonblock is @code{on}, screen
4907 waits until the timeout is reached (@code{on} is treated as 1s). If the
4908 display still doesn't receive characters, screen will consider
4909 it ``blocked'' and stop sending characters to it. If at
4910 some time it restarts to accept characters, screen will unblock 
4911 the display and redisplay the updated window contents.
4912 @end deffn
4914 @deffn Command defnonblock @var{state}|@var{numsecs}
4915 Same as the @code{nonblock} command except that the default setting for
4916 displays is changed. Initial setting is @code{off}.
4917 @end deffn
4919 @node Number, Silence, Nonblock, Miscellaneous
4920 @section Number
4921 @kindex N
4922 @deffn Command number [[+|-]@var{n}]
4923 (@kbd{C-a N})@*
4924 Change the current window's number. If the given number @var{n} is already
4925 used by another window, both windows exchange their numbers. If no argument is
4926 specified, the current window number (and title) is shown. Using either a
4927 plus (`+') or minus (`-') will change the window's number by the relative
4928 amount specified.
4929 @end deffn
4931 @node Silence, Time, Number, Miscellaneous
4932 @section Silence
4933 @kindex _
4934 @deffn Command silence [@var{state}|@var{sec}]
4935 (@kbd{C-a _})@*
4936 Toggles silence monitoring of windows. When silence is turned on and an 
4937 affected window is switched into the background, you will receive the
4938 silence notification message in the status line after a specified period
4939 of inactivity (silence). The default timeout can be changed with the
4940 @code{silencewait} command or by specifying a number of seconds instead of
4941 @code{on} or @code{off}. Silence is initially off for all windows.
4942 @end deffn
4944 @deffn Command defsilence state
4945 (none)@*
4946 Same as the @code{silence} command except that the default setting for
4947 new windows is changed.  Initial setting is `off'.
4948 @end deffn
4950 @deffn Command silencewait @var{seconds}
4951 (none)@*
4952 Define the time that all windows monitored for silence should wait
4953 before displaying a message. Default is 30 seconds.
4954 @end deffn
4956 @node Time, Verbose, Silence, Miscellaneous
4957 @section Time
4958 @kindex t
4959 @kindex C-t
4960 @deffn Command time [@var{string}]
4961 (@kbd{C-a t}, @kbd{C-a C-t})@*
4962 Uses the message line to display the time of day, the host name, and the
4963 load averages over 1, 5, and 15 minutes (if this is available on your
4964 system).  For window-specific information use @code{info} (@pxref{Info}).
4965 If a @var{string} is specified, it changes the format of the time report
4966 like it is described in the string escapes chapter (@pxref{String Escapes}). Screen uses a default of @samp{%c:%s %M %d %H%? %l%?}.
4967 @end deffn
4969 @node Verbose, Version, Time, Miscellaneous
4970 @section Verbose
4971 @deffn Command verbose [on|off]
4972 If verbose is switched on, the command name is echoed, whenever a window
4973 is created (or resurrected from zombie state). Default is off.
4974 Without a parameter, the current setting is shown.
4975 @end deffn
4977 @node Version, Zombie, Verbose, Miscellaneous
4978 @section Version
4979 @kindex v
4980 @deffn Command version
4981 (@kbd{C-a v})@*
4982 Display the version and modification date in the message line.
4983 @end deffn
4985 @node Zombie, Printcmd, Version, Miscellaneous
4986 @section Zombie
4987 @deffn Command zombie [@var{keys} [onerror] ]
4988 @deffnx Command defzombie [@var{keys}]
4989 (none)@*
4990 Per default windows are removed from the window list as soon as the
4991 windows process (e.g. shell) exits. When a string of two keys is
4992 specified to the zombie command, `dead' windows will remain in the list.
4993 The @code{kill} command may be used to remove the window. Pressing the first key
4994 in the dead window has the same effect. Pressing the second key, however,
4995 screen will attempt to resurrect the window. The process that was initially 
4996 running in the window will be launched again. Calling @code{zombie} without
4997 parameters will clear the zombie setting, thus making windows disappear when
4998 the process terminates.
5000 As the zombie setting is affected globally for all windows, this command 
5001 should only be called @code{defzombie}. Until we need this as a per window 
5002 setting, the commands @code{zombie} and @code{defzombie} are synonymous.
5004 Optionally you can put the word @code{onerror} after the keys. This will
5005 cause screen to monitor exit status of the process running in the window.
5006 If it exits normally ('0'), the window disappears. Any other exit value
5007 causes the window to become a zombie.
5008 @end deffn
5010 @node Printcmd, Rendition, Zombie, Miscellaneous
5011 @section Printcmd
5012 @deffn Command printcmd [@var{cmd}]
5013 (none)@*
5014 If @var{cmd} is not an empty string, screen will not use the terminal
5015 capabilities @code{po/pf} for printing if it detects an ansi print
5016 sequence @code{ESC [ 5 i}, but pipe the output into @var{cmd}.
5017 This should normally be a command like @samp{lpr} or
5018 @samp{cat > /tmp/scrprint}.
5019 @code{Printcmd} without an argument displays the current setting.
5020 The ansi sequence @code{ESC \} ends printing and closes the pipe.
5022 Warning: Be careful with this command! If other user have write
5023 access to your terminal, they will be able to fire off print commands.
5024 @end deffn
5026 @node Rendition, Sorendition, Printcmd, Miscellaneous
5027 @section Rendition
5028 @deffn Command rendition bell | monitor | so @var{attr} [@var{color}]
5029 (none)@*
5030 Change the way screen renders the titles of windows that have monitor
5031 or bell flags set in caption or hardstatus or windowlist.
5032 See the chapter
5033 about string escapes (@pxref{String Escapes}) for the syntax of
5034 the modifiers. The default for monitor is currently @samp{=b} (bold,
5035 active colors), and for bell is @samp{=ub} (underline, bold and
5036 active colors).
5037 @end deffn
5039 @node Sorendition, Attrcolor, Rendition, Miscellaneous
5040 @section Sorendition
5041 @deffn Command sorendition [@var{attr} [@var{color}]]
5042 (none)@*
5043 This command has been deprecated. Use @code{rendition so} instead. 
5044 @end deffn
5046 @node Attrcolor, Setsid, Sorendition, Miscellaneous
5047 @section Attrcolor
5048 @deffn Command attrcolor @var{attrib} [@var{attribute/color-modifier}]
5049 (none)@*
5050 This command can be used to highlight attributes by changing the color of
5051 the text. If the attribute
5052 @var{attrib}
5053 is in use, the specified attribute/color modifier is also applied. If no
5054 modifier is given, the current one is deleted. See the chapter
5055 about string escapes (@pxref{String Escapes}) for the syntax of
5056 the modifier. @code{Screen} understands two pseudo-attributes, @code{i}
5057 stands for high-intensity foreground color and @code{I} for
5058 high-intensity background color.
5060 @noindent 
5061 Examples:
5062 @table @code
5063 @item attrcolor b "R"
5064 Change the color to bright red if bold text is to be printed.
5065 @item attrcolor u "-u b"
5066 Use blue text instead of underline.
5067 @item attrcolor b ".I"
5068 Use bright colors for bold text. Most terminal emulators do this
5069 already.
5070 @item attrcolor i "+b"
5071 Make bright colored text also bold.
5072 @end table
5073 @end deffn
5075 @node Setsid, Eval, Attrcolor, Miscellaneous
5076 @section Setsid
5077 @deffn Command setsid state
5078 (none)@*
5079 Normally @code{screen} uses different sessions and process groups for
5080 the windows. If setsid is turned @code{off}, this is not done
5081 anymore and all windows will be in the same process group as the
5082 screen backend process. This also breaks job-control, so be careful.
5083 The default is @code{on}, of course. This command is probably useful
5084 only in rare circumstances.
5085 @end deffn
5087 @node Eval, Maxwin, Setsid, Miscellaneous
5088 @section Eval
5089 @deffn Command eval @var{command1} [@var{command2} ...]
5090 (none)@*
5091 Parses and executes each argument as separate command.
5092 @end deffn
5094 @node Maxwin, Backtick, Eval, Miscellaneous
5095 @section Maxwin
5096 @deffn Command maxwin @var{n}
5097 (none)@*
5098 Set the maximum window number screen will create. Doesn't affect 
5099 already existing windows. The number may only be decreased.
5100 @end deffn
5102 @node Backtick, Screen Saver, Maxwin, Miscellaneous
5103 @section Backtick
5104 @deffn Command backtick @var{id} @var{lifespan} @var{autorefresh} @var{command} [@var{args}]
5105 @deffnx Command backtick @var{id}
5106 (none)@*
5107 Program the backtick command with the numerical id @var{id}.
5108 The output of such a command is used for substitution of the
5109 @code{%`} string escape (@pxref{String Escapes}).
5110 The specified @var{lifespan} is the number
5111 of seconds the output is considered valid. After this time, the
5112 command is run again if a corresponding string escape is encountered.
5113 The @var{autorefresh} parameter triggers an
5114 automatic refresh for caption and hardstatus strings after the
5115 specified number of seconds. Only the last line of output is used 
5116 for substitution.
5118 If both the @var{lifespan} and the @var{autorefresh} parameters
5119 are zero, the backtick program is expected to stay in the
5120 background and generate output once in a while.
5121 In this case, the command is executed right away and screen stores
5122 the last line of output. If a new line gets printed screen will
5123 automatically refresh the hardstatus or the captions.
5125 The second form of the command deletes the backtick command 
5126 with the numerical id @var{id}.
5127 @end deffn
5129 @node Screen Saver, Zmodem, Backtick, Miscellaneous
5130 @section Screen Saver
5131 @deffn Command idle [@var{timeout} [@var{cmd} @var{args}]]
5132 (none)@*
5133 Sets a command that is run after the specified number of
5134 seconds inactivity is reached. This command will normally
5135 be the @code{blanker} command to create a screen blanker, but
5136 it can be any screen command. If no command is specified,
5137 only the timeout is set. A timeout of zero (ot the special
5138 timeout @code{off}) disables the timer. If no arguments are
5139 given, the current settings are displayed.
5140 @end deffn
5142 @deffn Command blanker
5143 (none)@*
5144 Activate the screen blanker. First the screen is cleared.
5145 If no blanker program is defined, the cursor is turned
5146 off, otherwise, the program is started and it's output is
5147 written to the screen. The screen blanker is killed with
5148 the first keypress, the read key is discarded.
5150 This command is normally used together with the @code{idle}
5151 command.
5152 @end deffn
5154 @deffn Command blankerprg [@var{program args}]
5155 Defines a blanker program. Disables the blanker program if
5156 no arguments are given.
5157 @end deffn
5159 @node Zmodem, , Screen Saver, Miscellaneous
5160 @section Zmodem
5161 @deffn Command zmodem [off|auto|catch|pass]
5162 @deffnx Command zmodem sendcmd [string]
5163 @deffnx Command zmodem recvcmd [string]
5164 (none)@*
5165 Define zmodem support for @code{screen}. @code{Screen} understands two
5166 different modes when it detects a zmodem request: @code{pass}
5167 and @code{catch}. If the mode is set to @code{pass}, screen will
5168 relay all data to the attacher until the end of the
5169 transmission is reached. In @code{catch} mode screen acts as a
5170 zmodem endpoint and starts the corresponding rz/sz commands.
5171 If the mode is set to @code{auto}, screen will use @code{catch} if
5172 the window is a tty (e.g. a serial line), otherwise it
5173 will use @code{pass}.
5175 You can define the templates screen uses in @code{catch} mode
5176 via the second and the third form.
5178 Note also that this is an experimental feature.
5179 @end deffn
5181 @node String Escapes, Environment, Miscellaneous, Top
5182 @chapter String Escapes
5183 @cindex string escapes
5184 Screen provides an escape mechanism to insert information like the
5185 current time into messages or file names. The escape character
5186 is @code{%} with one exception: inside of a window's hardstatus
5187 @code{^%} (@code{^E}) is used instead.
5189 Here is the full list of supported escapes:
5191 @table @code
5192 @item %
5193 the escape character itself
5194 @item a
5195 either @code{am} or @code{pm}
5196 @item A
5197 either @code{AM} or @code{PM}
5198 @item c
5199 current time @code{HH:MM} in 24h format
5200 @item C
5201 current time @code{HH:MM} in 12h format
5202 @item d
5203 day number
5204 @item D
5205 weekday name
5206 @item f
5207 flags of the window
5208 @item F
5209 sets %? to true if the window has the focus
5210 @item h
5211 hardstatus of the window
5212 @item H
5213 hostname of the system
5214 @item l
5215 current load of the system
5216 @item m
5217 month number
5218 @item M
5219 month name
5220 @item n
5221 window number
5222 @item P
5223 sets %? to true if the current region is in copy/paste mode
5224 @item s
5225 seconds
5226 @item S
5227 session name
5228 @item t
5229 window title
5230 @item u
5231 all other users on this window
5232 @item w
5233 all window numbers and names. With @code{-} qualifier: up to the current
5234 window; with @code{+} qualifier: starting with the window after the current
5235 one.
5236 @item W
5237 all window numbers and names except the current one
5238 @item y
5239 last two digits of the year number
5240 @item Y
5241 full year number
5242 @item ?
5243 the part to the next @code{%?} is displayed only if a @code{%} escape
5244 inside the part expands to a non-empty string
5245 @item :
5246 else part of @code{%?}
5247 @item =
5248 pad the string to the display's width (like TeX's hfill). If a
5249 number is specified, pad to the percentage of the window's width.
5250 A @code{0} qualifier tells screen to treat the number as absolute position.
5251 You can specify to pad relative to the last absolute pad position
5252 by adding a @code{+} qualifier or to pad relative to the right margin
5253 by using @code{-}. The padding truncates the string if the specified
5254 position lies before the current position. Add the @code{L} qualifier
5255 to change this.
5256 @item <
5257 same as @code{%=} but just do truncation, do not fill with spaces
5258 @item >
5259 mark the current text position for the next truncation. When
5260 screen needs to do truncation, it tries to do it in a way that
5261 the marked position gets moved to the specified percentage of
5262 the output area. (The area starts from the last absolute pad
5263 position and ends with the position specified by the truncation
5264 operator.) The @code{L} qualifier tells screen to mark the truncated
5265 parts with @samp{...}.
5266 @item @{
5267 attribute/color modifier string terminated by the next @code{@}}
5268 @item `
5269 Substitute with the output of a `backtick' command. The length
5270 qualifier is misused to identify one of the commands. @xref{Backtick}.
5271 @end table
5272 The @code{c} and @code{C} escape may be qualified with a @code{0} to
5273 make screen use
5274 zero instead of space as fill character.
5275 The @code{n} and
5276 @code{=} escapes understand
5277 a length qualifier (e.g. @code{%3n}), @code{D} and @code{M} can be
5278 prefixed with @code{L} to generate long names, @code{w} and
5279 @code{W} also show the window flags if @code{L} is given.
5281 An attribute/color modifier is is used to change the attributes or the
5282 color settings. Its format
5283 is @samp{[attribute modifier] [color description]}. The attribute modifier
5284 must be prefixed by a change type indicator if it can be confused with
5285 a color description. The following change types are known: 
5286 @table @code
5287 @item +
5288 add the specified set to the current attributes
5289 @item -
5290 remove the set from the current attributes
5291 @item !
5292 invert the set in the current attributes
5293 @item =
5294 change the current attributes to the specified set
5295 @end table
5296 The attribute set can either be specified as a hexadecimal number or
5297 a combination of the following letters: 
5298 @table @code
5299 @item d
5301 @item u
5302 underline
5303 @item b
5304 bold
5305 @item r
5306 reverse
5307 @item s
5308 standout
5309 @item B
5310 blinking
5311 @end table
5312 Colors are coded either as a hexadecimal number or two letters specifying
5313 the desired background and foreground color (in that order). The following
5314 colors are known:
5315 @table @code
5316 @item k
5317 black
5318 @item r
5320 @item g
5321 green
5322 @item y
5323 yellow
5324 @item b
5325 blue
5326 @item m
5327 magenta
5328 @item c
5329 cyan
5330 @item w
5331 white
5332 @item d
5333 default color
5334 @item .
5335 leave color unchanged
5336 @end table
5337 The capitalized versions of the letter specify bright colors. You can also
5338 use the pseudo-color @samp{i} to set just the brightness and leave the color
5339 unchanged.
5341 A one digit/letter color description is treated as foreground or
5342 background color dependent on the current attributes: if reverse mode is
5343 set, the background color is changed instead of the foreground color.
5344 If you don't like this, prefix the color with a @samp{.}. If you want
5345 the same behavior for two-letter color descriptions, also prefix them
5346 with a @samp{.}.
5348 As a special case, @samp{%@{-@}} restores the attributes and colors that
5349 were set before the last change was made (i.e. pops one level of the
5350 color-change stack).
5352 @noindent
5353 Examples:
5354 @table @samp
5355 @item G
5356 set color to bright green
5357 @item +b r
5358 use bold red
5359 @item = yd
5360 clear all attributes, write in default color on yellow background.
5361 @item %-Lw%@{= BW@}%50>%n%f* %t%@{-@}%+Lw%<
5362 The available windows centered at the current win dow and truncated to
5363 the available width. The current window is displayed white on blue.
5364 This can be used with @samp{hardstatus alwayslastline}.
5365 @item %?%F%@{.R.@}%?%3n %t%? [%h]%?
5366 The window number and title and the window's hardstatus, if one is set.
5367 Also use a red background if this is the active focus.
5368 Useful for @samp{caption string}.
5369 @end table
5372 @node Environment, Files, String Escapes, Top
5373 @chapter Environment Variables
5374 @cindex environment
5376 @table @code
5377 @item COLUMNS
5378 Number of columns on the terminal (overrides termcap entry).
5380 @item HOME
5381 Directory in which to look for .screenrc.
5383 @item LINES
5384 Number of lines on the terminal (overrides termcap entry).
5386 @item LOCKPRG
5387 Screen lock program.
5389 @item NETHACKOPTIONS
5390 Turns on @code{nethack} option.
5392 @item PATH
5393 Used for locating programs to run.
5395 @item SCREENCAP
5396 For customizing a terminal's @code{TERMCAP} value.
5398 @item SCREENDIR
5399 Alternate socket directory.
5401 @item SCREENRC
5402 Alternate user screenrc file.
5404 @item SHELL
5405 Default shell program for opening windows (default @file{/bin/sh}).
5407 @item STY
5408 Alternate socket name. If @code{screen} is invoked, and the environment variable
5409 @code{STY} is set, then it creates only a window in the running @code{screen}
5410 session rather than starting a new session.
5412 @item SYSSCREENRC
5413 Alternate system screenrc file.
5415 @item TERM
5416 Terminal name.
5418 @item TERMCAP
5419 Terminal description.
5421 @item WINDOW
5422 Window number of a window (at creation time).
5423 @end table
5425 @node Files, Credits, Environment, Top
5426 @chapter Files Referenced
5427 @cindex files
5429 @table @file
5430 @item .../screen-4.?.??/etc/screenrc
5431 @itemx .../screen-4.?.??/etc/etcscreenrc
5432 Examples in the @code{screen} distribution package for private and
5433 global initialization files.
5435 @item @code{$SYSSCREENRC}
5436 @itemx /local/etc/screenrc
5437 @code{screen} initialization commands
5439 @item @code{$SCREENRC}
5440 @itemx @code{$HOME}/.iscreenrc
5441 @itemx @code{$HOME}/.screenrc
5442 Read in after /local/etc/screenrc
5444 @item @code{$SCREENDIR}/S-@var{login}
5446 @item /local/screens/S-@var{login}
5447 Socket directories (default)
5449 @item /usr/tmp/screens/S-@var{login}
5450 Alternate socket directories.
5452 @item @var{socket directory}/.termcap
5453 Written by the @code{dumptermcap} command
5455 @item /usr/tmp/screens/screen-exchange or
5456 @itemx /tmp/screen-exchange
5457 @code{screen} interprocess communication buffer
5459 @item hardcopy.[0-9]
5460 Screen images created by the hardcopy command
5462 @item screenlog.[0-9]
5463 Output log files created by the log command
5465 @item /usr/lib/terminfo/?/* or
5466 @itemx /etc/termcap
5467 Terminal capability databases
5469 @item /etc/utmp
5470 Login records
5472 @item @code{$LOCKPRG}
5473 Program for locking the terminal.
5474 @end table
5476 @node Credits, Bugs, Files, Top
5477 @chapter Credits
5479 @noindent
5480 Authors @*
5481 =======
5483 Originally created by Oliver Laumann, this latest version was
5484 produced by Wayne Davison, Juergen Weigert and Michael Schroeder.
5486 @noindent
5487 Contributors @*
5488 ============
5490 @example
5491      Ken Beal (kbeal@@amber.ssd.csd.harris.com),
5492      Rudolf Koenig (rfkoenig@@informatik.uni-erlangen.de),
5493      Toerless Eckert (eckert@@informatik.uni-erlangen.de),
5494      Wayne Davison (davison@@borland.com),
5495      Patrick Wolfe (pat@@kai.com, kailand!pat),
5496      Bart Schaefer (schaefer@@cse.ogi.edu),
5497      Nathan Glasser (nathan@@brokaw.lcs.mit.edu),
5498      Larry W. Virden (lvirden@@cas.org),
5499      Howard Chu (hyc@@hanauma.jpl.nasa.gov),
5500      Tim MacKenzie (tym@@dibbler.cs.monash.edu.au),
5501      Markku Jarvinen (mta@@@{cc,cs,ee@}.tut.fi),
5502      Marc Boucher (marc@@CAM.ORG),
5503      Doug Siebert (dsiebert@@isca.uiowa.edu),
5504      Ken Stillson (stillson@@tsfsrv.mitre.org),
5505      Ian Frechett (frechett@@spot.Colorado.EDU),
5506      Brian Koehmstedt (bpk@@gnu.ai.mit.edu),
5507      Don Smith (djs6015@@ultb.isc.rit.edu),
5508      Frank van der Linden (vdlinden@@fwi.uva.nl),
5509      Martin Schweikert (schweik@@cpp.ob.open.de),
5510      David Vrona (dave@@sashimi.lcu.com),
5511      E. Tye McQueen (tye%spillman.UUCP@@uunet.uu.net),
5512      Matthew Green (mrg@@eterna.com.au),
5513      Christopher Williams (cgw@@pobox.com),
5514      Matt Mosley (mattm@@access.digex.net),
5515      Gregory Neil Shapiro (gshapiro@@wpi.WPI.EDU),
5516      Jason Merrill (jason@@jarthur.Claremont.EDU),
5517      Johannes Zellner (johannes@@zellner.org),
5518      Pablo Averbuj (pablo@@averbuj.com).
5519 @end example
5521 @noindent
5522 Version @*
5523 =======
5525 This manual describes version @value{version} of the @code{screen}
5526 program. Its roots are a merge of a custom version 2.3PR7 by Wayne
5527 Davison and several enhancements to Oliver Laumann's version 2.0.
5528 Note that all versions numbered 2.x are copyright by Oliver Laumann.
5530 See also @xref{Availability}.
5532 @node Bugs, Installation, Credits, Top
5533 @chapter Bugs
5534 @cindex bugs
5536 Just like any other significant piece of software, @code{screen} has a
5537 few bugs and missing features.  Please send in a bug report if you have
5538 found a bug not mentioned here.
5540 @menu
5541 * Known Bugs::                  Problems we know about.
5542 * Reporting Bugs::              How to contact the maintainers.
5543 * Availability::                Where to find the latest screen version.
5544 @end menu
5546 @node Known Bugs, Reporting Bugs,  , Bugs
5547 @section Known Bugs
5549 @itemize @bullet
5550 @item
5551 @samp{dm} (delete mode) and @samp{xs} are not handled correctly (they
5552 are ignored).  @samp{xn} is treated as a magic-margin indicator.
5554 @item
5555 @code{screen} has no clue about double-high or double-wide characters. 
5556 But this is the only area where @code{vttest} is allowed to fail.
5558 @item
5559 It is not possible to change the environment variable @code{$TERMCAP}
5560 when reattaching under a different terminal type.
5562 @item
5563 The support of terminfo based systems is very limited. Adding extra
5564 capabilities to @code{$TERMCAP} may not have any effects.
5566 @item
5567 @code{screen} does not make use of hardware tabs.
5569 @item
5570 @code{screen} must be installed setuid root on most systems
5571 in order to be able to
5572 correctly change the owner of the tty device file for each window.
5573 Special permission may also be required to write the file
5574 @file{/etc/utmp}.
5576 @item
5577 Entries in @file{/etc/utmp} are not removed when @code{screen} is killed
5578 with SIGKILL.  This will cause some programs (like "w" or "rwho") to
5579 advertise that a user is logged on who really isn't.
5581 @item
5582 @code{screen} may give a strange warning when your tty has no utmp
5583 entry.
5585 @item
5586 When the modem line was hung up, @code{screen} may not automatically detach
5587 (or quit) unless the device driver sends a HANGUP signal. To detach such a 
5588 @code{screen} session use the -D or -d command line option.
5590 @item
5591 If a password is set, the command line options -d and -D still detach a 
5592 session without asking.
5594 @item
5595 Both @code{breaktype} and @code{defbreaktype} change the break generating
5596 method used by all terminal devices. The first should change a window
5597 specific setting, where the latter should change only the default for new
5598 windows.
5600 @item
5601 When attaching to a multiuser session, the user's @file{.screenrc} file is not
5602 sourced. Each users personal settings have to be included in the 
5603 @file{.screenrc} file from which the session is booted, or have to be 
5604 changed manually.
5606 @item
5607 A weird imagination is most useful to gain full advantage of all the
5608 features.
5609 @end itemize
5611 @node Reporting Bugs, Availability, Known Bugs, Bugs
5612 @section Reporting Bugs
5613 @cindex bug report
5615 If you find a bug in @code{Screen}, please send electronic mail to
5616 @w{@samp{screen@@uni-erlangen.de}}, and also to
5617 @w{@samp{bug-gnu-utils@@prep.ai.mit.edu}}.  Include the version number
5618 of @code{Screen} which you are using.  Also include in your message the
5619 hardware and operating system, the compiler used to compile, a
5620 description of the bug behavior, and the conditions that triggered the
5621 bug. Please recompile @code{screen} with the @samp{-DDEBUG} options
5622 enabled, reproduce the bug, and have a look at the debug output written to
5623 the directory @file{/tmp/debug}. If necessary quote suspect passages from the
5624 debug output and show the contents of your @file{config.h} if it matters.
5626 @node Availability,  , Reporting Bugs, Bugs
5627 @section Availability
5628 @cindex availability
5630 @code{Screen} is available under the @code{GNU} copyleft.
5632 The latest official release of @code{screen} available via anonymous
5633 ftp from @samp{prep.ai.mit.edu}, @samp{nic.funet.fi} or any other
5634 @code{GNU} distribution site.  The home site of 
5635 @code{screen} is @samp{ftp.uni-erlangen.de
5636 (131.188.3.71)}, in the directory @file{pub/utilities/screen}.
5637 The subdirectory @samp{private} contains the latest beta testing release.
5638 If you want to help, send a note to screen@@uni-erlangen.de.
5640 @node Installation, Concept Index, Bugs, Top
5641 @chapter Installation
5642 @cindex installation
5644 Since @code{screen} uses pseudo-ttys, the select system call, and
5645 UNIX-domain sockets/named pipes, it will not run under a system that
5646 does not include these features of 4.2 and 4.3 BSD UNIX.
5648 @menu
5649 * Socket Directory::            Where screen stores its handle.
5650 * Compiling Screen::
5651 @end menu
5653 @node Socket Directory,
5654 @section Socket Directory
5655 @cindex socket directory
5657 The socket directory defaults either to @file{$HOME/.screen} or simply to 
5658 @file{/tmp/screens} or preferably to @file{/usr/local/screens} chosen at 
5659 compile-time. If @code{screen} is installed
5660 setuid root, then the administrator should compile screen with an
5661 adequate (not NFS mounted) @code{SOCKDIR}. If @code{screen} is not
5662 running setuid-root, the user can specify any mode 700 directory in the
5663 environment variable @code{$SCREENDIR}.
5665 @node Compiling Screen,  , Socket Directory, Installation
5666 @section Compiling Screen
5667 @cindex compiling screen
5669 To compile and install screen:
5671 The @code{screen} package comes with a @code{GNU Autoconf} configuration 
5672 script. Before you compile the package run 
5674 @center @code{sh ./configure}
5676 This will create a @file{config.h} and @file{Makefile} for your machine.
5677 If @code{configure} fails for some reason, then look at the examples and
5678 comments found in the @file{Makefile.in} and @file{config.h.in} templates.
5679 Rename @file{config.status} to @file{config.status.@var{machine}} when
5680 you want to keep configuration data for multiple architectures. Running
5681 @code{sh ./config.status.@var{machine}} recreates your configuration 
5682 significantly faster than rerunning @code{configure}. 
5684 Read through the "User Configuration" section of @file{config.h}, and verify
5685 that it suits your needs.
5686 A comment near the top of this section explains why it's best to
5687 install screen setuid to root.
5688 Check for the place for the global @file{screenrc}-file and for the socket
5689 directory.
5691 Check the compiler used in @file{Makefile}, the prefix path where to install
5692 @code{screen}. Then run
5694 @center @code{make}
5696 If @code{make} fails to produce one of the files @file{term.h}, @file{comm.h}
5697 or @file{tty.c}, then use @code{@var{filename.x}.dist} instead.
5698 For additional information about installation of @code{screen} refer to the
5699 file @file{INSTALLATION}, coming with this package.
5701 @node Concept Index, Command Index, Installation, Top
5702 @unnumbered Concept Index
5704 @printindex cp
5706 @node Command Index, Keystroke Index, Concept Index, Top
5707 @unnumbered Command Index
5709 This is a list of all the commands supported by @code{screen}.
5711 @printindex fn
5713 @node Keystroke Index,  , Command Index, Top
5714 @unnumbered Keystroke Index
5716 This is a list of the default key bindings.
5718 The leading escape character (@pxref{Command Character}) has been omitted
5719 from the key sequences, since it is the same for all bindings.
5721 @printindex ky
5723 @shortcontents
5724 @contents
5725 @bye