$STY still reflects the old session name, but only in existing shells.
[screen-lua.git] / src / doc / screen.texinfo
blob1e02c87b23f3a4f8885b30172e60bf77c24155ad
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 -p @var{name_or_number}
348 Preselect a window. This is useful when you want to reattach to a
349 specific window or you want to send a command via the @samp{-X}
350 option to a specific window. As with screen's select command, @samp{-}
351 selects the blank window. As a special case for reattach, @samp{=}
352 brings up the windowlist on the blank window.
354 @item -q
355 Suppress printing of error messages. In combination with @samp{-ls} the exit 
356 value is set as follows: 9 indicates a directory without sessions. 10 
357 indicates a directory with running but not attachable sessions. 11 (or more) 
358 indicates 1 (or more) usable sessions.
359 In combination with @samp{-r} the exit value is as follows: 10 indicates that 
360 there is no session to resume. 12 (or more) indicates that there are 2 (or 
361 more) sessions to resume and you should specify which one to choose. 
362 In all other cases @samp{-q} has no effect.
364 @item -r [@var{pid.sessionname}]
365 @itemx -r @var{sessionowner}/[@var{pid.sessionname}]
366 Resume a detached @code{screen} session.  No other options (except
367 combinations with @samp{-d} or @samp{-D}) may be specified, though 
368 the session name
369 (@pxref{Session Name}) may be needed to distinguish between multiple
370 detached @code{screen} sessions.
371 The second form is used to connect to another user's screen session which
372 runs in multiuser mode. This indicates that screen should look for
373 sessions in another user's directory. This requires setuid-root.
375 @item -R
376 Resume the first appropriate detached @code{screen} session.  If
377 successful, all other command-line options are ignored.  If no detached
378 session exists, start a new session using the specified options, just as
379 if @samp{-R} had not been specified.  This option is set by default if
380 screen is run as a login-shell (actually screen uses @samp{-xRR} in
381 that case).
382 For combinations with the 
383 @samp{-D}/@samp{-d} option see there.
385 @item -s @var{program}
386 Set the default shell to be @var{program}.  By default, @code{screen}
387 uses the value of the environment variable @code{$SHELL}, or
388 @file{/bin/sh} if it is not defined.  This option is equivalent to the
389 @code{shell} command (@pxref{Shell}).
391 @item -S @var{sessionname}
392 Set the name of the new session to @var{sessionname}.  This option can
393 be used to specify a meaningful name for the session in place of the
394 default @var{tty.host} suffix.  This name identifies the session for the
395 @code{screen -list} and @code{screen -r} commands.  This option is
396 equivalent to the @code{sessionname} command (@pxref{Session Name}).
398 @item -t @var{name}
399 Set the title (name) for the default shell or specified program.
400 This option is equivalent to the @code{shelltitle} command
401 (@pxref{Shell}).
403 @item -U
404 Run screen in UTF-8 mode. This option tells screen that your terminal
405 sends and understands UTF-8 encoded characters. It also sets the default
406 encoding for new windows to @samp{utf8}.
408 @item -v
409 Print the version number.
411 @item -wipe [@var{match}]
412 List available screens like @code{screen -ls}, but remove destroyed
413 sessions instead of marking them as @samp{dead}. 
414 An unreachable session is considered dead, when its name matches either 
415 the name of the local host, or the explicitly given parameter, if any.
416 See the @code{-r} flag for a description how to construct matches.
418 @item -x
419 Attach to a session which is already attached elsewhere (multi-display
420 mode). 
421 @code{Screen} refuses to attach from within itself. 
422 But when cascading multiple screens, loops are not detected; take care.
425 @item -X
426 Send the specified command to a running screen session. You can use
427 the @code{-d} or @code{-r} option to tell screen to look only for 
428 attached or detached screen sessions. Note that this command doesn't
429 work if the session is password protected.
431 @end table
433 @node Customization, Commands, Invoking Screen, Top
434 @chapter Customizing @code{Screen}
435 @cindex customization
437 You can modify the default settings for @code{screen} to fit your tastes
438 either through a personal @file{.screenrc} file which contains commands
439 to be executed at startup, or on the fly using the @code{colon} command.
441 @menu
442 * Startup Files::               The @file{.screenrc} file.
443 * Source::                      Read commands from a file.
444 * Colon::                       Entering customization commands interactively.
445 @end menu
447 @node Startup Files, Source,  , Customization
448 @section The @file{.screenrc} file
449 @cindex .screenrc
450 @cindex screenrc
451 When @code{screen} is invoked, it executes initialization commands from
452 the files @file{.screenrc} in the user's home directory and
453 @file{/usr/local/etc/screenrc}.  These defaults can be overridden in the 
454 following ways:
455 For the global screenrc file @code{screen} searches for the environment
456 variable @code{$SYSSCREENRC} (this override feature may be disabled at
457 compile-time).  The user specific screenrc file is
458 searched for in @code{$SCREENRC}, then 
459 @file{@code{$HOME}/.screenrc}.  The command line option @samp{-c}
460 specifies which file to use (@pxref{Invoking Screen}.  Commands in these
461 files are used to set options, bind commands to keys, and to
462 automatically establish one or more windows at the beginning of
463 your @code{screen} session.  Commands are listed one per line, with
464 empty lines being ignored.  A command's arguments are separated by tabs
465 or spaces, and may be surrounded by single or double quotes.  A @samp{#}
466 turns the rest of the line into a comment, except in quotes.
467 Unintelligible lines are warned about and ignored.  Commands may contain
468 references to environment variables.  The syntax is the shell-like
469 @code{$VAR} or @code{$@{VAR@}}.  Note that this causes incompatibility
470 with previous @code{screen} versions, as now the '$'-character has to be
471 protected with '\' if no variable substitution is intended. A string in 
472 single-quotes is also protected from variable substitution.
474 Two configuration files are shipped as examples with your screen
475 distribution: @file{etc/screenrc} and @file{etc/etcscreenrc}. They
476 contain a number of useful examples for various commands.
478 @node Source, Colon, Startup Files, Customization
479 @section Source
480 @deffn Command source file
481 (none)@*
482 Read and execute commands from file @var{file}. Source  commands
483 may be nested to a maximum recursion level of ten. If @var{file}
484 is not an absolute path and  screen  is already processing  a
485 source command, the parent directory of the running source
486 command file is used to search for the new command file  before
487 screen's current directory.
489 Note  that termcap/terminfo/termcapinfo commands only work
490 at startup and reattach time, so they must be reached  via
491 the default screenrc files to have an effect.
492 @end deffn
494 @node Colon,  , Source, Customization
495 @section Colon
496 Customization can also be done online, with this command:
498 @kindex :
499 @deffn Command colon
500 (@kbd{C-a :})@* 
501 Allows you to enter @file{.screenrc} command lines.  Useful for
502 on-the-fly modification of key bindings, specific window creation and
503 changing settings.  Note that the @code{set} keyword no longer exists,
504 as of version 3.3.  Change default settings with commands starting with
505 @samp{def}.  You might think of this as the @code{ex} command mode of
506 @code{screen}, with @code{copy} as its @code{vi} command mode
507 (@pxref{Copy and Paste}).
508 @end deffn
510 @node Commands, New Window, Customization, Top
511 @chapter Commands
513 A command in @code{screen} can either be bound to a key, invoked from a
514 screenrc file, or called from the @code{colon} prompt
515 (@pxref{Customization}).  As of version 3.3, all commands can be bound
516 to keys, although some may be less useful than others.
517 For a number of real life working examples of the most important
518 commands see the files @file{etc/screenrc} and @file{etc/etcscreenrc}
519 of your screen distribution.
521 In this manual, a command definition looks like this:
523 @table @asis
524 @item -- Command: command [-n] ARG1 [ARG2] @dots{}
525 (@var{keybindings})@*
526 This command does something, but I can't remember what.
527 @end table
529 An argument in square brackets (@samp{[]}) is optional.  Many commands
530 take an argument of @samp{on} or @samp{off}, which is indicated as
531 @var{state} in the definition.
533 @menu
534 * Default Key Bindings::        @code{screen} keyboard commands.
535 * Command Summary::             List of all commands.
536 @end menu
538 @node Default Key Bindings, Command Summary,  , Commands
539 @section Default Key Bindings
541 As mentioned previously, each keyboard command consists of a
542 @kbd{C-a} followed by one other character.  For your convenience, all
543 commands that are bound to lower-case letters are also bound to their
544 control character counterparts (with the exception of @kbd{C-a a}; see
545 below).  Thus, both @kbd{C-a c} and @kbd{C-a C-c} can be used to create
546 a window.
548 The following table shows the default key bindings:
550 @table @asis
551 @item @kbd{C-a '}
552 (select)@*
553 Prompt for a window identifier and switch.
554 @xref{Selecting}.
556 @item @kbd{C-a "}
557 (windowlist -b)@*
558 Present a list of all windows for selection.
559 @xref{Selecting}.
561 @item @kbd{C-a 0@dots{}9, -}
562 (select 0@dots{}select 9, select -)@*
563 Switch to window number 0@dots{}9, or the blank window.
564 @xref{Selecting}.
566 @item @kbd{C-a @key{Tab}}
567 (focus)@*
568 Switch the input focus to the next region.  @xref{Regions}.
570 @item @kbd{C-a C-a}
571 (other)@*
572 Toggle to the window displayed previously.  If this window does no 
573 longer exist, @code{other} has the same effect as @code{next}.
574 @xref{Selecting}.
576 @item @kbd{C-a a}
577 (meta)@*
578 Send the command character (C-a) to window. See @code{escape} command.
579 @xref{Command Character}. 
581 @item @kbd{C-a A}
582 (title)@*
583 Allow the user to enter a title for the current window.
584 @xref{Naming Windows}.
586 @item @kbd{C-a b}
587 @itemx @kbd{C-a C-b}
588 (break)@*
589 Send a break to the tty.
590 @xref{Break}.
592 @item @kbd{C-a B}
593 (pow_break)@*
594 Close and reopen the tty-line.
595 @xref{Break}.
597 @item @kbd{C-a c}
598 @itemx @kbd{C-a C-c}
599 (screen)@*
600 Create a new window with a shell and switch to that window.
601 @xref{Screen Command}.
603 @item @kbd{C-a C}
604 (clear)@*
605 Clear the screen.  @xref{Clear}.
607 @item @kbd{C-a d}
608 @itemx @kbd{C-a C-d}
609 (detach)@*
610 Detach @code{screen} from this terminal.  @xref{Detach}.
612 @item @kbd{C-a D D}
613 (pow_detach)@*
614 Detach and logout.  @xref{Power Detach}.
616 @item @kbd{C-a f}
617 @itemx @kbd{C-a C-f}
618 (flow)@*
619 Cycle flow among @samp{on}, @samp{off} or @samp{auto}.  @xref{Flow}.
621 @item @kbd{C-a F}
622 (fit)@*
623 Resize the window to the current region size.  @xref{Window Size}.
625 @item @kbd{C-a C-g}
626 (vbell)@*
627 Toggle visual bell mode.  @xref{Bell}.
629 @item @kbd{C-a h}
630 (hardcopy)@*
631 Write a hardcopy of the current window to the file ``hardcopy.@var{n}''.
632 @xref{Hardcopy}.
634 @item @kbd{C-a H}
635 (log)@* 
636 Toggle logging of the current window to the file ``screenlog.@var{n}''.
637 @xref{Log}.
639 @item @kbd{C-a i}
640 @itemx @kbd{C-a C-i}
641 (info)@*
642 Show info about the current window.  @xref{Info}.
644 @item @kbd{C-a k}
645 @itemx @kbd{C-a C-k}
646 (kill)@*
647 Destroy the current window.  @xref{Kill}.
649 @item @kbd{C-a l}
650 @itemx @kbd{C-a C-l}
651 (redisplay)@*
652 Fully refresh the current window.  @xref{Redisplay}.
654 @item @kbd{C-a L}
655 (login)@*
656 Toggle the current window's login state.  @xref{Login}.
658 @item @kbd{C-a m}
659 @itemx @kbd{C-a C-m}
660 (lastmsg)@*
661 Repeat the last message displayed in the message line.
662 @xref{Last Message}.
664 @item @kbd{C-a M}
665 (monitor)
666 Toggle monitoring of the current window.  @xref{Monitor}.
668 @item @kbd{C-a @key{SPC}}
669 @itemx @kbd{C-a n}
670 @itemx @kbd{C-a C-n}
671 (next)@*
672 Switch to the next window.  @xref{Selecting}.
674 @item @kbd{C-a N}
675 (number)@*
676 Show the number (and title) of the current window.  @xref{Number}.
678 @item @kbd{C-a p}
679 @itemx @kbd{C-a C-p}
680 @itemx @kbd{C-a C-h}
681 @itemx @kbd{C-a @key{BackSpace}}
682 (prev)@*
683 Switch to the previous window (opposite of @kbd{C-a n}).
684 @xref{Selecting}.
686 @item @kbd{C-a q}
687 @itemx @kbd{C-a C-q}
688 (xon)@*
689 Send a ^Q (ASCII XON) to the current window.  @xref{XON/XOFF}.
691 @item @kbd{C-a Q}
692 (only)@*
693 Delete all regions but the current one.  @xref{Regions}.
695 @item @kbd{C-a r}
696 @itemx @kbd{C-a C-r}
697 (wrap)@*
698 Toggle the current window's line-wrap setting (turn the current window's
699 automatic margins on or off).  @xref{Wrap}.
701 @item @kbd{C-a s}
702 @itemx @kbd{C-a C-s}
703 (xoff)@*
704 Send a ^S (ASCII XOFF) to the current window.  @xref{XON/XOFF}.
706 @item @kbd{C-a S}
707 (split)@*
708 Split the current region into two new ones.  @xref{Regions}.
710 @item @kbd{C-a t}
711 @itemx @kbd{C-a C-t}
712 (time)@*
713 Show the load average and xref.  @xref{Time}.
715 @item @kbd{C-a v}
716 (version)@*
717 Display the version and compilation date.  @xref{Version}.
719 @item @kbd{C-a C-v}
720 (digraph)@*
721 Enter digraph.  @xref{Digraph}.
723 @item @kbd{C-a w}
724 @itemx @kbd{C-a C-w}
725 (windows)@*
726 Show a list of active windows.  @xref{Windows}.
728 @item @kbd{C-a W}
729 (width)@*
730 Toggle between 80 and 132 columns.  @xref{Window Size}.
732 @item @kbd{C-a x}
733 @itemx @kbd{C-a C-x}
734 (lockscreen)@*
735 Lock your terminal.  @xref{Lock}.
737 @item @kbd{C-a X}
738 (remove)@*
739 Kill the current region.  @xref{Regions}.
741 @item @kbd{C-a z}
742 @itemx @kbd{C-a C-z}
743 (suspend)@*
744 Suspend @code{screen}.  @xref{Suspend}.
746 @item @kbd{C-a Z}
747 (reset)@*
748 Reset the virtual terminal to its ``power-on'' values.  
749 @xref{Reset}.
751 @item @kbd{C-a .}
752 (dumptermcap)@*
753 Write out a @file{.termcap} file.  @xref{Dump Termcap}.
755 @item @kbd{C-a ?}
756 (help)@*
757 Show key bindings.  @xref{Help}.
759 @item @kbd{C-a C-\}
760 (quit)@*
761 Kill all windows and terminate @code{screen}.  @xref{Quit}.
763 @item @kbd{C-a :}
764 (colon)@*
765 Enter a command line.  @xref{Colon}.
767 @item @kbd{C-a [}
768 @itemx @kbd{C-a C-[}
769 @itemx @kbd{C-a @key{ESC}}
770 (copy)@*
771 Enter copy/scrollback mode.  @xref{Copy}.
773 @item @kbd{C-a ]}
774 @itemx @kbd{C-a C-]}
775 (paste .)@*
776 Write the contents of the paste buffer to the stdin queue of the
777 current window.  @xref{Paste}.
779 @item @kbd{C-a @{}
780 @itemx @kbd{C-a @}}
781 (history)@*
782 Copy and paste a previous (command) line.  @xref{History}.
784 @item @kbd{C-a >}
785 (writebuf)@*
786 Write the paste buffer out to the screen-exchange file.
787 @xref{Screen Exchange}.
789 @item @kbd{C-a <}
790 (readbuf)@*
791 Read the screen-exchange file into the paste buffer.
792 @xref{Screen Exchange}.
794 @item @kbd{C-a =}
795 (removebuf)@*
796 Delete the screen-exchange file.  @xref{Screen Exchange}.
798 @item @kbd{C-a _}
799 (silence)@*
800 Start/stop monitoring the current window for inactivity. @xref{Silence},
802 @item @kbd{C-a ,}
803 (license)@*
804 Show the copyright page.
806 @item @kbd{C-a *}
807 (displays)@*
808 Show the listing of attached displays.
809 @end table
811 @node Command Summary,  , Default Key Bindings, Commands
812 @section Command Summary
813 @cindex command summary 
815 @table @code
816 @item acladd @var{usernames}
817 Allow other users in this session.  @xref{Multiuser Session}.
818 @item aclchg @var{usernames permbits list}
819 Change a user's permissions.  @xref{Multiuser Session}.
820 @item acldel @var{username}
821 Disallow other user in this session.  @xref{Multiuser Session}.
822 @item aclgrp @var{usrname} [@var{groupname}]
823 Inherit permissions granted to a group leader. @xref{Multiuser Session}.
824 @item aclumask [@var{users}]+/-@var{bits} ...
825 Predefine access to new windows. @xref{Umask}.
826 @item activity @var{message}
827 Set the activity notification message.  @xref{Monitor}.
828 @item addacl @var{usernames}
829 Synonym to @code{acladd}.  @xref{Multiuser Session}.
830 @item allpartial @var{state}
831 Set all windows to partial refresh.  @xref{Redisplay}.
832 @item altscreen @var{state}
833 Enables support for the "alternate screen" terminal capability.  @xref{Redisplay}.
834 @item at [@var{ident}][@kbd{#}@var{|}@kbd{*}@var{|}@kbd{%}] @var{command} [@var{args}]
835 Execute a command at other displays or windows.  @xref{At}.
836 @item attrcolor @var{attrib} [@var{attribute/color-modifier}]
837 Map attributes to colors.  @xref{Attrcolor}.
838 @item autodetach @var{state}
839 Automatically detach the session on SIGHUP.  @xref{Detach}.
840 @item autonuke @var{state}
841 Enable a clear screen to discard unwritten output.  @xref{Autonuke}.
842 @item backtick @var{id} @var{lifespan} @var{autorefresh} @var{command} [@var{args}]
843 Define a command for the backtick string escape.  @xref{Backtick}.
844 @item bce [@var{state}]
845 Change background color erase.  @xref{Character Processing}.
846 @item bell_msg [@var{message}]
847 Set the bell notification message.  @xref{Bell}.
848 @item bind [-c @var{class}] @var{key} [@var{command} [@var{args}]]
849 Bind a command to a key.  @xref{Bind}.
850 @item bindkey [@var{opts}] [@var{string} [@var{cmd args}]]
851 Bind a string to a series of keystrokes. @xref{Bindkey}.
852 @item blanker
853 Blank the screen.  @xref{Screen Saver}.
854 @item blankerprg
855 Define a blanker program.  @xref{Screen Saver}.
856 @item break [@var{duration}]
857 Send a break signal to the current window.  @xref{Break}.
858 @item breaktype [@var{tcsendbreak} | @var{TCSBRK} | @var{TIOCSBRK}]
859 Specify how to generate breaks.  @xref{Break}.
860 @item bufferfile [@var{exchange-file}]
861 Select a file for screen-exchange.  @xref{Screen Exchange}.
862 @item c1 [@var{state}]
863 Change c1 code processing.  @xref{Character Processing}.
864 @item caption @var{mode} [@var{string}]
865 Change caption mode and string.  @xref{Regions}.
866 @item chacl @var{usernames permbits list}
867 Synonym to @code{aclchg}. @xref{Multiuser Session}.
868 @item charset @var{set}
869 Change character set slot designation.  @xref{Character Processing}.
870 @item chdir [@var{directory}]
871 Change the current directory for future windows.  @xref{Chdir}.
872 @item clear
873 Clear the window screen.  @xref{Clear}.
874 @item colon
875 Enter a @code{screen} command.  @xref{Colon}.
876 @item command [-c @var{class}]
877 Simulate the screen escape key.  @xref{Command Character}.
878 @item compacthist [@var{state}]
879 Selects compaction of trailing empty lines.  @xref{Scrollback}.
880 @item console [@var{state}]
881 Grab or ungrab console output.  @xref{Console}.
882 @item copy
883 Enter copy mode.  @xref{Copy}.
884 @item copy_reg [@var{key}]
885 Removed. Use @code{paste} instead.  @xref{Registers}.
886 @item crlf @var{state}
887 Select line break behavior for copying.  @xref{Line Termination}.
888 @item debug @var{state}
889 Suppress/allow debugging output.  @xref{Debug}.
890 @item defautonuke @var{state}
891 Select default autonuke behavior.  @xref{Autonuke}.
892 @item defbce @var{state}
893 Select background color erase.  @xref{Character Processing}.
894 @item defbreaktype [@var{tcsendbreak} | @var{TCSBRK} | @var{TIOCSBRK}]
895 Specify the default for generating breaks.  @xref{Break}.
896 @item defc1 @var{state}
897 Select default c1 processing behavior.  @xref{Character Processing}.
898 @item defcharset [@var{set}]
899 Change defaul character set slot designation.  @xref{Character Processing}.
900 @item defencoding @var{enc}
901 Select default window encoding.  @xref{Character Processing}.
902 @item defescape @var{xy}
903 Set the default command and @code{meta} characters.  @xref{Command Character}.
904 @item defflow @var{fstate}
905 Select default flow control behavior.  @xref{Flow}.
906 @item defgr @var{state}
907 Select default GR processing behavior.  @xref{Character Processing}.
908 @item defhstatus [@var{status}]
909 Select default window hardstatus line.  @xref{Hardstatus}.
910 @item deflog @var{state}
911 Select default window logging behavior.  @xref{Log}.
912 @item deflogin @var{state}
913 Select default utmp logging behavior.  @xref{Login}.
914 @item defmode @var{mode}
915 Select default file mode for ptys.  @xref{Mode}.
916 @item defmonitor @var{state}
917 Select default activity monitoring behavior.  @xref{Monitor}.
918 @item defnonblock @var{state}|@var{numsecs}
919 Select default nonblock mode.  @xref{Nonblock}.
920 @item defobuflimit @var{limit}
921 Select default output buffer limit.  @xref{Obuflimit}.
922 @item defscrollback @var{num}
923 Set default lines of scrollback.  @xref{Scrollback}.
924 @item defshell @var{command}
925 Set the default program for new windows.  @xref{Shell}.
926 @item defsilence @var{state}
927 Select default idle monitoring behavior.  @xref{Silence}.
928 @item defslowpaste @var{msec}
929 Select the default inter-character timeout when pasting.  @xref{Paste}.
930 @item defutf8 @var{state}
931 Select default character encoding.  @xref{Character Processing}.
932 @item defwrap @var{state}
933 Set default line-wrapping behavior.  @xref{Wrap}.
934 @item defwritelock @var{on|off|auto}
935 Set default writelock behavior.  @xref{Multiuser Session}.
936 @item defzombie [@var{keys}]
937 Keep dead windows.  @xref{Zombie}.
938 @item detach [-h]
939 Disconnect @code{screen} from the terminal.  @xref{Detach}.
940 @item digraph
941 Enter digraph sequence.  @xref{Digraph}.
942 @item dinfo
943 Display terminal information.  @xref{Info}.
944 @item displays
945 List currently active user interfaces. @xref{Displays}.
946 @item dumptermcap
947 Write the window's termcap entry to a file.  @xref{Dump Termcap}.
948 @item echo [-n] @var{message}
949 Display a message on startup.  @xref{Startup}.
950 @item encoding @var{enc} [@var{denc}]
951 Set the encoding of a window.  @xref{Character Processing}.
952 @item escape @var{xy}
953 Set the command and @code{meta} characters.  @xref{Command Character}.
954 @item eval @var{command1} [@var{command2} ...]
955 Parse and execute each argument. @xref{Eval}.
956 @item exec [[@var{fdpat}] @var{command} [@var{args} ...]]
957 Run a subprocess (filter).  @xref{Exec}.
958 @item fit
959 Change window size to current display size.  @xref{Window Size}.
960 @item flow [@var{fstate}]
961 Set flow control behavior.  @xref{Flow}.
962 @item focus
963 Move focus to next region.  @xref{Regions}.
964 @item gr [@var{state}]
965 Change GR charset processing.  @xref{Character Processing}.
966 @item hardcopy [-h] [@var{file}]
967 Write out the contents of the current window.  @xref{Hardcopy}.
968 @item hardcopy_append @var{state}
969 Append to hardcopy files.  @xref{Hardcopy}.
970 @item hardcopydir @var{directory}
971 Place, where to dump hardcopy files.  @xref{Hardcopy}.
972 @item hardstatus [@var{state}]
973 Use the hardware status line.  @xref{Hardware Status Line}.
974 @item height [@var{lines} [@var{cols}]]
975 Set display height.  @xref{Window Size}.
976 @item help [-c @var{class}]
977 Display current key bindings.  @xref{Help}.
978 @item history
979 Find previous command beginning @dots{}.  @xref{History}.
980 @item hstatus @var{status}
981 Change the window's hardstatus line.  @xref{Hardstatus}.
982 @item idle [@var{timeout} [@var{cmd} @var{args}]]
983 Define a screen saver command.  @xref{Screen Saver}.
984 @item ignorecase [@var{state}]
985 Ignore character case in searches.  @xref{Searching}.
986 @item info
987 Display window settings.  @xref{Info}.
988 @item ins_reg [@var{key}]
989 Removed, use @code{paste} instead.  @xref{Registers}.
990 @item kill
991 Destroy the current window.  @xref{Kill}.
992 @item lastmsg
993 Redisplay the last message.  @xref{Last Message}.
994 @item license
995 Display licensing information.  @xref{Startup}.
996 @item lockscreen
997 Lock the controlling terminal.  @xref{Lock}.
998 @item log [@var{state}]
999 Log all output in the current window.  @xref{Log}.
1000 @item logfile @var{filename}
1001 Place where to collect logfiles.  @xref{Log}.
1002 @item login [@var{state}]
1003 Log the window in @file{/etc/utmp}.  @xref{Login}.
1004 @item logtstamp [@var{state}]
1005 Configure logfile time-stamps.  @xref{Log}.
1006 @item mapdefault
1007 Use only the default mapping table for the next keystroke.  @xref{Bindkey Control}.
1008 @item mapnotnext
1009 Don't try to do keymapping on the next keystroke.  @xref{Bindkey Control}.
1010 @item maptimeout @var{timo}
1011 Set the inter-character timeout used for keymapping. @xref{Bindkey Control}.
1012 @item markkeys @var{string}
1013 Rebind keys in copy mode.  @xref{Copy Mode Keys}.
1014 @item maxwin @var{n}
1015 Set the maximum window number. @xref{Maxwin}.
1016 @item meta
1017 Insert the command character.  @xref{Command Character}.
1018 @item monitor [@var{state}]
1019 Monitor activity in window.  @xref{Monitor}.
1020 @item msgminwait @var{sec}
1021 Set minimum message wait.  @xref{Message Wait}.
1022 @item msgwait @var{sec}
1023 Set default message wait.  @xref{Message Wait}.
1024 @item multiuser @var{state}
1025 Go into single or multi user mode. @xref{Multiuser Session}.
1026 @item nethack @var{state}
1027 Use @code{nethack}-like error messages.  @xref{Nethack}.
1028 @item next
1029 Switch to the next window.  @xref{Selecting}.
1030 @item nonblock [@var{state}|@var{numsecs}]
1031 Disable flow control to the current display. @xref{Nonblock}.|@var{numsecs}]
1032 @item number [@var{n}]
1033 Change/display the current window's number.  @xref{Number}.
1034 @item obuflimit [@var{limit}]
1035 Select output buffer limit.  @xref{Obuflimit}.
1036 @item only
1037 Kill all other regions.  @xref{Regions}.
1038 @item other
1039 Switch to the window you were in last.  @xref{Selecting}.
1040 @item partial @var{state}
1041 Set window to partial refresh.  @xref{Redisplay}.
1042 @item password [@var{crypted_pw}]
1043 Set reattach password.  @xref{Detach}.
1044 @item paste [@var{src_regs} [@var{dest_reg}]]
1045 Paste contents of paste buffer or registers somewhere.  @xref{Paste}.
1046 @item pastefont [@var{state}]
1047 Include font information in the paste buffer.  @xref{Paste}.
1048 @item pow_break
1049 Close and Reopen the window's terminal.  @xref{Break}.
1050 @item pow_detach
1051 Detach and hang up.  @xref{Power Detach}.
1052 @item pow_detach_msg [@var{message}]
1053 Set message displayed on @code{pow_detach}.  @xref{Power Detach}.
1054 @item prev
1055 Switch to the previous window.  @xref{Selecting}.
1056 @item printcmd [@var{cmd}]
1057 Set a command for VT100 printer port emulation.  @xref{Printcmd}.
1058 @item process [@var{key}]
1059 Treat a register as input to @code{screen}.  @xref{Registers}.
1060 @item quit
1061 Kill all windows and exit.  @xref{Quit}.
1062 @item readbuf [-e @var{encoding}] [@var{filename}]
1063 Read the paste buffer from the screen-exchange file.  @xref{Screen Exchange}.
1064 @item readreg [-e @var{encoding}] [@var{reg} [@var{file}]]
1065 Load a register from paste buffer or file.  @xref{Registers}.
1066 @item redisplay
1067 Redisplay the current window.  @xref{Redisplay}.
1068 @item register [-e @var{encoding}] @var{key} @var{string}
1069 Store a string to a register.  @xref{Registers}.
1070 @item remove
1071 Kill current region.  @xref{Regions}.
1072 @item removebuf
1073 Delete the screen-exchange file.  @xref{Screen Exchange}.
1074 @item reset
1075 Reset the terminal settings for the window.  @xref{Reset}.
1076 @item resize [(+/-)lines]
1077 Grow or shrink a region
1078 @item screen [@var{opts}] [@var{n}] [@var{cmd} [@var{args}]]
1079 Create a new window.  @xref{Screen Command}.
1080 @item scrollback @var{num}
1081 Set size of scrollback buffer.  @xref{Scrollback}.
1082 @item select [@var{n}]
1083 Switch to a specified window.  @xref{Selecting}.
1084 @item sessionname [@var{name}]
1085 Name this session.  @xref{Session Name}.
1086 @item setenv [@var{var} [@var{string}]]
1087 Set an environment variable for new windows.  @xref{Setenv}.
1088 @item setsid @var{state}
1089 Controll process group creation for windows.  @xref{Setsid}.
1090 @item shell @var{command}
1091 Set the default program for new windows.  @xref{Shell}.
1092 @item shelltitle @var{title}
1093 Set the default name for new windows.  @xref{Shell}.
1094 @item silence [@var{state}|@var{seconds}]
1095 Monitor a window for inactivity.  @xref{Silence}.
1096 @item silencewait @var{seconds}
1097 Default timeout to trigger an inactivity notify.  @xref{Silence}.
1098 @item sleep @var{num}
1099 Pause during startup.  @xref{Startup}.
1100 @item slowpaste @var{msec}
1101 Slow down pasting in windows.  @xref{Paste}.
1102 @item source @var{file}
1103 Run commands from a file.  @xref{Source}.
1104 @item sorendition [@var{attr} [@var{color}]]
1105 Change text highlighting.  @xref{Sorendition}.
1106 @item split
1107 Split region into two parts.  @xref{Regions}.
1108 @item startup_message @var{state}
1109 Display copyright notice on startup.  @xref{Startup}.
1110 @item stuff @var{string}
1111 Stuff a string in the input buffer of a window.  @xref{Paste}.
1112 @item su [@var{username} [@var{password} [@var{password2}]]]
1113 Identify a user. @xref{Multiuser Session}.
1114 @item suspend
1115 Put session in background.  @xref{Suspend}.
1116 @item term @var{term}
1117 Set @code{$TERM} for new windows.  @xref{Term}.
1118 @item termcap @var{term} @var{terminal-tweaks} [@var{window-tweaks}]
1119 Tweak termcap entries for best performance.  @xref{Termcap Syntax}.
1120 @item terminfo @var{term} @var{terminal-tweaks} [@var{window-tweaks}]
1121 Ditto, for terminfo systems.  @xref{Termcap Syntax}.
1122 @item termcapinfo @var{term} @var{terminal-tweaks} [@var{window-tweaks}]
1123 Ditto, for both systems.  @xref{Termcap Syntax}.
1124 @item time [@var{string}]
1125 Display time and load average.  @xref{Time}.
1126 @item title [@var{windowtitle}]
1127 Set the name of the current window.  @xref{Title Command}.
1128 @item umask [@var{users}]+/-@var{bits} ...
1129 Synonym to @code{aclumask}. @xref{Umask}.
1130 @item unsetenv @var{var}
1131 Unset environment variable for new windows.  @xref{Setenv}.
1132 @item utf8 [@var{state} [@var{dstate}]]
1133 Select character encoding of the current window.  @xref{Character Processing}.
1134 @item vbell [@var{state}]
1135 Use visual bell.  @xref{Bell}.
1136 @item vbell_msg [@var{message}]
1137 Set vbell message.  @xref{Bell}.
1138 @item vbellwait @var{sec}
1139 Set delay for vbell message.  @xref{Bell}.
1140 @item version
1141 Display @code{screen} version.  @xref{Version}.
1142 @item wall @var{message}
1143 Write a message to all displays.  @xref{Multiuser Session}.
1144 @item width [@var{cols} [@var{lines}]]
1145 Set the width of the window.  @xref{Window Size}.
1146 @item windowlist [-b] | string [@var{string}] | title [@var{title}]
1147 Present a list of all windows for selection.  @xref{Windowlist}.
1148 @item windows
1149 List active windows.  @xref{Windows}.
1150 @item wrap [@var{state}]
1151 Control line-wrap behavior.  @xref{Wrap}.
1152 @item writebuf [-e @var{encoding}] [@var{filename}]
1153 Write paste buffer to screen-exchange file.  @xref{Screen Exchange}.
1154 @item writelock @var{on}|@var{off}|@var{auto}
1155 Grant exclusive write permission.  @xref{Multiuser Session}.
1156 @item xoff
1157 Send an XOFF character.  @xref{XON/XOFF}.
1158 @item xon
1159 Send an XON character.  @xref{XON/XOFF}.
1160 @item zmodem [off|auto|catch|pass]
1161 Define how screen treats zmodem requests.  @xref{Zmodem}.
1162 @item zombie [@var{keys} [onerror] ]
1163 Keep dead windows.  @xref{Zombie}.
1164 @end table
1166 @node New Window, Selecting, Commands, Top
1167 @chapter New Window
1169 This section describes the commands for creating a new window for
1170 running programs.  When a new window is created, the first available
1171 number from the range 0@dots{}9 is assigned to it.
1172 The number of windows is limited at compile-time by the MAXWIN
1173 configuration parameter.
1175 @menu
1176 * Chdir::                       Change the working directory for new windows.
1177 * Screen Command::              Create a new window.
1178 * Setenv::                      Set environment variables for new windows.
1179 * Shell::                       Parameters for shell windows.
1180 * Term::                        Set the terminal type for new windows.
1181 * Window Types::                Creating different types of windows.
1182 @end menu
1184 @node Chdir, Screen Command,  , New Window
1185 @section Chdir
1186 @deffn Command chdir [directory]
1187 (none)@*
1188 Change the current directory of @code{screen} to the specified directory
1189 or, if called without an argument, to your home directory (the value of
1190 the environment variable @code{$HOME}).  All windows that are created by means
1191 of the @code{screen} command from within @file{.screenrc} or by means of
1192 @kbd{C-a : screen @dots{}} or @kbd{C-a c} use this as their default
1193 directory.  Without a @code{chdir} command, this would be the directory
1194 from which @code{screen} was invoked.  Hardcopy and log files are always
1195 written to the @emph{window's} default directory, @emph{not} the current
1196 directory of the process running in the window.  You can use this
1197 command multiple times in your @file{.screenrc} to start various windows
1198 in different default directories, but the last @code{chdir} value will
1199 affect all the windows you create interactively.
1200 @end deffn
1202 @node Screen Command, Setenv, Chdir, New Window
1203 @section Screen Command
1204 @kindex c
1205 @kindex C-c
1206 @deffn Command screen [opts] [n] [cmd [args]]
1207 (@kbd{C-a c}, @kbd{C-a C-c})@*
1208 Establish a new window.  The flow-control options (@samp{-f}, @samp{-fn}
1209 and @samp{-fa}), title option (@samp{-t}), login options
1210 (@samp{-l} and @samp{-ln}) , terminal type option (@samp{-T @var{term}}),
1211 the all-capability-flag (@samp{-a}) and scrollback option 
1212 (@samp{-h @var{num}}) may be specified with each command. 
1213 The option (@samp{-M}) turns monitoring on for this window.
1214 The option (@samp{-L}) turns output logging on for this window.
1215 If an optional number @var{n} in the range 0@dots{}9 is given,
1216 the window number @var{n} is assigned to the newly created window (or,
1217 if this number is already in-use, the next available number).  If a
1218 command is specified after @code{screen}, this command (with the given
1219 arguments) is started in the window; otherwise, a shell is created.
1221 Screen has built in some functionality of @samp{cu} and @samp{telnet}.
1222 @xref{Window Types}.
1223 @end deffn
1225 Thus, if your @file{.screenrc} contains the lines
1227 @example
1228 # example for .screenrc:
1229 screen 1
1230 screen -fn -t foobar 2 -L telnet foobar
1231 @end example
1233 @noindent
1234 @code{screen} creates a shell window (in window #1) and a window with a
1235 TELNET connection to the machine foobar (with no flow-control using the
1236 title @samp{foobar} in window #2) and will write a logfile @samp{screenlog.2}
1237 of the telnet session.  If you do not include any
1238 @code{screen} commands in your @file{.screenrc} file, then @code{screen}
1239 defaults to creating a single shell window, number zero.  When the
1240 initialization is completed, @code{screen} switches to the last window
1241 specified in your .screenrc file or, if none, it opens default window
1244 @node Setenv, Shell, Screen Command, New Window
1245 @section Setenv
1246 @deffn Command setenv var string
1247 (none)@*
1248 Set the environment variable @var{var} to value @var{string}.
1249 If only @var{var} is specified, the user will be prompted to enter a value.
1250 If no parameters are specified, the user will be prompted for both variable
1251 and value. The environment is inherited by all subsequently forked shells.
1252 @end deffn
1254 @deffn Command unsetenv var
1255 (none)@*
1256 Unset an environment variable.
1257 @end deffn
1259 @node Shell, Term, Setenv, New Window
1260 @section Shell
1261 @deffn Command shell command
1262 @deffnx Command defshell command
1263 (none)@*
1264 Set the command to be used to create a new shell.  This overrides the
1265 value of the environment variable @code{$SHELL}.  This is useful if
1266 you'd like to run a tty-enhancer which is expecting to execute the
1267 program specified in @code{$SHELL}.  If the command begins with
1268 a @samp{-} character, the shell will be started as a login-shell.
1270 @code{defshell} is currently a synonym to the @code{shell} command.
1271 @end deffn
1273 @deffn Command shelltitle title
1274 (none)@*
1275 Set the title for all shells created during startup or by the C-a C-c
1276 command.  @xref{Naming Windows}, for details about what titles are.
1277 @end deffn
1279 @node Term, Window Types , Shell, New Window
1280 @section Term
1281 @deffn Command term term
1282 (none)@*
1283 In each window @code{screen} opens, it sets the @code{$TERM}
1284 variable to @code{screen} by default, unless no description for
1285 @code{screen} is installed in the local termcap or terminfo data base.
1286 In that case it pretends that the terminal emulator is @samp{vt100}.
1287 This won't do much harm, as @code{screen} is VT100/ANSI compatible.  The
1288 use of the @code{term} command is discouraged for non-default purpose.
1289 That is, one may want to specify special @code{$TERM} settings (e.g. vt100) for
1290 the next @code{screen rlogin othermachine} command. Use the command
1291 @code{screen -T vt100 rlogin othermachine} rather than setting
1292 and resetting the default.
1293 @end deffn
1295 @node Window Types, , Term, New Window
1296 @section Window Types
1297 @cindex window types
1298 Screen provides three different window types. New windows are created
1299 with @code{screen}'s @samp{screen} command (@pxref{Screen Command}).
1300 The first parameter to the @samp{screen} command defines which
1301 type of window is created. The different window types are all
1302 special cases of the normal type. They have been added in order
1303 to allow @code{screen} to be used efficiently as a console
1304 with 100 or more windows.
1305 @itemize @bullet
1306 @item
1307 The normal window contains a shell (default, if no parameter is given)
1308 or any other system command that could be executed from a shell.
1309 (e.g. @samp{slogin}, etc...).
1311 @item
1312 If a tty (character special device) name (e.g. @samp{/dev/ttya})
1313 is specified as the first parameter, then the window is directly
1314 connected to this device.
1315 This window type is similar to @samp{screen cu -l /dev/ttya}.
1316 Read and write access is required on the device node,
1317 an exclusive open is attempted on the node to mark the connection line
1318 as busy.
1319 An optional parameter is allowed consisting of a comma separated
1320 list of flags in the notation used by @samp{stty(1)}:
1321 @table @code
1322 @item <baud_rate>
1323 Usually 300, 1200, 9600 or 19200. This affects transmission as well as
1324 receive speed.
1325 @item cs8 or cs7
1326 Specify the transmission of eight (or seven) bits per byte.
1327 @item ixon or -ixon
1328 Enables (or disables) software flow-control (CTRL-S/CTRL-Q) for sending
1329 data.
1330 @item ixoff or -ixoff
1331 Enables (or disables) software flow-control for receiving data.
1332 @item istrip or -istrip
1333 Clear (or keep) the eight bit in each received byte.
1334 @end table
1336 You may want to specify as many of these options as applicable.
1337 Unspecified options cause the terminal driver to make up the parameter
1338 values of the connection. These values are system-dependent and may be
1339 in defaults or values saved from a previous connection.
1341 For tty windows, the @code{info} command shows some of the modem
1342 control lines in the status line.
1343 These may include @samp{RTS}, @samp{CTS}, @samp{DTR}, @samp{CD} and
1344 more. This depends rather on on the available @code{ioctl()}'s and system
1345 header files than on the physical capabilities of the serial board. 
1346 The name of a logical low (inactive) signal is preceded by an 
1347 exclamation mark (@samp{!}), otherwise the signal is logical high (active).
1348 Unsupported but shown signals are usually shown low.
1349 When the @code{CLOCAL} status bit is true, the whole set of modem signals is 
1350 placed inside curly braces (@samp{@{} and @samp{@}}).
1351 When the @code{CRTSCTS} or @code{TIOCSOFTCAR} bit is true, the signals 
1352 @samp{CTS} or @samp{CD} are shown in parenthesis, respectively.
1354 For tty windows, the command @code{break} causes the Data transmission
1355 line (TxD) to go low for a specified period of time. This is expected
1356 to be interpreted as break signal on the other side.
1357 No data is sent and no modem control line is changed when a
1358 @code{break} is issued.
1360 @item
1361 If the first parameter is @code{//telnet}, the second parameter is
1362 expected to be a host name, and an optional third parameter may specify
1363 a TCP port number (default decimal 23). Screen will connect to a
1364 server listening on the remote host and use the telnet protocol to
1365 communicate with that server.
1367 For telnet windows, the command @code{info} shows details about
1368 the connection in square brackets (@samp{[} and @samp{]}) at the end of
1369 the status line.
1370 @table @code
1371 @item b
1372 BINARY. The connection is in binary mode.
1373 @item e
1374 ECHO. Local echo is disabled.
1375 @item c
1376 SGA. The connection is in `character mode' (default: `line mode').
1377 @item t
1378 TTYPE. The terminal type has been requested by the remote host. Screen
1379 sends the name @code{screen} unless instructed otherwise (see also the
1380 command @samp{term}).
1381 @item w
1382 NAWS. The remote site is notified about window size changes.
1383 @item f
1384 LFLOW. The remote host will send flow control information.
1385 (Ignored at the moment.)
1386 @end table
1387 Additional flags for debugging are @samp{x}, @samp{t} and @samp{n}
1388 (XDISPLOC, TSPEED and NEWENV).
1390 For telnet windows, the command @code{break} sends the telnet code
1391 @code{IAC BREAK} (decimal 243) to the remote host.
1393 @end itemize
1395 @node Selecting, Session Management, New Window, Top
1396 @chapter Selecting a Window
1398 This section describes the commands for switching between windows in an
1399 @code{screen} session.  The windows are numbered from 0 to 9, and are created
1400 in that order by default (@pxref{New Window}).
1402 @menu
1403 * Next and Previous::           Forward or back one window.
1404 * Other Window::                Switch back and forth between two windows.
1405 * Select::                      Switch to a window (and to one after @code{kill}).
1406 * Windowlist::                  Present a list of all windows for selection.
1407 @end menu
1409 @node Next and Previous, Other Window,  , Selecting
1410 @section Moving Back and Forth
1411 @kindex SPC
1412 @kindex n
1413 @kindex C-n
1414 @deffn Command next
1415 (@kbd{C-a @key{SPC}}, @kbd{C-a n}, @kbd{C-a C-n})@*
1416 Switch to the next window.  This command can be used repeatedly to
1417 cycle through the list of windows.  (On some terminals, C-@key{SPC}
1418 generates a NUL character, so you must release the control key before
1419 pressing space.)
1420 @end deffn
1422 @kindex p
1423 @kindex C-p
1424 @deffn Command prev
1425 (@kbd{C-a p}, @kbd{C-a C-p})@*
1426 Switch to the previous window (the opposite of @kbd{C-a n}).
1427 @end deffn
1429 @node Other Window, Select, Next and Previous, Selecting
1430 @section Other Window
1431 @kindex C-a
1432 @deffn Command other
1433 (@kbd{C-a C-a})@*
1434 Switch to the last window displayed.  Note that this command
1435 defaults to the command character typed twice, unless overridden.
1436 For instance, if you use the option @samp{-e]x}, 
1437 this command becomes @kbd{]]} (@pxref{Command Character}).
1438 @end deffn
1440 @node Select, Windowlist, Other Window, Selecting
1441 @section Select
1442 @kindex 0@dots{}9
1443 @kindex '
1444 @deffn Command select [n]
1445 (@kbd{C-a @var{n}}, @kbd{C-a '})@*
1446 Switch to the window with the number @var{n}.
1447 If no window number is specified, you get prompted for an 
1448 identifier. This can be a window name (title) or a number.
1449 When a new window is established, the lowest available number
1450 is assigned to this window.
1451 Thus, the first window can be activated by @code{select 0}; there
1452 can be no more than 10 windows present simultaneously (unless screen is
1453 compiled with a higher MAXWIN setting).
1454 There are two special arguments, @code{select -} switches to the
1455 internal blank window and @code{select .} switches to the
1456 current window. The latter is useful if used with screen's
1457 @code{-X} option.
1459 @end deffn
1461 @node Windowlist, , Select, Selecting
1462 @section Windowlist
1463 @kindex "
1464 @deffn Command windowlist [-b] [-m]
1465 @deffnx Command windowlist string [@var{string}]
1466 @deffnx Command windowlist title [@var{title}]
1467 (@kbd{C-a "})@*
1468 Display all windows in a table for visual window selection.
1469 The desired window can be selected via the standard
1470 movement keys (@pxref{Movement}) and activated via
1471 the return key.  If the @code{-b} option is given, screen will
1472 switch to the blank window before presenting the list, so
1473 that the current window is also selectable.
1474 The @code{-m} option changes the order of the windows, instead of
1475 sorting by window numbers screen uses its internal most-recently-used
1476 list.
1478 The table format can be changed with the string and title
1479 option, the title is displayed as table heading, while the
1480 lines are made by using the string setting.  The default
1481 setting is @samp{Num Name%=Flags} for the title and
1482 @samp{%3n %t%=%f} for the lines. See the string escapes chapter
1483 (@pxref{String Escapes}) for more codes (e.g. color settings).
1485 @end deffn
1487 @node Session Management, Regions, Selecting, Top
1488 @chapter Session Management Commands
1490 Perhaps the most useful feature of @code{screen} is the way it allows
1491 the user to move a session between terminals, by detaching and
1492 reattaching.  This also makes life easier for modem users who have to
1493 deal with unexpected loss of carrier.
1495 @menu
1496 * Detach::                      Disconnect @code{screen} from your terminal.
1497 * Power Detach::                Detach and log out.
1498 * Lock::                        Lock your terminal temporarily.
1499 * Multiuser Session::           Changing number of allowed users.
1500 * Session Name::                Rename your session for later reattachment.
1501 * Suspend::                     Suspend your session.
1502 * Quit::                        Terminate your session.
1503 @end menu
1505 @node Detach, Power Detach,  , Session Management
1506 @section Detach
1508 @deffn Command autodetach state
1509 (none)@*
1510 Sets whether @code{screen} will automatically detach upon hangup, which
1511 saves all your running programs until they are resumed with a
1512 @code{screen -r} command.  When turned off, a hangup signal will
1513 terminate @code{screen} and all the processes it contains. Autodetach is
1514 on by default.
1515 @end deffn
1517 @kindex d
1518 @kindex C-d
1519 @deffn Command detach
1520 (@kbd{C-a d}, @kbd{C-a C-d})@*
1521 Detach the @code{screen} session (disconnect it from the terminal and
1522 put it into the background).  A detached @code{screen} can be resumed by
1523 invoking @code{screen} with the @code{-r} option (@pxref{Invoking
1524 Screen}).
1525 The @code{-h} option tells screen to immediately close the connection
1526 to the terminal (@samp{hangup}).
1527 @end deffn
1529 @deffn Command password [crypted_pw]
1530 (none)@*
1531 Present a crypted password in your @file{.screenrc} file and screen will
1532 ask for it, whenever someone attempts to resume a detached session. This
1533 is useful, if you have privileged programs running under @code{screen}
1534 and you want to protect your session from reattach attempts by users
1535 that managed to assume your uid. (I.e. any superuser.)  If no crypted
1536 password is specified, screen prompts twice a password and places its
1537 encryption in the paste buffer.  Default is `none', which disables
1538 password checking.
1539 @end deffn
1541 @node Power Detach, Lock, Detach, Session Management
1542 @section Power Detach
1544 @kindex D
1545 @deffn Command pow_detach
1546 (@kbd{C-a D D})@*
1547 Mainly the same as @code{detach}, but also sends a HANGUP signal
1548 to the parent process of @code{screen}.@*
1549 @emph{Caution}: This will result in a
1550 logout if @code{screen} was started from your login shell.
1551 @end deffn
1553 @deffn Command pow_detach_msg [message]
1554 (none)@*
1555 The @var{message} specified here is output whenever a power detach is
1556 performed. It may be used as a replacement for a logout message or to reset 
1557 baud rate, etc.
1558 Without parameter, the current message is shown.
1559 @end deffn
1561 @node Lock, Multiuser Session, Power Detach, Session Management
1562 @section Lock
1563 @kindex x
1564 @kindex C-x
1565 @deffn Command lockscreen
1566 (@kbd{C-a x}, @kbd{C-a C-x})@*
1567 Call a screenlock program (@file{/local/bin/lck} or @file{/usr/bin/lock}
1568 or a builtin, if no other is available). Screen does not accept any
1569 command keys until this program terminates. Meanwhile processes in the
1570 windows may continue, as the windows are in the detached state.
1571 The screenlock program may be changed through the environment variable
1572 @code{$LOCKPRG} (which must be set in the shell from which @code{screen}
1573 is started) and is executed with the user's uid and gid.
1575 Warning: When you leave other shells unlocked and have no password set
1576 on @code{screen}, the lock is void: One could easily re-attach from an
1577 unlocked shell. This feature should rather be called
1578 @code{lockterminal}.
1579 @end deffn
1581 @node Multiuser Session, Session Name, Lock, Session Management
1582 @section Multiuser Session
1583 @cindex multiuser session 
1585 These commands allow other users to gain access to one single @code{screen}
1586 session. When attaching to a multiuser @code{screen} the sessionname is 
1587 specified as @code{username/sessionname} to the @code{-S} command line option.
1588 @code{Screen} must be compiled with multiuser support to enable features 
1589 described here.
1591 @menu
1592 * Multiuser::                   Enable / Disable multiuser mode.
1593 * Acladd::                      Enable a specific user.
1594 * Aclchg::                      Change a users permissions.
1595 * Acldel::                      Disable a specific user.
1596 * Aclgrp::                      Grant a user permissions to other users.
1597 * Displays::                    List all active users at their displays.
1598 * Umask::                       Predefine access to new windows.
1599 * Wall::                        Write a message to all users.
1600 * Writelock::                   Grant exclusive window access.
1601 * Su::                          Substitute user.
1602 @end menu
1604 @node Multiuser, Acladd,  , Multiuser Session
1605 @subsection Multiuser
1606 @deffn Command multiuser @var{state}
1607 (none)@*
1608 Switch between single-user and multi-user mode. Standard screen operation is 
1609 single-user. In multi-user mode the commands @code{acladd}, @code{aclchg} and 
1610 @code{acldel} can be used to enable (and disable) other users accessing this 
1611 @code{screen}.  
1612 @end deffn
1614 @node Acladd, Aclchg, Multiuser, Multiuser Session
1615 @subsection Acladd
1616 @deffn Command acladd @var{usernames}
1617 @deffnx Command addacl @var{usernames}
1618 (none)@*
1619 Enable users to fully access this screen session. @var{Usernames} can be one 
1620 user or a comma separated list of users. This command enables to attach to
1621 the @code{screen} session and performs the equivalent of
1622 @code{aclchg @var{usernames} +rwx "#?"}. To add a user with restricted access,
1623 use the @code{aclchg} command below. 
1624 @code{Addacl} is a synonym to @code{acladd}.
1625 Multi-user mode only.
1626 @end deffn
1628 @node Aclchg, Acldel, Acladd, Multiuser Session
1629 @subsection Aclchg
1630 @deffn Command aclchg @var{usernames permbits list}
1631 @deffnx Command chacl @var{usernames permbits list}
1632 (none)@*
1633 Change permissions for a comma separated list of users. 
1634 Permission bits are represented as @samp{r}, @samp{w} and @samp{x}. 
1635 Prefixing @samp{+} grants the permission, @samp{-} removes it. The third 
1636 parameter is a comma separated list of commands or windows (specified either 
1637 by number or title). The special list @samp{#} refers to all windows, @samp{?} 
1638 to all commands. If @var{usernames} consists of a single @samp{*}, all 
1639 known users are affected. 
1640 A command can be executed when the user has the @samp{x} bit for it. The user
1641 can type input to a window when he has its @samp{w} bit set and no other
1642 user obtains a writelock for this window. Other bits are currently ignored.
1643 To withdraw the writelock from another user in e.g. window 2:
1644 @samp{aclchg @var{username} -w+w 2}. To allow read-only access 
1645 to the session: @samp{aclchg @var{username} -w "#"}. As soon as a user's name 
1646 is known to screen, he can attach to the session and (per default) has full 
1647 permissions for all command and windows. Execution permission for the acl 
1648 commands, @code{at} and others should also be removed or the user may be able 
1649 to regain write permission.
1650 @code{Chacl} is a synonym to @code{aclchg}.
1651 Multi-user mode only.
1652 @end deffn
1654 @node Acldel, Aclgrp, Aclchg, Multiuser Session
1655 @subsection Acldel
1656 @deffn Command acldel @var{username}
1657 (none)@*
1658 Remove a user from screen's access control list. If currently attached, all the
1659 user's displays are detached from the session. He cannot attach again.
1660 Multi-user mode only.
1661 @end deffn
1663 @node Aclgrp, Displays, Acldel, Multiuser Session
1664 @subsection Aclgrp
1665 @deffn Command aclgrp @var{username} [@var{groupname}]
1666 (none)@*
1667 Creates groups of users that share common access rights. The
1668 name  of the group is the username of the group leader. Each
1669 member of  the  group  inherits  the  permissions  that  are
1670 granted  to the group leader. That means, if a user fails an
1671 access check, another check is made for the group leader.
1672 A user is removed from all groups the special value @samp{none}
1673 is used for @var{groupname}. If the second parameter is omitted
1674 all groups the user is in are listed.
1675 @end deffn
1677 @node Displays, Umask, Aclgrp, Multiuser Session
1678 @subsection Displays
1679 @kindex *
1680 @deffn Command displays
1681 (@kbd{C-a *})@*
1682 Shows a tabular listing  of  all  currently  connected  user
1683 front-ends  (displays).   This  is most useful for multiuser
1684 sessions.
1685 @end deffn
1687 @node Umask, Wall, Displays, Multiuser Session
1688 @subsection aclumask
1689 @deffn Command aclumask [@var{users}]+/-@var{bits} ...
1690 @deffnx Command umask [@var{users}]+/-@var{bits} ...
1691 (none)@*
1692 This specifies the access other users have to  windows  that
1693 will  be  created  by  the caller of the command. @var{Users} may be no,
1694 one or a comma separated list of known usernames.  If  no  users  are
1695 specified,  a  list of all currently known users is assumed.
1696 @var{Bits} is any  combination  of  access  control  bits  allowed
1697 defined  with the @code{aclchg} command. The special username @samp{?}
1698 predefines the access that  not  yet  known  users  will  be
1699 granted  to any window initially.  The special username @samp{??}
1700 predefines the access that not yet known users  are  granted
1701 to any command. Rights of the special username nobody cannot
1702 be changed (see the @code{su} command).
1703 @code{Umask} is a synonym to @code{aclumask}.
1704 @end deffn
1707 @node Wall, Writelock, Umask, Multiuser Session
1708 @subsection Wall
1709 @deffn Command wall @var{message}
1710 (none)@*
1711 Write a message to all displays. The message will appear in the terminal's
1712 status line.
1713 @end deffn
1715 @node Writelock, Su , Wall, Multiuser Session
1716 @subsection Writelock
1717 @deffn Command writelock @var{on|off|auto}
1718 (none)@*
1719 In addition to access control lists, not all users may be able to write to
1720 the same window at once. Per default, writelock is in @samp{auto} mode and
1721 grants exclusive input permission to the user who is the first to switch
1722 to the particular window. When he leaves the window, other users may obtain
1723 the writelock (automatically). The writelock of the current window is disabled
1724 by the command @code{writelock off}. If the user issues the command
1725 @code{writelock on} he keeps the exclusive write permission while switching
1726 to other windows.
1727 @end deffn
1729 @deffn Command defwritelock @var{on|off|auto}
1730 (none)@*
1731 Sets the default writelock behavior for new windows. Initially all windows
1732 will be created with no writelocks.
1733 @end deffn
1735 @node Su,  , Writelock, Multiuser Session
1736 @subsection Su
1737 @deffn Command su [@var{username} [@var{password} [@var{password2}]]]
1738 (none)@*
1739 Substitute the user of a display. The  command  prompts  for
1740 all parameters that are omitted. If passwords are specified
1741 as parameters, they have  to  be  specified  un-crypted.  The
1742 first  password  is matched against the systems passwd database,
1743 the second password  is  matched  against  the @code{screen}
1744 password  as  set  with the commands @code{acladd} or @code{password}.
1745 @code{Su} may be useful for the @code{screen} administrator to test
1746 multiuser  setups.
1747 When  the  identification  fails,  the  user has
1748 access to the commands available for user @samp{nobody}. These are
1749 @code{detach}, @code{license}, @code{version}, @code{help} and
1750 @code{displays}.
1751 @end deffn
1753 @node Session Name, Suspend, Multiuser Session, Session Management
1754 @section Session Name
1755 @deffn Command sessionname [@var{name}]
1756 (none)@*
1757 Rename the current session. Note that for @code{screen -list} the name
1758 shows up with the process-id prepended. If the argument @var{name} is
1759 omitted, the name of this session is displayed.@*
1760 @emph{Caution}: The @code{$STY}
1761 environment variable will still reflect the old name in pre-existing
1762 shells. This may result in
1763 confusion.  The default is constructed from the tty and host names.
1764 @end deffn
1766 @node Suspend, Quit, Session Name, Session Management
1767 @section Suspend
1768 @kindex z
1769 @kindex C-z
1770 @deffn Command suspend
1771 (@kbd{C-a z}, @kbd{C-a C-z})@*
1772 Suspend @code{screen}.  The windows are in the detached state while
1773 @code{screen} is suspended.  This feature relies on the parent shell
1774 being able to do job control.
1775 @end deffn
1777 @node Quit,  , Suspend, Session Management
1778 @section Quit
1779 @kindex C-\
1780 @deffn Command quit
1781 (@kbd{C-a C-\})@*
1782 Kill all windows and terminate @code{screen}.  Note that on VT100-style
1783 terminals the keys @kbd{C-4} and @kbd{C-\} are identical.  So be careful
1784 not to type @kbd{C-a C-4} when selecting window no. 4.  Use the empty
1785 bind command (as in @code{bind "^\"}) to remove a key binding
1786 (@pxref{Key Binding}).
1787 @end deffn
1789 @node Regions, Window Settings, Session Management, Top
1790 @chapter Regions
1791 @cindex regions
1792 Screen has the ability to display more than one window on the
1793 user's display. This is done by splitting the screen in regions,
1794 which can contain different windows.
1796 @menu
1797 * Split::                       Split a region into two
1798 * Focus::                       Change to the next region
1799 * Only::                        Delete all other regions
1800 * Remove::                      Delete the current region
1801 * Resize::                      Grow or shrink a region
1802 * Caption::                     Control the window's caption
1803 * Fit::                         Resize a window to fit the region
1804 @end menu
1806 @node Split, Focus,  , Regions
1807 @section Split
1808 @kindex S
1809 @deffn Command split
1810 (@kbd{C-a S})@*
1811 Split the current region into two new ones. All regions on the
1812 display are resized to make room for the new region. The blank
1813 window is displayed on the new region.
1814 @end deffn
1816 @node Focus, Only, Split, Regions
1817 @section Focus
1818 @kindex TAB
1819 @deffn Command focus
1820 (@kbd{C-a @key{Tab}})@*
1821 Move the input focus to the next region. This is done in a cyclic
1822 way so that the top region is selected after the bottom one. If
1823 no subcommand is given it defaults to `down'. `up' cycles in the
1824 opposite order, `top' and `bottom' go to the top and bottom
1825 region respectively. Useful bindings are (j and k as in vi)
1826 @example
1827 bind j focus down
1828 bind k focus up
1829 bind t focus top
1830 bind b focus bottom
1831 @end example
1832 @end deffn
1834 @node Only, Remove, Focus, Regions
1835 @section Only
1836 @kindex Q
1837 @deffn Command only
1838 (@kbd{C-a Q})@*
1839 Kill all regions but the current one.
1840 @end deffn
1842 @node Remove, Resize, Only, Regions
1843 @section Remove
1844 @kindex X
1845 @deffn Command remove
1846 (@kbd{C-a X})@*
1847 Kill the current region. This is a no-op if there is only one region.
1848 @end deffn
1850 @node Resize, Caption, Remove, Regions
1851 @section Resize
1852 @deffn Command resize [(+/-)@var{lines}]
1853 (none)@*
1854 Resize the current region. The space will be removed from or added to
1855 the region below or if there's not enough space from the region above.
1856 @example
1857 resize +N       increase current region height by N
1858 resize -N       decrease current region height by N
1859 resize  N       set current region height to N
1860 resize  =       make all windows equally high
1861 resize  max     maximize current region height
1862 resize  min     minimize current region height
1863 @end example
1864 @end deffn
1866 @node Caption, Fit, Resize, Regions
1867 @section Caption
1868 @deffn Command caption @code{always}|@code{splitonly} [string]
1869 @deffnx Command caption @code{string} [string]
1870 (none)@*
1871 This command controls the display of the window captions. Normally
1872 a caption is only used if more than one window is shown on the
1873 display (split screen mode). But if the type is set to
1874 @code{always}, @code{screen} shows a caption
1875 even if only one window is displayed. The default
1876 is @samp{splitonly}.
1878 The second form changes the text used for the caption. You can use
1879 all string escapes (@pxref{String Escapes}). @code{Screen} uses
1880 a default of @samp{%3n %t}.
1882 You can mix both forms by providing the string as an additional
1883 argument.
1884 @end deffn
1886 @node Fit, , Caption, Regions
1887 @section Fit
1888 @kindex F
1889 @deffn Command fit
1890 (@kbd{C-a F})@*
1891 Change the window size to the size of the current region. This
1892 command is needed because screen doesn't adapt the window size
1893 automatically if the window is displayed more than once.
1894 @end deffn
1896 @node Window Settings, Virtual Terminal, Regions, Top
1897 @chapter Window Settings
1899 These commands control the way @code{screen} treats individual windows
1900 in a session.  @xref{Virtual Terminal}, for commands to control the
1901 terminal emulation itself.
1903 @menu
1904 * Naming Windows::              Control the name of the window
1905 * Console::                     See the host's console messages
1906 * Kill::                        Destroy an unwanted window
1907 * Login::                       Control @file{/etc/utmp} logging
1908 * Mode::                        Control the file mode of the pty
1909 * Monitor::                     Watch for activity in a window
1910 * Windows::                     List the active windows
1911 * Hardstatus::                  Set a window's hardstatus line
1912 @end menu
1914 @node Naming Windows, Console,  , Window Settings
1915 @section Naming Windows (Titles)
1916 @cindex title
1918 You can customize each window's name in the window display (viewed with
1919 the @code{windows} command (@pxref{Windows}) by setting it with
1920 one of the title commands.  Normally the name displayed is the actual
1921 command name of the program created in the window.  However, it is
1922 sometimes useful to distinguish various programs of the same name or to
1923 change the name on-the-fly to reflect the current state of the window.
1925 The default name for all shell windows can be set with the
1926 @code{shelltitle} command (@pxref{Shell}).  You can specify the name you
1927 want for a window with the @samp{-t} option to the @code{screen} command
1928 when the window is created (@pxref{Screen Command}).  To change the name after
1929 the window has been created you can use the title-string escape-sequence
1930 (@kbd{@key{ESC} k @var{name} @key{ESC} \}) and the @code{title} command
1931 (C-a A).  The former can be output from an application to control the
1932 window's name under software control, and the latter will prompt for a
1933 name when typed.  You can also bind predefined names to keys with the
1934 @code{title} command to set things quickly without prompting.
1936 @menu
1937 * Title Command::                 The @code{title} command.
1938 * Dynamic Titles::                Make shell windows change titles dynamically.
1939 * Title Prompts::                 Set up your shell prompt for dynamic Titles.
1940 * Title Screenrc::                Set up Titles in your @file{.screenrc}.
1941 @end menu
1943 @node Title Command, Dynamic Titles,  , Naming Windows
1944 @subsection Title Command
1945 @kindex A
1946 @deffn Command title [windowtitle]
1947 (@kbd{C-a A})@*
1948 Set the name of the current window to @var{windowtitle}. If no name is 
1949 specified, screen prompts for one.
1950 @end deffn
1952 @node Dynamic Titles, Title Prompts, Title Command, Naming Windows
1953 @subsection Dynamic Titles
1954 @code{screen} has a shell-specific heuristic that is enabled by
1955 setting the window's name to @var{search|name} and arranging to have a
1956 null title escape-sequence output as a part of your prompt.  The
1957 @var{search} portion specifies an end-of-prompt search string, while the
1958 @var{name} portion specifies the default shell name for the window.  If
1959 the @var{name} ends in a @samp{:} @code{screen} will add what it
1960 believes to be the current command running in the window to the end of
1961 the specified name (e.g. @var{name:cmd}).  Otherwise the current
1962 command name supersedes the shell name while it is running.
1964 Here's how it works: you must modify your shell prompt to output a null
1965 title-escape-sequence (@key{ESC} k @key{ESC} \) as a part of your prompt.
1966 The last part of your prompt must be the same as the string you
1967 specified for the @var{search} portion of the title.  Once this is set
1968 up, @code{screen} will use the title-escape-sequence to clear the previous
1969 command name and get ready for the next command.  Then, when a newline
1970 is received from the shell, a search is made for the end of the prompt.
1971 If found, it will grab the first word after the matched string and use
1972 it as the command name.  If the command name begins with @samp{!},
1973 @samp{%}, or @samp{^}, @code{screen} will use the first word on the
1974 following line (if found) in preference to the just-found name.  This
1975 helps csh users get more accurate titles when using job control or
1976 history recall commands.
1978 @node Title Prompts, Title Screenrc, Dynamic Titles, Naming Windows
1979 @subsection Setting up your prompt for shell titles
1980 One thing to keep in mind when adding a null title-escape-sequence to your
1981 prompt is that some shells (like the csh) count all the non-control
1982 characters as part of the prompt's length.  If these invisible
1983 characters aren't a multiple of 8 then backspacing over a tab will
1984 result in an incorrect display.  One way to get around this is to use a
1985 prompt like this:
1987 @example
1988 set prompt='@value{esc}[0000m@value{esc}k@value{esc}\% '
1989 @end example
1991 The escape-sequence @samp{@value{esc}[0000m} not only normalizes the
1992 character attributes, but all the zeros round the length of the
1993 invisible characters up to 8.
1995 Tcsh handles escape codes in the prompt more intelligently, so you can
1996 specify your prompt like this:
1998 @example
1999 set prompt="%@{\ek\e\\%@}\% "
2000 @end example
2002 Bash users will probably want to echo the escape sequence in the
2003 PROMPT_COMMAND:
2005 @example
2006 PROMPT_COMMAND='printf "\033k\033\134"'
2007 @end example
2009 (I used @samp{\134} to output a @samp{\} because of a bug in v1.04).
2011 @node Title Screenrc,  , Title Prompts, Naming Windows
2012 @subsection Setting up shell titles in your @file{.screenrc}
2013 Here are some .screenrc examples:
2015 @example
2016 screen -t top 2 nice top
2017 @end example
2019 Adding this line to your .screenrc would start a niced version of the
2020 @code{top} command in window 2 named @samp{top} rather than @samp{nice}.
2022 @example
2023 shelltitle '> |csh'
2024 screen 1
2025 @end example
2027 This file would start a shell using the given shelltitle.  The title
2028 specified is an auto-title that would expect the prompt and the typed
2029 command to look something like the following:
2031 @example
2032 /usr/joe/src/dir> trn
2033 @end example
2035 (it looks after the '> ' for the command name).
2036 The window status would show the name @samp{trn} while the command was
2037 running, and revert to @samp{csh} upon completion.
2039 @example
2040 bind R screen -t '% |root:' su
2041 @end example
2043 Having this command in your .screenrc would bind the key sequence
2044 @kbd{C-a R} to the @code{su} command and give it an auto-title name of
2045 @samp{root:}.  For this auto-title to work, the screen could look
2046 something like this:
2048 @example
2049 % !em
2050 emacs file.c
2051 @end example
2053 Here the user typed the csh history command @code{!em} which ran the
2054 previously entered @code{emacs} command.  The window status would show
2055 @samp{root:emacs} during the execution of the command, and revert to
2056 simply @samp{root:} at its completion.
2058 @example
2059 bind o title
2060 bind E title ""
2061 bind u title (unknown)
2062 @end example
2064 The first binding doesn't have any arguments, so it would prompt you for
2065 a title when you type @kbd{C-a o}.  The second binding would clear an
2066 auto-titles current setting (C-a E).  The third binding would set the
2067 current window's title to @samp{(unknown)} (C-a u).
2069 @node Console, Kill, Naming Windows, Window Settings
2070 @section Console
2071 @deffn Command console [@var{state}]
2072 (none)@*
2073 Grabs or un-grabs the machines console output to a window. When the argument
2074 is omitted the current state is displayed.
2075 @emph{Note}: Only the owner of @file{/dev/console} can grab the console
2076 output. This command is only available if the host supports the ioctl
2077 @code{TIOCCONS}.
2078 @end deffn
2080 @node Kill, Login, Console, Window Settings
2081 @section Kill
2083 @kindex k
2084 @kindex C-k
2085 @deffn Command kill
2086 (@kbd{C-a k}, @kbd{C-a C-k})@*
2087 Kill the current window.@*
2088 If there is an @code{exec} command running (@pxref{Exec}) then it is killed.
2089 Otherwise the process (e.g. shell) running in the window receives a 
2090 @code{HANGUP} condition, 
2091 the window structure is removed and screen (your display) switches to another
2092 window. When the last window is destroyed, @code{screen} exits.
2093 After a kill screen switches to the previously displayed window.
2094 @* 
2095 @emph{Caution}: @code{emacs} users may find themselves killing their
2096 @code{emacs} session when trying to delete the current line.  For this
2097 reason, it is probably wise to use a different command character
2098 (@pxref{Command Character}) or rebind @code{kill} to another key
2099 sequence, such as @kbd{C-a K} (@pxref{Key Binding}).
2100 @end deffn
2102 @node Login, Mode, Kill, Window Settings
2103 @section Login
2105 @deffn Command deflogin state
2106 (none)@*
2107 Same as the @code{login} command except that the default setting for new
2108 windows is changed.  This defaults to `on' unless otherwise specified at
2109 compile time (@pxref{Installation}). Both commands are only present when
2110 @code{screen} has been compiled with utmp support.
2111 @end deffn
2113 @kindex L
2114 @deffn Command login [state]
2115 (@kbd{C-a L})@*
2116 Adds or removes the entry in @file{/etc/utmp} for the current window.
2117 This controls whether or not the window is @dfn{logged in}.  In addition
2118 to this toggle, it is convenient to have ``log in'' and ``log out''
2119 keys.  For instance, @code{bind I login on} and @code{bind O 
2120 login off} will map these keys to be @kbd{C-a I} and @kbd{C-a O}
2121 (@pxref{Key Binding}).
2122 @end deffn
2124 @node Mode, Monitor, Login, Window Settings
2125 @section Mode
2126 @deffn Command defmode mode
2127 (none)@*
2128 The mode of each newly allocated pseudo-tty is set to @var{mode}.
2129 @var{mode} is an octal number as used by chmod(1).  Defaults to 0622 for
2130 windows which are logged in, 0600 for others (e.g. when @code{-ln} was 
2131 specified for creation, @pxref{Screen Command}).
2132 @end deffn
2134 @node Monitor, Windows, Mode, Window Settings
2135 @section Monitoring
2137 @deffn Command activity message
2138 (none)@*
2139 When any activity occurs in a background window that is being monitored,
2140 @code{screen} displays a notification in the message line.  The
2141 notification message can be redefined by means of the @code{activity}
2142 command.  Each occurrence of @samp{%} in @var{message} is replaced by
2143 the number of the window in which activity has occurred, and each
2144 occurrence of @samp{^G} is replaced by the definition for bell in your
2145 termcap (usually an audible bell).  The default message is
2147 @example
2148 'Activity in window %n'
2149 @end example
2151 Note that monitoring is off for all windows by default, but can be altered
2152 by use of the @code{monitor} command (@kbd{C-a M}).
2153 @end deffn
2155 @deffn Command defmonitor state
2156 (none)@*
2157 Same as the @code{monitor} command except that the default setting for
2158 new windows is changed.  Initial setting is `off'.
2159 @end deffn
2161 @kindex M
2162 @deffn Command monitor [state]
2163 (@kbd{C-a M})@*
2164 Toggles monitoring of the current window.  When monitoring is turned on
2165 and the affected window is switched into the background, the activity
2166 notification message will be displayed in the status line at the first
2167 sign of output, and the window will also be marked with an @samp{@@} in
2168 the window-status display (@pxref{Windows}).  Monitoring defaults to
2169 @samp{off} for all windows.
2170 @end deffn
2172 @node Windows, Hardstatus, Monitor, Window Settings
2173 @section Windows
2174 @kindex w
2175 @kindex C-w
2176 @deffn Command windows
2177 (@kbd{C-a w}, @kbd{C-a C-w})@*
2178 Uses the message line to display a list of all the windows.  Each
2179 window is listed by number with the name of the program running in the
2180 window (or its title). 
2182 The current window is marked with a @samp{*};
2183 the previous window is marked with a @samp{-}; 
2184 all the windows that are logged in are marked with a @samp{$} (@pxref{Login});
2185 a background window that has received a bell is marked with a @samp{!};
2186 a background window that is being monitored and has had activity occur is 
2187 marked with an @samp{@@} (@pxref{Monitor});
2188 a window which has output logging turned on is marked with @samp{(L)};
2189 windows occupied by other users are marked with @samp{&}
2190 or @samp{&&} if the window is shared by other users;
2191 windows in the zombie state are marked with @samp{Z}. 
2193 If this list is too long to fit on the terminal's status line only the
2194 portion around the current window is displayed.
2195 @end deffn
2197 @node Hardstatus, , Windows, Window Settings
2198 @section Hardstatus
2200 @code{Screen} maintains a hardstatus line for every window. If a window
2201 gets selected, the display's hardstatus will be updated to match
2202 the window's hardstatus line.
2203 The hardstatus line can be changed with the ANSI Application
2204 Program Command (APC): @samp{ESC_<string>ESC\}. As a convenience
2205 for xterm users the sequence @samp{ESC]0..2;<string>^G} is
2206 also accepted.
2208 @deffn Command defhstatus [status]
2209 (none)@*
2210 The hardstatus line that all new windows will get is set to
2211 @var{status}.
2212 This command is useful to make the hardstatus of every window
2213 display the window number or title or the like.  @var{status}
2214 may contain the same directives as in the window messages, but
2215 the directive escape character is @samp{^E} (octal 005) instead
2216 of @samp{%}.  This was done to make a misinterpretation of program
2217 generated hardstatus lines impossible.
2218 If the parameter @var{status}
2219 is omitted, the current default string is displayed.
2220 Per default the hardstatus line of new windows is empty.
2221 @end deffn
2223 @deffn Command hstatus status
2224 (none)@*
2225 Changes the current window's hardstatus line to @var{status}.
2226 @end deffn
2228 @node Virtual Terminal, Copy and Paste, Window Settings, Top
2229 @chapter Virtual Terminal
2231 Each window in a @code{screen} session emulates a VT100 terminal, with
2232 some extra functions added. The VT100 emulator is hard-coded, no other
2233 terminal types can be emulated. 
2234 The commands described here modify the terminal emulation.
2236 @menu
2237 * Control Sequences::           Details of the internal VT100 emulation.
2238 * Input Translation::           How keystrokes are remapped.
2239 * Digraph::                     Entering digraph sequences.
2240 * Bell::                        Getting your attention.
2241 * Clear::                       Clear the window display.
2242 * Info::                        Terminal emulation statistics.
2243 * Redisplay::                   When the display gets confusing.
2244 * Wrap::                        Automatic margins.
2245 * Reset::                       Recovering from ill-behaved applications.
2246 * Window Size::                 Changing the size of your terminal.
2247 * Character Processing::        Change the effect of special characters.
2248 @end menu
2250 @node Control Sequences, Input Translation,  , Virtual Terminal
2251 @section Control Sequences
2252 @cindex control sequences
2253 The following is a list of control sequences recognized by
2254 @code{screen}.  @samp{(V)} and @samp{(A)} indicate VT100-specific and
2255 ANSI- or ISO-specific functions, respectively.
2257 @example
2258 ESC E                           Next Line
2259 ESC D                           Index
2260 ESC M                           Reverse Index
2261 ESC H                           Horizontal Tab Set
2262 ESC Z                           Send VT100 Identification String
2263 ESC 7                   (V)     Save Cursor and Attributes
2264 ESC 8                   (V)     Restore Cursor and Attributes
2265 ESC [s                  (A)     Save Cursor and Attributes
2266 ESC [u                  (A)     Restore Cursor and Attributes
2267 ESC c                           Reset to Initial State
2268 ESC g                           Visual Bell
2269 ESC Pn p                        Cursor Visibility (97801)
2270     Pn = 6                      Invisible
2271          7                      Visible
2272 ESC =                   (V)     Application Keypad Mode
2273 ESC >                   (V)     Numeric Keypad Mode
2274 ESC # 8                 (V)     Fill Screen with E's
2275 ESC \                   (A)     String Terminator
2276 ESC ^                   (A)     Privacy Message String (Message Line)
2277 ESC !                           Global Message String (Message Line)
2278 ESC k                           Title Definition String
2279 ESC P                   (A)     Device Control String
2280                                 Outputs a string directly to the host
2281                                 terminal without interpretation.
2282 ESC _                   (A)     Application Program Command (Hardstatus)
2283 ESC ] 0 ; string ^G     (A)     Operating System Command (Hardstatus, xterm
2284                                 title hack)
2285 ESC ] 83 ; cmd ^G       (A)     Execute screen command. This only works if
2286                                 multi-user support is compiled into screen.
2287                                 The pseudo-user ":window:" is used to check
2288                                 the access control list. Use "addacl :window:
2289                                 -rwx #?" to create a user with no rights and
2290                                 allow only the needed commands.
2291 Control-N               (A)     Lock Shift G1 (SO)
2292 Control-O               (A)     Lock Shift G0 (SI)
2293 ESC n                   (A)     Lock Shift G2
2294 ESC o                   (A)     Lock Shift G3
2295 ESC N                   (A)     Single Shift G2
2296 ESC O                   (A)     Single Shift G3
2297 ESC ( Pcs               (A)     Designate character set as G0
2298 ESC ) Pcs               (A)     Designate character set as G1
2299 ESC * Pcs               (A)     Designate character set as G2
2300 ESC + Pcs               (A)     Designate character set as G3
2301 ESC [ Pn ; Pn H                 Direct Cursor Addressing
2302 ESC [ Pn ; Pn f                 same as above
2303 ESC [ Pn J                      Erase in Display
2304       Pn = None or 0            From Cursor to End of Screen
2305            1                    From Beginning of Screen to Cursor
2306            2                    Entire Screen
2307 ESC [ Pn K                      Erase in Line
2308       Pn = None or 0            From Cursor to End of Line
2309            1                    From Beginning of Line to Cursor
2310            2                    Entire Line
2311 ESC [ Pn X                      Erase character
2312 ESC [ Pn A                      Cursor Up
2313 ESC [ Pn B                      Cursor Down
2314 ESC [ Pn C                      Cursor Right
2315 ESC [ Pn D                      Cursor Left
2316 ESC [ Pn E                      Cursor next line
2317 ESC [ Pn F                      Cursor previous line
2318 ESC [ Pn G                      Cursor horizontal position
2319 ESC [ Pn `                      same as above
2320 ESC [ Pn d                      Cursor vertical position
2321 ESC [ Ps ;...; Ps m             Select Graphic Rendition
2322       Ps = None or 0            Default Rendition
2323            1                    Bold
2324            2            (A)     Faint
2325            3            (A)     @i{Standout} Mode (ANSI: Italicized)
2326            4                    Underlined
2327            5                    Blinking
2328            7                    Negative Image
2329            22           (A)     Normal Intensity
2330            23           (A)     @i{Standout} Mode off (ANSI: Italicized off)
2331            24           (A)     Not Underlined
2332            25           (A)     Not Blinking
2333            27           (A)     Positive Image
2334            30           (A)     Foreground Black
2335            31           (A)     Foreground Red
2336            32           (A)     Foreground Green
2337            33           (A)     Foreground Yellow
2338            34           (A)     Foreground Blue
2339            35           (A)     Foreground Magenta
2340            36           (A)     Foreground Cyan
2341            37           (A)     Foreground White
2342            39           (A)     Foreground Default
2343            40           (A)     Background Black
2344            ...                  ...
2345            49           (A)     Background Default
2346 ESC [ Pn g                      Tab Clear
2347       Pn = None or 0            Clear Tab at Current Position
2348            3                    Clear All Tabs
2349 ESC [ Pn ; Pn r         (V)     Set Scrolling Region
2350 ESC [ Pn I              (A)     Horizontal Tab
2351 ESC [ Pn Z              (A)     Backward Tab
2352 ESC [ Pn L              (A)     Insert Line
2353 ESC [ Pn M              (A)     Delete Line
2354 ESC [ Pn @@              (A)     Insert Character
2355 ESC [ Pn P              (A)     Delete Character
2356 ESC [ Pn S                      Scroll Scrolling Region Up
2357 ESC [ Pn T                      Scroll Scrolling Region Down
2358 ESC [ Pn ^                      same as above
2359 ESC [ Ps ;...; Ps h             Set Mode
2360 ESC [ Ps ;...; Ps l             Reset Mode
2361       Ps = 4            (A)     Insert Mode
2362            20           (A)     @samp{Automatic Linefeed} Mode.
2363            34                   Normal Cursor Visibility
2364            ?1           (V)     Application Cursor Keys
2365            ?3           (V)     Change Terminal Width to 132 columns
2366            ?5           (V)     Reverse Video
2367            ?6           (V)     @samp{Origin} Mode
2368            ?7           (V)     @samp{Wrap} Mode
2369            ?9                   X10 mouse tracking
2370            ?25          (V)     Visible Cursor
2371            ?47                  Alternate Screen (old xterm code)
2372            ?1000        (V)     VT200 mouse tracking
2373            ?1047                Alternate Screen (new xterm code)
2374            ?1049                Alternate Screen (new xterm code)
2375 ESC [ 5 i               (A)     Start relay to printer (ANSI Media Copy)
2376 ESC [ 4 i               (A)     Stop relay to printer (ANSI Media Copy)
2377 ESC [ 8 ; Ph ; Pw t             Resize the window to @samp{Ph} lines and
2378                                 @samp{Pw} columns (SunView special)
2379 ESC [ c                         Send VT100 Identification String
2380 ESC [ x                 (V)     Send Terminal Parameter Report
2381 ESC [ > c                       Send Secondary Device Attributes String
2382 ESC [ 6 n                       Send Cursor Position Report
2384 @end example
2387 @node Input Translation, Digraph, Control Sequences, Virtual Terminal
2388 @section Input Translation
2389 @cindex input translation
2390 In order to do a full VT100 emulation @code{screen} has to detect
2391 that a sequence of characters in the input stream was generated
2392 by a keypress on the user's keyboard and insert the VT100
2393 style escape sequence. @code{Screen} has a very flexible way of doing
2394 this by making it possible to map arbitrary commands on arbitrary
2395 sequences of characters. For standard VT100 emulation the command
2396 will always insert a string in the input buffer of the window
2397 (see also command @code{stuff}, @pxref{Paste}).
2398 Because the sequences generated by a keypress can
2399 change after a reattach from a different terminal type, it is
2400 possible to bind commands to the termcap name of the keys.
2401 @code{Screen} will insert the correct binding after each
2402 reattach. See @ref{Bindkey} for further details on the syntax and examples.
2404 Here is the table of the default key bindings. (A) means that the
2405 command is executed if the keyboard is switched into application
2406 mode.
2407 @example
2409 Key name        Termcap name    Command
2410 -----------------------------------------------------
2411 Cursor up            ku         stuff \033[A
2412                                 stuff \033OA      (A)
2413 Cursor down          kd         stuff \033[B
2414                                 stuff \033OB      (A)
2415 Cursor right         kr         stuff \033[C
2416                                 stuff \033OC      (A)
2417 Cursor left          kl         stuff \033[D
2418                                 stuff \033OD      (A)
2419 Function key 0       k0         stuff \033[10~
2420 Function key 1       k1         stuff \033OP
2421 Function key 2       k2         stuff \033OQ
2422 Function key 3       k3         stuff \033OR
2423 Function key 4       k4         stuff \033OS
2424 Function key 5       k5         stuff \033[15~
2425 Function key 6       k6         stuff \033[17~
2426 Function key 7       k7         stuff \033[18~
2427 Function key 8       k8         stuff \033[19~
2428 Function key 9       k9         stuff \033[20~
2429 Function key 10      k;         stuff \033[21~
2430 Function key 11      F1         stuff \033[23~
2431 Function key 12      F2         stuff \033[24~
2432 Home                 kh         stuff \033[1~
2433 End                  kH         stuff \033[4~
2434 Insert               kI         stuff \033[2~
2435 Delete               kD         stuff \033[3~
2436 Page up              kP         stuff \033[5~
2437 Page down            kN         stuff \033[6~
2438 Keypad 0             f0         stuff 0
2439                                 stuff \033Op      (A)
2440 Keypad 1             f1         stuff 1
2441                                 stuff \033Oq      (A)
2442 Keypad 2             f2         stuff 2
2443                                 stuff \033Or      (A)
2444 Keypad 3             f3         stuff 3
2445                                 stuff \033Os      (A)
2446 Keypad 4             f4         stuff 4
2447                                 stuff \033Ot      (A)
2448 Keypad 5             f5         stuff 5
2449                                 stuff \033Ou      (A)
2450 Keypad 6             f6         stuff 6
2451                                 stuff \033Ov      (A)
2452 Keypad 7             f7         stuff 7
2453                                 stuff \033Ow      (A)
2454 Keypad 8             f8         stuff 8
2455                                 stuff \033Ox      (A)
2456 Keypad 9             f9         stuff 9
2457                                 stuff \033Oy      (A)
2458 Keypad +             f+         stuff +
2459                                 stuff \033Ok      (A)
2460 Keypad -             f-         stuff -
2461                                 stuff \033Om      (A)
2462 Keypad *             f*         stuff *
2463                                 stuff \033Oj      (A)
2464 Keypad /             f/         stuff /
2465                                 stuff \033Oo      (A)
2466 Keypad =             fq         stuff =
2467                                 stuff \033OX      (A)
2468 Keypad .             f.         stuff .
2469                                 stuff \033On      (A)
2470 Keypad ,             f,         stuff ,
2471                                 stuff \033Ol      (A)
2472 Keypad enter         fe         stuff \015
2473                                 stuff \033OM      (A)
2474 @end example
2476 @node Digraph, Bell, Input Translation, Virtual Terminal
2477 @section Digraph
2479 @kindex C-v
2480 @deffn Command digraph [preset]
2481 (none)@*
2482 This command prompts the user for a digraph sequence. The next
2483 two characters typed are looked up in a builtin table and the
2484 resulting character is inserted in the input stream. For example,
2485 if the user enters @samp{a"}, an a-umlaut will be inserted. If the
2486 first character entered is a 0 (zero), @code{screen}
2487 will treat the following characters (up to three) as an octal
2488 number instead.  The optional argument @var{preset}
2489 is treated as user input, thus one can create an "umlaut" key.
2490 For example the command @samp{bindkey ^K digraph '"'} enables the user
2491 to generate an a-umlaut by typing @samp{CTRL-K a}.
2492 @end deffn
2494 @node Bell, Clear, Digraph, Virtual Terminal
2495 @section Bell
2497 @deffn Command bell_msg [message]
2498 (none)@*
2499 When a bell character is sent to a background window, @code{screen}
2500 displays a notification in the message line.  The notification message
2501 can be re-defined by this command.  Each occurrence
2502 of @samp{%} in @var{message} is replaced by the number of the window to
2503 which a bell has been sent, and each occurrence of @samp{^G} is replaced
2504 by the definition for bell in your termcap (usually an audible bell).
2505 The default message is
2507 @example
2508 'Bell in window %n'
2509 @end example
2511 An empty message can be supplied to the @code{bell_msg} command to suppress
2512 output of a message line (@code{bell_msg ""}).
2513 Without parameter, the current message is shown.
2514 @end deffn
2516 @kindex C-g
2517 @deffn Command vbell [state]
2518 (@kbd{C-a C-g})@*
2519 Sets or toggles the visual bell setting for the current window. If 
2520 @code{vbell} is switched to @samp{on}, but your
2521 terminal does not support a visual bell, the visual bell message is
2522 displayed in the status line when the bell character is received. 
2523 Visual bell support of a terminal is 
2524 defined by the termcap variable @code{vb}. @xref{Bell, , Visual Bell, 
2525 termcap, The Termcap Manual}, for more information on visual bells. 
2526 The equivalent terminfo capability is @code{flash}.
2528 Per  default, @code{vbell} is @samp{off}, thus the audible bell is used.
2529 @end deffn
2531 @deffn Command vbell_msg [message]
2532 (none)@*
2533 Sets the visual bell message. @var{Message} is printed to the status
2534 line if the window receives a bell character (^G), @code{vbell} is
2535 set to @samp{on} and the terminal does not support a visual bell.
2536 The default message is @samp{Wuff, Wuff!!}.
2537 Without parameter, the current message is shown.
2538 @end deffn
2540 @deffn Command vbellwait sec
2541 (none)@*
2542 Define a delay in seconds after each display of @code{screen} 's visual
2543 bell message. The default is 1 second.
2544 @end deffn
2546 @node Clear, Info, Bell, Virtual Terminal
2547 @section Clear
2548 @kindex C
2549 @deffn Command clear
2550 (@kbd{C-a C})@*
2551 Clears the screen and saves its contents to the scrollback buffer.
2552 @end deffn
2554 @node Info, Redisplay, Clear, Virtual Terminal
2555 @section Info
2556 @kindex i
2557 @kindex C-i
2558 @deffn Command info
2559 (@kbd{C-a i}, @kbd{C-a C-i})@*
2560 Uses the message line to display some information about the current
2561 window: the cursor position in the form @samp{(@var{column},@var{row})}
2562 starting with @samp{(1,1)}, the terminal width and height plus the size
2563 of the scrollback buffer in lines, like in @samp{(80,24)+50}, 
2564 the current state of window XON/XOFF flow control is shown like this
2565 (@pxref{Flow Control}):
2566 @example
2567   +flow     automatic flow control, currently on.
2568   -flow     automatic flow control, currently off.
2569   +(+)flow  flow control enabled. Agrees with automatic control.
2570   -(+)flow  flow control disabled. Disagrees with automatic control.
2571   +(-)flow  flow control enabled. Disagrees with automatic control.
2572   -(-)flow  flow control disabled. Agrees with automatic control.
2573 @end example
2575 The current line wrap setting (@samp{+wrap} indicates enabled, @samp{-wrap}
2576 not) is also shown. The flags @samp{ins}, @samp{org}, @samp{app}, @samp{log},
2577 @samp{mon} and @samp{nored} are displayed when the window is in insert mode,
2578 origin mode, application-keypad mode, has output logging,
2579 activity monitoring or partial redraw enabled.
2581 The currently active 
2582 character set (@samp{G0}, @samp{G1}, @samp{G2}, or @samp{G3}), and in
2583 square brackets the terminal character sets that are currently
2584 designated as @samp{G0} through @samp{G3}.  
2585 If the window is in UTF-8 mode, the string @samp{UTF-8} is shown instead.
2586 Additional modes depending on the type of the window are displayed at
2587 the end of the status line (@pxref{Window Types}).
2589 If the state machine of the terminal emulator is in a non-default state,
2590 the info line is started with a string identifying the current state.
2592 For system information use @code{time}.
2593 @end deffn
2595 @deffn Command dinfo
2596 (none)@*
2597 Show what screen thinks about your terminal. Useful if you want to know
2598 why features like color or the alternate charset don't work.
2599 @end deffn
2601 @node Redisplay, Wrap, Info, Virtual Terminal
2602 @section Redisplay
2604 @deffn Command allpartial state
2605 (none)@*
2606 If set to on, only the current cursor line is refreshed on window change.
2607 This affects all windows and is useful for slow terminal lines. The 
2608 previous setting of full/partial refresh for each window is restored
2609 with @code{allpartial off}. This is a global flag that immediately takes effect
2610 on all windows overriding the @code{partial} settings. It does not change the 
2611 default redraw behavior of newly created windows. 
2612 @end deffn
2614 @deffn Command altscreen state
2615 (none)@*
2616 If set to on, "alternate screen" support is enabled in virtual terminals,
2617 just like in xterm.  Initial setting is @samp{off}.
2618 @end deffn
2620 @deffn Command partial state
2621 (none)@*
2622 Defines whether the display should be refreshed (as with
2623 @code{redisplay}) after switching to the current window. This command
2624 only affects the current window.  To immediately affect all windows use the
2625 @code{allpartial} command.  Default is @samp{off}, of course.  This default is 
2626 fixed, as there is currently no @code{defpartial} command. 
2627 @end deffn
2629 @kindex l
2630 @kindex C-l
2631 @deffn Command redisplay
2632 (@kbd{C-a l}, @kbd{C-a C-l})@*
2633 Redisplay the current window.  Needed to get a full redisplay in
2634 partial redraw mode.
2635 @end deffn
2637 @node Wrap, Reset, Redisplay, Virtual Terminal
2638 @section Wrap
2640 @kindex r
2641 @kindex C-r
2642 @deffn Command wrap state
2643 (@kbd{C-a r}, @kbd{C-a C-r}) @*
2644 Sets the line-wrap setting for the current window.  When line-wrap is
2645 on, the second consecutive printable character output at the last column
2646 of a line will wrap to the start of the following line.  As an added
2647 feature, backspace (^H) will also wrap through the left margin to the
2648 previous line.  Default is @samp{on}.
2649 @end deffn
2651 @deffn Command defwrap state
2652 (none) @*
2653 Same as the @code{wrap} command except that the default setting for new 
2654 windows is changed. Initially line-wrap is on and can be toggled with the 
2655 @code{wrap} command (@kbd{C-a r}) or by means of "C-a : wrap on|off".
2656 @end deffn
2658 @node Reset, Window Size, Wrap, Virtual Terminal
2659 @section Reset
2660 @kindex Z
2661 @deffn Command reset
2662 (@kbd{C-a Z})@*
2663 Reset the virtual terminal to its ``power-on'' values. Useful when strange
2664 settings (like scroll regions or graphics character set) are left over from
2665 an application.
2666 @end deffn
2668 @node Window Size, Character Processing, Reset, Virtual Terminal
2669 @section Window Size
2670 @kindex W
2671 @deffn Command width [@code{-w}|@code{-d}] [cols [lines]]
2672 (@kbd{C-a W})@*
2673 Toggle the window width between 80 and 132 columns, or set it to
2674 @var{cols} columns if an argument is specified.  This requires a
2675 capable terminal and the termcap entries @samp{Z0} and @samp{Z1}.  See
2676 the @code{termcap} command (@pxref{Termcap}), for more information.
2677 You can also specify a height if you want to
2678 change  both  values.  The @code{-w} option tells screen to leave
2679 the display size unchanged and just set the  window  size,
2680 @code{-d} vice versa.
2681 @end deffn
2683 @deffn Command height [@code{-w}|@code{-d}] [lines [cols]]
2684 (none)@*
2685 Set the display height to a specified number of lines. When no
2686 argument is given it toggles between 24 and 42 lines display.
2687 @end deffn
2689 @node Character Processing, ,Window Size, Virtual Terminal
2690 @section Character Processing
2692 @deffn Command c1 [state]
2693 (none)@*
2694 Change c1 code processing. @samp{c1 on} tells screen to treat
2695 the input characters between 128 and 159 as control functions.
2696 Such an 8-bit code is normally the same as ESC followed by the 
2697 corresponding 7-bit code. The default setting is to process c1 
2698 codes and can be changed with the @samp{defc1} command.
2699 Users with fonts that have usable characters in the 
2700 c1 positions may want to turn this off.
2702 @end deffn
2703 @deffn Command gr [state]
2704 (none)@*
2705 Turn GR charset switching on/off. Whenever screen sees an input
2706 char with an 8th bit set, it will use the charset stored in the
2707 GR slot and print the character with the 8th bit stripped. The
2708 default (see also @samp{defgr}) is not to process GR switching because
2709 otherwise the ISO88591 charset would not work.
2710 @end deffn
2712 @deffn Command bce [state]
2713 (none)@*
2714 Change background-color-erase setting. If @samp{bce} is set to
2715 on, all characters cleared by an erase/insert/scroll/clear
2716 operation will be displayed in the current background color.
2717 Otherwise the default background color is used.
2718 @end deffn
2720 @deffn Command encoding enc [denc]
2721 (none)@*
2722 Tell screen how to interpret the input/output. The first argument
2723 sets the encoding of the current window.
2724 Each window can emulate a different encoding. The optional second
2725 parameter overwrites the encoding of the connected terminal.
2726 It should never be needed as screen uses the locale setting to detect
2727 the encoding.
2728 There is also a way to select a terminal encoding depending on
2729 the terminal type by using the @samp{KJ} termcap entry. @xref{Special Capabilities}.
2731 Supported encodings are
2732 @code{eucJP}, @code{SJIS}, @code{eucKR},
2733 @code{eucCN}, @code{Big5}, @code{GBK}, @code{KOI8-R}, @code{CP1251},
2734 @code{UTF-8}, @code{ISO8859-2}, @code{ISO8859-3},
2735 @code{ISO8859-4}, @code{ISO8859-5}, @code{ISO8859-6},
2736 @code{ISO8859-7}, @code{ISO8859-8}, @code{ISO8859-9},
2737 @code{ISO8859-10}, @code{ISO8859-15}, @code{jis}.
2739 See also @samp{defencoding}, which changes the default setting of a new
2740 window.
2741 @end deffn
2743 @deffn Command charset set
2744 (none)@*
2745 Change the current character set slot designation and charset
2746 mapping.  The first four character of @var{set}
2747 are treated as charset designators while the fifth and sixth
2748 character must be in range @samp{0} to @samp{3} and set the GL/GR
2749 charset mapping. On every position a @samp{.} may be used to indicate
2750 that the corresponding charset/mapping should not be changed
2751 (@var{set} is padded to six characters internally by appending
2752 @samp{.} chars). New windows have @samp{BBBB02} as default
2753 charset, unless a @samp{encoding} command is active.
2755 The current setting can be viewed with the @ref{Info} command.
2756 @end deffn
2758 @deffn Command utf8 [state [dstate]]
2759 (none)@*
2760 Change the encoding used in the current window. If utf8 is enabled, the
2761 strings sent to the window will be UTF-8 encoded and vice versa.
2762 Omitting the
2763 parameter toggles the setting. If a second parameter is given, the
2764 display's
2765 encoding is also changed (this should rather be done with screen's
2766 @samp{-U} option).
2767 See also @samp{defutf8}, which changes the default setting of a new
2768 window.
2769 @end deffn
2771 @deffn Command defc1 state
2772 (none)@*
2773 Same as the @samp{c1} command except that the default setting for
2774 new windows is changed. Initial setting is @samp{on}.
2775 @end deffn
2777 @deffn Command defgr state
2778 (none)@*
2779 Same as the @samp{gr} command except that the default setting for
2780 new windows is changed. Initial setting is @samp{off}.
2781 @end deffn
2783 @deffn Command defbce state
2784 (none)@*
2785 Same as the @samp{bce} command except that the default setting for
2786 new windows is changed. Initial setting is @samp{off}.
2787 @end deffn
2789 @deffn Command defencoding enc
2790 (none)@*
2791 Same as the @samp{encoding} command except that the default setting for
2792 new windows is changed. Initial setting is the encoding taken from the
2793 terminal.
2794 @end deffn
2796 @deffn Command defcharset [set]
2797 Like the @samp{charset} command except that the default setting for
2798 new windows is changed. Shows current default if called without
2799 argument.
2800 @end deffn
2802 @deffn Command defutf8 state
2803 (none)@*
2804 Same as the @samp{utf8} command except that the default setting for new
2805 windows is changed. Initial setting is @code{on} if screen was started
2806 with @samp{-U}, otherwise @code{off}.
2807 @end deffn
2809 @node Copy and Paste, Subprocess Execution, Virtual Terminal, Top
2810 @chapter Copy and Paste
2811 @cindex copy and paste
2813 For those confined to a hardware terminal, these commands provide a cut
2814 and paste facility more powerful than those provided by most windowing
2815 systems.
2817 @menu
2818 * Copy::                        Copy from scrollback to buffer
2819 * Paste::                       Paste from buffer into window
2820 * Registers::                   Longer-term storage
2821 * Screen Exchange::             Sharing data between screen users
2822 * History::                     Recalling previous input
2823 @end menu
2825 @node Copy, Paste,  , Copy and Paste
2826 @section Copying
2827 @cindex marking
2828 @cindex scrollback
2829 @kindex [
2830 @kindex C-[
2831 @kindex ESC
2832 @deffn Command copy
2833 (@kbd{C-a [}, @kbd{C-a C-[}, @kbd{C-a @key{ESC}})@*
2834 Enter copy/scrollback mode. This allows you to copy text from the
2835 current window and its history into the paste buffer. In this mode a
2836 @code{vi}-like full screen editor is active, with controls as
2837 outlined below.
2838 @end deffn
2840 @menu
2841 * Line Termination::            End copied lines with CR/LF
2842 * Scrollback::                  Set the size of the scrollback buffer
2843 * Copy Mode Keys::              Remap keys in copy mode
2844 * Movement::                    Move around in the scrollback buffer
2845 * Marking::                     Select the text you want
2846 * Repeat count::                Repeat a command
2847 * Searching::                   Find the text you want
2848 * Specials::                    Other random keys
2849 @end menu
2851 @node Line Termination, Scrollback,  , Copy
2852 @subsection CR/LF
2853 @deffn Command crlf [state]
2854 (none)@*
2855 This affects the copying of text regions with the @kbd{C-a [} command.
2856 If it is set to @samp{on}, lines will be separated by the two character
2857 sequence @samp{CR}/@samp{LF}.  Otherwise only @samp{LF} is used.
2858 @code{crlf} is off by default.
2859 When no parameter is given, the state is toggled.
2860 @end deffn
2862 @node Scrollback, Copy Mode Keys, Line Termination, Copy
2863 @subsection Scrollback
2864 @deffn Command defscrollback num
2865 (none)@*
2866 Same as the @code{scrollback} command except that the default setting
2867 for new windows is changed.  Defaults to 100.
2868 @end deffn
2870 @deffn Command scrollback num
2871 (none)@*
2872 Set the size of the scrollback buffer for the current window to
2873 @var{num} lines.  The default scrollback is 100 lines.  Use @kbd{C-a i}
2874 to view the current setting.
2875 @end deffn
2877 @deffn Command compacthist [state]
2878 (none)@*
2879 This tells screen whether to suppress trailing blank lines when
2880 scrolling up text into the history buffer. Turn compacting @samp{on}
2881 to hold more useful lines in your scrollback buffer.
2882 @end deffn
2884 @node Copy Mode Keys, Movement, Scrollback, Copy
2885 @subsection markkeys
2886 @deffn Command markkeys string
2887 (none)@*
2888 This is a method of changing the keymap used for copy/history mode.  The
2889 string is made up of @var{oldchar}=@var{newchar} pairs which are
2890 separated by @samp{:}. Example: The command @code{markkeys
2891 h=^B:l=^F:$=^E} would set some keys to be more familiar to @code{emacs}
2892 users.
2893 If your terminal sends characters, that cause you to abort copy mode,
2894 then this command may help by binding these characters to do nothing.
2895 The no-op character is `@@' and is used like this: @code{markkeys @@=L=H}
2896 if you do not want to use the `H' or `L' commands any longer. 
2897 As shown in this example, multiple keys can be assigned to one function
2898 in a single statement.
2899 @end deffn
2901 @node Movement, Marking, Copy Mode Keys, Copy
2902 @subsection Movement Keys
2904 @noindent
2905 @kbd{h}, @kbd{j}, @kbd{k}, @kbd{l} move the cursor line by line or
2906 column by column.
2908 @noindent
2909 @kbd{0}, @kbd{^} and @kbd{$} move to the leftmost column or to the first
2910 or last non-whitespace character on the line.
2912 @noindent
2913 @kbd{H}, @kbd{M} and @kbd{L} move the cursor to the leftmost column
2914 of the top, center or bottom line of the window. 
2916 @noindent
2917 @kbd{+} and @kbd{-} move the cursor to the leftmost column of the next
2918 or previous line.
2920 @noindent
2921 @kbd{G} moves to the specified absolute line (default: end of buffer).
2923 @noindent
2924 @kbd{|} moves to the specified absolute column.
2926 @noindent
2927 @kbd{w}, @kbd{b}, @kbd{e} move the cursor word by word.
2929 @noindent
2930 @kbd{B}, @kbd{E} move the cursor WORD by WORD (as in vi).
2932 @noindent
2933 @kbd{C-u} and @kbd{C-d} scroll the display up/down by the specified
2934 amount of lines while preserving the cursor position. (Default: half
2935 screenful).
2937 @noindent
2938 @kbd{C-b} and @kbd{C-f} move the cursor up/down a full screen.
2940 @noindent
2941 @kbd{g} moves to the beginning of the buffer.
2943 @noindent
2944 @kbd{%} jumps to the specified percentage of the buffer.
2946 Note that Emacs-style movement keys can be specified by a .screenrc
2947 command. (@code{markkeys "h=^B:l=^F:$=^E"}) There is no simple method for
2948 a full emacs-style keymap, however, as this involves multi-character codes.
2950 @node Marking, Repeat count, Movement, Copy
2951 @subsection Marking
2953 The copy range is specified by setting two marks. The text between these
2954 marks will be highlighted. Press @kbd{space} to set the first or second
2955 mark respectively.
2957 @noindent
2958 @kbd{Y} and @kbd{y} can be used to mark one whole line or to mark from 
2959 start of line.
2961 @noindent
2962 @kbd{W} marks exactly one word. 
2964 @node Repeat count, Searching, Marking, Copy
2965 @subsection Repeat Count
2967 Any command in copy mode can be prefixed with a number (by pressing
2968 digits @kbd{0@dots{}9}) which is taken as a repeat count. Example:
2969 @kbd{C-a C-[ H 10 j 5 Y} will copy lines 11 to 15 into the paste buffer.
2971 @node Searching, Specials, Repeat count, Copy
2972 @subsection Searching
2974 @noindent
2975 @kbd{/} @code{vi}-like search forward.
2977 @noindent
2978 @kbd{?} @code{vi}-like search backward.
2980 @noindent
2981 @kbd{C-a s} @code{emacs} style incremental search forward.
2983 @noindent
2984 @kbd{C-r} @code{emacs} style reverse i-search.
2986 @deffn Command ignorecase [state]
2987 (none)@*
2988 Tell screen to ignore the case of characters in searches. Default is
2989 @code{off}.
2990 @end deffn
2992 @node Specials,  , Searching, Copy
2993 @subsection Specials
2995 There are, however, some keys that act differently here from in
2996 @code{vi}.  @code{Vi} does not allow to yank rectangular blocks of text,
2997 but @code{screen} does. Press
2999 @noindent
3000 @kbd{c} or @kbd{C} to set the left or right margin respectively. If no
3001 repeat count is given, both default to the current cursor position.@*
3002 Example: Try this on a rather full text screen: 
3003 @kbd{C-a [ M 20 l SPACE c 10 l 5 j C SPACE}.
3005 @noindent
3006 This moves one to the middle line of the screen, moves in 20 columns left,
3007 marks the beginning of the paste buffer, sets the left column, moves 5 columns
3008 down, sets the right column, and then marks the end of
3009 the paste buffer. Now try:@*
3010 @kbd{C-a [ M 20 l SPACE 10 l 5 j SPACE}
3012 @noindent
3013 and notice the difference in the amount of text copied.
3015 @noindent
3016 @kbd{J} joins lines. It toggles between 4 modes: lines separated by a
3017 newline character (012), lines glued seamless, lines separated by a single
3018 space or comma separated lines. Note that you can prepend the newline
3019 character with a carriage return character, by issuing a @code{set crlf
3020 on}.
3022 @noindent
3023 @kbd{v} is for all the @code{vi} users who use @code{:set numbers} - it
3024 toggles the left margin between column 9 and 1.
3026 @noindent
3027 @kbd{a} before the final space key turns on append mode. Thus
3028 the contents of the paste buffer will not be overwritten, but appended to.
3030 @noindent
3031 @kbd{A} turns on append mode and sets a (second) mark.
3033 @noindent
3034 @kbd{>} sets the (second) mark and writes the contents of the paste buffer
3035 to the screen-exchange file (@file{/tmp/screen-exchange} per default)
3036 once copy-mode is finished.  @xref{Screen Exchange}.@*
3037 This example demonstrates how to dump the
3038 whole scrollback buffer to that file: @*@kbd{C-a [ g SPACE G $ >}.
3040 @noindent
3041 @kbd{C-g} gives information about the current line and column.
3043 @noindent
3044 @kbd{x} exchanges the first mark and the current cursor position. You
3045 can use this to adjust an already placed mark.
3047 @noindent
3048 @kbd{@@} does nothing.  Absolutely nothing.  Does not even exit copy
3049 mode.
3051 @noindent
3052 All keys not described here exit copy mode.
3054 @node Paste, Registers, Copy, Copy and Paste
3055 @section Paste
3057 @kindex ]
3058 @kindex C-]
3059 @deffn Command paste [registers [destination]]
3060 (@kbd{C-a ]}, @kbd{C-a C-]})@*
3061 Write the (concatenated) contents of the specified registers to the stdin 
3062 stream of the current window.  The register @samp{.} is treated as the
3063 paste buffer. If no parameter is specified the user is prompted to enter a 
3064 single register. The paste buffer can be filled with the 
3065 @code{copy}, @code{history} and @code{readbuf} commands.
3066 Other registers can be filled with the @code{register}, @code{readreg} and
3067 @code{paste} commands.
3068 If @code{paste} is called with a second argument, the contents of the specified
3069 registers is pasted into the named destination register rather than
3070 the window. If @samp{.} is used as the second argument, the display's paste 
3071 buffer is the destination.
3072 Note, that @code{paste} uses a wide variety of resources: Usually both, a 
3073 current window and a current display are required. But whenever a second
3074 argument is specified no current window is needed. When the source specification
3075 only contains registers (not the paste buffer) then there need not be a current
3076 display (terminal attached), as the registers are a global resource. The
3077 paste buffer exists once for every user.
3078 @end deffn
3080 @deffn Command stuff string
3081 (none)@*
3082 Stuff the string @var{string} in the input buffer of the current window.
3083 This is like the @code{paste} command, but with much less overhead.
3084 You cannot paste large buffers with the @code{stuff} command. It is most
3085 useful for key bindings. @xref{Bindkey}.
3086 @end deffn
3088 @deffn Command pastefont [state]
3089 Tell screen to include font information in the paste buffer. The
3090 default is not to do so. This command is especially useful for
3091 multi character fonts like kanji.
3092 @end deffn
3094 @deffn Command slowpaste msec
3095 @deffnx Command defslowpaste msec
3096 (none)@*
3097 Define the speed text is inserted in the current window by the @code{paste} 
3098 command. If the slowpaste value is nonzero text is written character by 
3099 character.
3100 @code{screen} will pause for @var{msec} milliseconds after each write
3101 to allow the application to process the input. only use @code{slowpaste} if 
3102 your underlying system exposes flow control problems while pasting large 
3103 amounts of text. 
3104 @code{defslowpaste} specifies the default for new windows.
3105 @end deffn
3107 @deffn Command readreg [-e encoding] [register [filename]]
3108 (none)@*
3109 Does one of two things, dependent on number of arguments: with zero or one
3110 arguments it it duplicates the paste buffer contents into the register specified
3111 or entered at the prompt. With two arguments it reads the contents of the named
3112 file into the register, just as @code{readbuf} reads the screen-exchange file
3113 into the paste buffer.
3114 You can tell screen the encoding of the file via the @code{-e} option.
3115 The following example will paste the system's password file into
3116 the screen window (using register p, where a copy remains):
3118 @example
3119 C-a : readreg p /etc/passwd
3120 C-a : paste p
3121 @end example
3122 @end deffn
3124 @node Registers, Screen Exchange, Paste, Copy and Paste
3125 @section Registers
3127 @deffn Command copy_reg [key]
3128 (none)@*
3129 Removed. Use @code{readreg} instead.
3130 @end deffn
3132 @deffn Command ins_reg [key]
3133 (none)@*
3134 Removed. Use @code{paste} instead.
3135 @end deffn
3137 @deffn Command process [key]
3138 (none)@*
3139 Stuff the contents of the specified register into the @code{screen}
3140 input queue. If no argument is given you are prompted for a
3141 register name. The text is parsed as if it had been typed in from the user's
3142 keyboard. This command can be used to bind multiple actions to a single key.
3143 @end deffn
3145 @deffn Command register [-e encoding] key string
3146 (none)@*
3147 Save the specified @var{string} to the register @var{key}.
3148 The encoding of the string can be specified via the @code{-e} option.
3149 @end deffn
3151 @node Screen Exchange, History, Registers, Copy and Paste
3152 @section Screen Exchange
3154 @deffn Command bufferfile [@var{exchange-file}]
3155 (none)@*
3156 Change the filename used for reading and writing with the paste buffer.
3157 If the @var{exchange-file} parameter is omitted, @code{screen} reverts
3158 to the default of @file{/tmp/screen-exchange}.  The following example
3159 will paste the system's password file into the screen window (using the 
3160 paste buffer, where a copy remains):
3162 @example
3163 C-a : bufferfile /etc/passwd
3164 C-a < C-a ]
3165 C-a : bufferfile
3166 @end example
3167 @end deffn
3169 @kindex <
3170 @deffn Command readbuf [-e @var{encoding}] [@var{filename}]
3171 (@kbd{C-a <})@*
3172 Reads the contents of the specified file into the paste buffer.
3173 You can tell screen the encoding of the file via the @code{-e} option.
3174 If no file is specified, the screen-exchange filename is used.
3175 @end deffn
3177 @kindex =
3178 @deffn Command removebuf
3179 (@kbd{C-a =})@*
3180 Unlinks the screen-exchange file.
3181 @end deffn
3183 @kindex >
3184 @deffn Command writebuf [-e @var{encoding}] [@var{filename}]
3185 (@kbd{C-a >})@*
3186 Writes the contents of the paste buffer to the specified file, or the
3187 public accessible screen-exchange file if no filename is given.
3188 This is thought of as a primitive means of
3189 communication between @code{screen} users on the same host.
3190 If an encoding is specified the paste buffer is recoded on the fly to
3191 match the encoding.
3192 See also
3193 @kbd{C-a @key{ESC}} (@pxref{Copy}).
3194 @end deffn
3196 @node History,  , Screen Exchange, Copy and Paste
3197 @section History
3199 @kindex @{
3200 @deffn Command history
3201 (@kbd{C-a @{})@*
3202 Usually users work with a shell that allows easy access to previous
3203 commands.  For example, @code{csh} has the command @code{!!} to repeat
3204 the last command executed.  @code{screen} provides a primitive way of
3205 recalling ``the command that started @dots{}'': You just type the first
3206 letter of that command, then hit @kbd{C-a @{} and @code{screen} tries to
3207 find a previous line that matches with the prompt character to the left
3208 of the cursor. This line is pasted into this window's input queue.  Thus
3209 you have a crude command history (made up by the visible window and its
3210 scrollback buffer).
3211 @end deffn
3213 @node Subprocess Execution, Key Binding, Copy and Paste, Top
3214 @chapter Subprocess Execution
3215 Control Input or Output of a window by another filter process.
3216 Use with care!
3218 @menu
3219 * Exec::                        The @code{exec} command syntax.
3220 * Using Exec::                  Weird things that filters can do.
3221 @end menu
3223 @node Exec, Using Exec,  , Subprocess Execution
3224 @section Exec
3225 @deffn Command exec [[@var{fdpat}] @var{newcommand} [@var{args} ... ]]
3226 (none)@*
3227 Run a unix subprocess (specified by an executable path @var{newcommand} and 
3228 its optional arguments) in the current window. The flow of data between
3229 newcommands stdin/stdout/stderr, the process originally started (let us call it 
3230 "application-process") and 
3231 screen itself (window) is controlled by the file descriptor pattern @var{fdpat}.
3232 This pattern is basically a three character sequence representing stdin, stdout
3233 and stderr of newcommand. A dot (@code{.}) connects the file descriptor
3234 to screen. An exclamation mark (@code{!}) causes the file descriptor to be
3235 connected to the application-process. A colon (@code{:}) combines both.
3237 User input will go to newcommand unless newcommand receives the 
3238 application-process'
3239 output (@var{fdpat}s first character is @samp{!} or @samp{:}) or a pipe symbol
3240 (@samp{|}) is added to the end of @var{fdpat}.
3242 Invoking @code{exec} without arguments shows name and arguments of the currently
3243 running subprocess in this window. Only one subprocess can be running per 
3244 window.
3246 When a subprocess is running the @code{kill} command will affect it instead of 
3247 the windows process. Only one subprocess a time can be running in each window.
3249 Refer to the postscript file @file{doc/fdpat.ps} for a confusing
3250 illustration of all 21 possible combinations. Each drawing shows the digits
3251 2, 1, 0 representing the three file descriptors of newcommand. The box
3252 marked `W' is usual pty that has the application-process on its slave side.
3253 The box marked `P' is the secondary pty that now has screen at its master
3254 side.
3255 @end deffn
3257 @node Using Exec,  , Exec, Subprocess Execution
3258 @section Using Exec
3259 @noindent 
3260 Abbreviations:
3262 @itemize @bullet
3263 @item
3264 Whitespace between the word @samp{exec} and @var{fdpat} and the command name
3265 can be omitted. 
3267 @item
3268 Trailing dots and a @var{fdpat} consisting only of dots can be omitted. 
3270 @item 
3271 A simple @samp{|} is synonymous for the @samp{!..|} pattern.
3273 @item
3274 The word @samp{exec} can be omitted when the @samp{|} abbreviation is used.
3276 @item
3277 The word @samp{exec} can always be replaced by leading @samp{!}.
3278 @end itemize
3280 @noindent 
3281 Examples:
3283 @table @code
3284 @item !/bin/sh
3285 @itemx exec /bin/sh
3286 @itemx exec ... /bin/sh
3287 All of the above are equivalent.
3288 Creates another shell in the same window, while the original shell is still 
3289 running. Output of both shells is displayed and user input is sent to the new
3290 @file{/bin/sh}.
3292 @item !!stty 19200
3293 @itemx exec!stty 19200
3294 @itemx exec !.. stty 19200
3295 All of the above are equivalent.
3296 Set the speed of the window's tty. If your stty command operates on stdout,
3297 then add another @samp{!}. This is a useful command, when a screen window
3298 is directly connected to a serial line that needs to be configured.
3300 @item |less
3301 @itemx exec !..| less
3302 Both are equivalent.
3303 This adds a pager to the window output. The special character @samp{|} is 
3304 needed to give the user control over the pager although it gets its input from 
3305 the window's process. This works, because @samp{less} listens on stderr 
3306 (a behavior that @code{screen} would not expect without the @samp{|}) 
3307 when its stdin is not a tty. @code{Less} versions newer than 177 fail miserably
3308 here; good old @code{pg} still works.
3310 @item !:sed -n s/.*Error.*/\007/p
3311 Sends window output to both, the user and the sed command. The sed inserts an
3312 additional bell character (oct. 007) to the window output seen by screen.
3313 This will cause 'Bell in window x' messages, whenever the string @samp{Error}
3314 appears in the window.
3315 @end table
3317 @node Key Binding, Flow Control, Subprocess Execution, Top
3318 @chapter Key Binding
3319 @cindex key binding
3320 @cindex binding
3322 You may disagree with some of the default bindings (I know I do).  The
3323 @code{bind} command allows you to redefine them to suit your
3324 preferences.
3326 @menu
3327 * Bind::                        @code{bind} syntax.
3328 * Bind Examples::               Using @code{bind}.
3329 * Command Character::           The character used to start keyboard commands.
3330 * Help::                        Show current key bindings.
3331 * Bindkey::                     @code{bindkey} syntax.
3332 * Bindkey Examples::            Some easy examples.
3333 * Bindkey Control::             How to control the bindkey mechanism.
3334 @end menu
3336 @node Bind, Bind Examples,  , Key Binding
3337 @section The @code{bind} command
3338 @deffn Command bind [-c class] key [command [args]]
3339 (none)@*
3340 Bind a command to a key.  The @var{key} argument is either a single
3341 character, a two-character sequence of the form @samp{^x} (meaning
3342 @kbd{C-x}), a backslash followed by an octal number (specifying the
3343 ASCII code of the character), or a backslash followed by a second
3344 character, such as @samp{\^} or @samp{\\}.  The argument can also be
3345 quoted, if you like.  If no further argument is given, any previously
3346 established binding for this key is removed.  The @var{command}
3347 argument can be any command (@pxref{Command Index}).
3349 If a command class is specified via the @code{-c} option, the
3350 key is bound for the specified class.  Use the @code{command}
3351 command to activate a class. Command classes can be used
3352 to create multiple command keys or multi-character bindings.
3354 By default, most suitable commands are bound to one or more keys
3355 (@pxref{Default Key Bindings}; for instance, the command to create a
3356 new window is bound to @kbd{C-c} and @kbd{c}.  The @code{bind} command
3357 can be used to redefine the key bindings and to define new bindings.
3358 @end deffn
3360 @node Bind Examples, Command Character, Bind, Key Binding
3361 @section Examples of the @code{bind} command
3362 @noindent
3363 Some examples:
3365 @example
3366 bind ' ' windows
3367 bind ^f screen telnet foobar
3368 bind \033 screen -ln -t root -h 1000 9 su
3369 @end example
3371 @noindent
3372 would bind the space key to the command that displays a list of windows
3373 (so that the command usually invoked by @kbd{C-a C-w} would also be
3374 available as @kbd{C-a space}), bind @kbd{C-f} to the command
3375 ``create a window with a TELNET connection to foobar'', and bind
3376 @key{ESC} to the command that creates an non-login window with title
3377 @samp{root} in slot #9, with a superuser shell and a scrollback buffer
3378 of 1000 lines.
3380 @example
3381 bind -c demo1 0 select 10
3382 bind -c demo1 1 select 11
3383 bind -c demo1 2 select 12
3384 bindkey "^B" command -c demo1
3385 @end example
3386 makes @kbd{C-b 0} select window 10, @kbd{C-b 1} window 11, etc.
3388 @example
3389 bind -c demo2 0 select 10
3390 bind -c demo2 1 select 11
3391 bind -c demo2 2 select 12
3392 bind - command -c demo2
3393 @end example
3394 makes @kbd{C-a - 0} select window 10, @kbd{C-a - 1} window 11, etc.
3396 @node Command Character, Help, Bind Examples, Key Binding
3397 @cindex escape character
3398 @cindex command character
3399 @section Command Character
3401 @deffn Command escape xy
3402 (none)@*
3403 Set the command character to @var{x} and the character generating a
3404 literal command character (by triggering the @code{meta} command)
3405 to @var{y} (similar to the @samp{-e} option). 
3406 Each argument is either a single character, a two-character
3407 sequence of the form @samp{^x} (meaning @kbd{C-x}), a backslash followed
3408 by an octal number (specifying the ASCII code of the character), or a
3409 backslash followed by a second character, such as @samp{\^} or
3410 @samp{\\}.  The default is @samp{^Aa}, but @samp{``} is recommended by
3411 one of the authors.
3412 @end deffn
3414 @deffn Command defescape xy
3415 (none)@*
3416 Set the default command characters. This is equivalent to the command 
3417 @code{escape} except that it is useful for multiuser sessions only. 
3418 In a multiuser session
3419 @code{escape} changes the command character of the calling user, where 
3420 @code{defescape} changes the default command characters for users that
3421 will be added later.
3422 @end deffn
3424 @kindex a
3425 @deffn Command meta
3426 (@kbd{C-a a})@*
3427 Send the command character (@kbd{C-a}) to the process in the current
3428 window.  The keystroke for this command is the second parameter to the
3429 @samp{-e} command line switch (@pxref{Invoking Screen}), or the
3430 @code{escape} .screenrc directive.
3431 @end deffn
3433 @deffn Command command [-c @var{class}]
3434 (none)@*
3435 This command has the same effect as typing the screen escape character
3436 (@kbd{C-a}). It is probably only useful for key bindings.
3437 If the @samp{-c} option is given, select the specified command class.
3438 @xref{Bind}, @xref{Bindkey}.
3439 @end deffn
3441 @node Help, Bindkey, Command Character, Key Binding
3442 @section Help
3443 @kindex ?
3444 @deffn Command help
3445 (@kbd{C-a ?})@*
3446 Displays a help screen showing you all the key bindings.  The first
3447 pages list all the internal commands followed by their bindings.
3448 Subsequent pages will display the custom commands, one command per key.
3449 Press space when you're done reading each page, or return to exit early.
3450 All other characters are ignored.
3451 If the @samp{-c} option is given, display all bound commands for the
3452 specified command class.
3453 @xref{Default Key Bindings}.
3454 @end deffn
3456 @node Bindkey, Bindkey Examples, Help, Key Binding
3457 @section Bindkey
3458 @deffn Command bindkey [@var{opts}] [@var{string} [@var{cmd} @var{args}]]
3459 (none)@*
3460 This command manages screen's input translation tables. Every
3461 entry in one of the tables tells screen how to react if a certain
3462 sequence of characters is encountered. There are three tables:
3463 one that should contain actions programmed by the user, one for
3464 the default actions used for terminal emulation and one for
3465 screen's copy mode to do cursor movement. See @ref{Input Translation}
3466 for a list of default key bindings.
3468 If the @samp{-d}
3469 option is given, bindkey modifies the default table, @samp{-m}
3470 changes the copy mode table and with neither option the user
3471 table is selected. The argument @samp{string} is the sequence of
3472 characters to which an action is bound. This can either be a fixed
3473 string or a termcap keyboard capability name (selectable with the
3474 @samp{-k} option).
3476 Some keys on a VT100 terminal can send a different
3477 string if application mode is turned on (e.g. the cursor keys).
3478 Such keys have two entries in the translation table. You can
3479 select the application mode entry by specifying the @samp{-a}
3480 option.
3482 The @samp{-t} option tells screen not to do inter-character
3483 timing. One cannot turn off the timing if a termcap capability is
3484 used.
3486 @samp{cmd} can be any of screen's commands with an arbitrary
3487 number of @samp{args}. If @samp{cmd} is omitted the key-binding is
3488 removed from the table. 
3489 @end deffn
3491 @node Bindkey Examples, Bindkey Control,Bindkey, Key Binding
3492 @section Bindkey Examples
3493 @noindent
3494 Here are some examples of keyboard bindings:
3496 @example
3497 bindkey -d
3498 @end example
3499 @noindent
3500 Show all of the default key bindings. The application mode entries
3501 are marked with [A].
3503 @example
3504 bindkey -k k1 select 1
3505 @end example
3506 @noindent
3507 Make the "F1" key switch to window one.
3509 @example
3510 bindkey -t foo stuff barfoo
3511 @end example
3512 @noindent
3513 Make @samp{foo} an abbreviation of the word @samp{barfoo}. Timeout is
3514 disabled so that users can type slowly.
3516 @example
3517 bindkey "\024" mapdefault
3518 @end example
3519 @noindent
3520 This key-binding makes @samp{C-t} an escape character for key-bindings. If
3521 you did the above @samp{stuff barfoo} binding, you can enter the word
3522 @samp{foo} by typing @samp{C-t foo}. If you want to insert a
3523 @samp{C-t} you have to press the key twice (i.e., escape the escape
3524 binding).
3526 @example
3527 bindkey -k F1 command
3528 @end example
3529 @noindent
3530 Make the F11 (not F1!) key an alternative screen
3531 escape (besides @samp{C-a}).
3533 @node Bindkey Control, , Bindkey Examples, Key Binding
3534 @section Bindkey Control
3535 @deffn Command mapdefault
3536 (none)@*
3537 Tell screen that the next input character should only be looked up
3538 in the default bindkey table.
3539 @end deffn
3540 @deffn Command mapnotnext
3541 (none)@*
3542 Like mapdefault, but don't even look in the default bindkey table.
3543 @end deffn
3544 @deffn Command maptimeout timo
3545 (none)@*
3546 Set the inter-character timer for input sequence detection to a timeout
3547 of @var{timo} ms. The default timeout is 300ms. Maptimeout with no
3548 arguments shows the current setting.
3549 @end deffn
3551 @node Flow Control, Termcap, Key Binding, Top
3552 @chapter Flow Control
3553 @cindex flow control
3555 @code{screen} can trap flow control characters or pass them to the
3556 program, as you see fit.  This is useful when your terminal wants to use
3557 XON/XOFF flow control and you are running a program which wants to use
3558 ^S/^Q for other purposes (i.e. @code{emacs}).
3560 @menu
3561 * Flow Control Summary::        The effect of @code{screen} flow control
3562 * Flow::                        Setting the flow control behavior
3563 * XON/XOFF::                    Sending XON or XOFF to the window
3564 @end menu
3566 @node Flow Control Summary, Flow,  , Flow Control
3567 @section About @code{screen} flow control settings
3568 Each window has a flow-control setting that determines how screen deals
3569 with the XON and XOFF characters (and perhaps the interrupt character).
3570 When flow-control is turned off, screen ignores the XON and XOFF
3571 characters, which allows the user to send them to the current program by
3572 simply typing them (useful for the @code{emacs} editor, for instance).
3573 The trade-off is that it will take longer for output from a
3574 ``normal'' program to pause in response to an XOFF.  With
3575 flow-control turned on, XON and XOFF characters are used to immediately
3576 pause the output of the current window.  You can still send these
3577 characters to the current program, but you must use the appropriate
3578 two-character screen commands (typically @kbd{C-a q} (xon) and @kbd{C-a
3579 s} (xoff)).  The xon/xoff commands are also useful for typing C-s and
3580 C-q past a terminal that intercepts these characters.
3582 Each window has an initial flow-control value set with either the
3583 @samp{-f} option or the @code{defflow} command.  By default the
3584 windows are set to automatic flow-switching.  It can then be toggled
3585 between the three states 'fixed on', 'fixed off' and 'automatic'
3586 interactively with the @code{flow} command bound to @kbd{C-a f}.
3588 The automatic flow-switching mode deals with flow control using the
3589 TIOCPKT mode (like @code{rlogin} does). If the tty driver does not
3590 support TIOCPKT, screen tries to determine the right mode based on the
3591 current setting of the application keypad --- when it is enabled,
3592 flow-control is turned off and visa versa.  Of course, you can still
3593 manipulate flow-control manually when needed.
3595 If you're running with flow-control enabled and find that pressing the
3596 interrupt key (usually C-c) does not interrupt the display until another
3597 6-8 lines have scrolled by, try running screen with the @samp{interrupt}
3598 option (add the @samp{interrupt} flag to the @code{flow} command in your
3599 .screenrc, or use the @samp{-i} command-line option).  This causes the
3600 output that @code{screen} has accumulated from the interrupted program
3601 to be flushed.  One disadvantage is that the virtual terminal's memory
3602 contains the non-flushed version of the output, which in rare cases can
3603 cause minor inaccuracies in the output.  For example, if you switch
3604 screens and return, or update the screen with @kbd{C-a l} you would see
3605 the version of the output you would have gotten without @samp{interrupt}
3606 being on.  Also, you might need to turn off flow-control (or use
3607 auto-flow mode to turn it off automatically) when running a program that
3608 expects you to type the interrupt character as input, as the
3609 @samp{interrupt} parameter only takes effect when flow-control is
3610 enabled.  If your program's output is interrupted by mistake, a simple
3611 refresh of the screen with @kbd{C-a l} will restore it.  Give each mode
3612 a try, and use whichever mode you find more comfortable.
3614 @node Flow, XON/XOFF, Flow Control Summary, Flow Control
3615 @section Flow
3616 @deffn Command defflow fstate [interrupt]
3617 (none)@*
3618 Same as the @code{flow} command except that the default setting for new
3619 windows is changed. Initial setting is `auto'.
3620 Specifying @code{flow auto interrupt} has the same effect as the
3621 command-line options @samp{-fa} and @samp{-i}.
3622 Note that if @samp{interrupt} is enabled, all existing displays are
3623 changed immediately to forward interrupt signals.
3624 @end deffn
3626 @kindex f
3627 @kindex C-f
3628 @deffn Command flow [fstate]
3629 (@kbd{C-a f}, @kbd{C-a C-f})@*
3630 Sets the flow-control mode for this window to @var{fstate}, which can be
3631 @samp{on}, @samp{off} or @samp{auto}.
3632 Without parameters it cycles the current window's
3633 flow-control setting.  Default is set by `defflow'.
3634 @end deffn
3636 @node XON/XOFF,  , Flow, Flow Control
3637 @section XON and XOFF
3638 @kindex q
3639 @kindex C-q
3640 @deffn Command xon
3641 (@kbd{C-a q}, @kbd{C-a C-q})@*
3642 Send a ^Q (ASCII XON) to the program in the current window.  Redundant
3643 if flow control is set to @samp{off} or @samp{auto}.
3644 @end deffn
3646 @kindex s
3647 @kindex C-s
3648 @deffn Command xoff
3649 (@kbd{C-a s}, @kbd{C-a C-s})@*
3650 Send a ^S (ASCII XOFF) to the program in the current window.
3651 @end deffn
3653 @node Termcap, Message Line, Flow Control, Top
3654 @chapter Termcap
3656 @code{screen} demands the most out of your terminal so that it can
3657 perform its VT100 emulation most efficiently.  These functions provide
3658 means for tweaking the termcap entries for both your physical terminal
3659 and the one simulated by @code{screen}.
3661 @menu
3662 * Window Termcap::              Choosing a termcap entry for the window.
3663 * Dump Termcap::                Write out a termcap entry for the window.
3664 * Termcap Syntax::              The @code{termcap} and @code{terminfo} commands.
3665 * Termcap Examples::            Uses for @code{termcap}.
3666 * Special Capabilities::        Non-standard capabilities used by @code{screen}.
3667 * Autonuke::                    Flush unseen output
3668 * Obuflimit::                   Allow pending output when reading more
3669 * Character Translation::       Emulating fonts and charsets.
3670 @end menu
3672 @node Window Termcap, Dump Termcap,  , Termcap
3673 @section Choosing the termcap entry for a window
3674 Usually @code{screen} tries to emulate as much of the VT100/ANSI
3675 standard as possible. But if your terminal lacks certain capabilities
3676 the emulation may not be complete. In these cases @code{screen} has to
3677 tell the applications that some of the features are missing. This is no
3678 problem on machines using termcap, because @code{screen} can use the
3679 @code{$TERMCAP} variable to customize the standard screen termcap.
3681 But if you do a rlogin on another machine or your machine supports only
3682 terminfo this method fails. Because of this @code{screen} offers a way
3683 to deal with these cases. Here is how it works:
3685 When @code{screen} tries to figure out a terminal name for itself, it
3686 first looks for an entry named @code{screen.@var{term}}, where
3687 @var{term} is the contents of your @code{$TERM} variable.  If no such entry
3688 exists, @code{screen} tries @samp{screen} (or @samp{screen-w}, if the
3689 terminal is wide (132 cols or more)).  If even this entry cannot be
3690 found, @samp{vt100} is used as a substitute.
3692 The idea is that if you have a terminal which doesn't support an
3693 important feature (e.g. delete char or clear to EOS) you can build a new
3694 termcap/terminfo entry for @code{screen} (named
3695 @samp{screen.@var{dumbterm}}) in which this capability has been
3696 disabled.  If this entry is installed on your machines you are able to
3697 do a rlogin and still keep the correct termcap/terminfo entry.  The
3698 terminal name is put in the @code{$TERM} variable of all new windows.
3699 @code{screen} also sets the @code{$TERMCAP} variable reflecting the
3700 capabilities of the virtual terminal emulated. 
3701 Furthermore, the variable @code{$WINDOW} is set to the window number of each
3702 window.
3704 The actual set of capabilities supported by the virtual terminal depends
3705 on the capabilities supported by the physical terminal.  If, for
3706 instance, the physical terminal does not support underscore mode,
3707 @code{screen} does not put the @samp{us} and @samp{ue} capabilities into
3708 the window's @code{$TERMCAP} variable, accordingly.  However, a minimum number
3709 of capabilities must be supported by a terminal in order to run
3710 @code{screen}; namely scrolling, clear screen, and direct cursor
3711 addressing (in addition, @code{screen} does not run on hardcopy
3712 terminals or on terminals that over-strike).
3714 Also, you can customize the @code{$TERMCAP} value used by @code{screen} by
3715 using the @code{termcap} command, or by defining the variable
3716 @code{$SCREENCAP} prior to startup.  When the latter defined, its value will be
3717 copied verbatim into each window's @code{$TERMCAP} variable.  This can either
3718 be the full terminal definition, or a filename where the terminal
3719 @samp{screen} (and/or @samp{screen-w}) is defined.
3721 Note that @code{screen} honors the @code{terminfo} command if the system
3722 uses the terminfo database rather than termcap.  On such machines the
3723 @code{$TERMCAP} variable has no effect and you must use the
3724 @code{dumptermcap} command (@pxref{Dump Termcap}) and the @code{tic}
3725 program to generate terminfo entries for @code{screen} windows.
3727 When the boolean @samp{G0} capability is present in the termcap entry
3728 for the terminal on which @code{screen} has been called, the terminal
3729 emulation of @code{screen} supports multiple character sets.  This
3730 allows an application to make use of, for instance, the VT100 graphics
3731 character set or national character sets.  The following control
3732 functions from ISO 2022 are supported: @samp{lock shift G0} (@samp{SI}),
3733 @samp{lock shift G1} (@samp{SO}), @samp{lock shift G2}, @samp{lock shift
3734 G3}, @samp{single shift G2}, and @samp{single shift G3}.  When a virtual
3735 terminal is created or reset, the ASCII character set is designated as
3736 @samp{G0} through @samp{G3}.  When the @samp{G0} capability is present,
3737 screen evaluates the capabilities @samp{S0}, @samp{E0}, and @samp{C0} if
3738 present. @samp{S0} is the sequence the terminal uses to enable and start
3739 the graphics character set rather than @samp{SI}.  @samp{E0} is the
3740 corresponding replacement for @samp{SO}. @samp{C0} gives a character by
3741 character translation string that is used during semi-graphics mode.
3742 This string is built like the @samp{acsc} terminfo capability.
3744 When the @samp{po} and @samp{pf} capabilities are present in the
3745 terminal's termcap entry, applications running in a @code{screen} window
3746 can send output to the printer port of the terminal.  This allows a user
3747 to have an application in one window sending output to a printer
3748 connected to the terminal, while all other windows are still active (the
3749 printer port is enabled and disabled again for each chunk of output).
3750 As a side-effect, programs running in different windows can send output
3751 to the printer simultaneously.  Data sent to the printer is not
3752 displayed in the window. The @code{info} command displays a line starting
3753 with @samp{PRIN} while the printer is active.
3755 Some capabilities are only put into the @code{$TERMCAP} variable of the virtual
3756 terminal if they can be efficiently implemented by the physical
3757 terminal.  For instance, @samp{dl} (delete line) is only put into the
3758 @code{$TERMCAP} variable if the terminal supports either delete line itself or
3759 scrolling regions. Note that this may provoke confusion, when the
3760 session is reattached on a different terminal, as the value of @code{$TERMCAP}
3761 cannot be modified by parent processes.  You can force @code{screen} to
3762 include all capabilities in @code{$TERMCAP} with the @samp{-a}
3763 command-line option (@pxref{Invoking Screen}).
3765 The "alternate screen" capability is not enabled by default.
3766 Set the @code{altscreen} @file{.screenrc} command to enable it.
3768 @node Dump Termcap, Termcap Syntax, Window Termcap, Termcap
3769 @section Write out the window's termcap entry
3770 @kindex .
3771 @deffn Command dumptermcap
3772 (@kbd{C-a .})@*
3773 Write the termcap entry for the virtual terminal optimized for the
3774 currently active window to the file @file{.termcap} in the user's
3775 @file{$HOME/.screen} directory (or wherever @code{screen} stores its
3776 sockets. @pxref{Files}).  This termcap entry is identical to
3777 the value of the environment variable @code{$TERMCAP} that is set up by
3778 @code{screen} for each window. For terminfo based systems you will need
3779 to run a converter like @code{captoinfo} and then compile the entry with
3780 @code{tic}.
3781 @end deffn
3783 @node Termcap Syntax, Termcap Examples, Dump Termcap, Termcap
3784 @section The @code{termcap} command
3785 @deffn Command termcap term terminal-tweaks [window-tweaks]
3786 @deffnx Command terminfo term terminal-tweaks [window-tweaks]
3787 @deffnx Command termcapinfo term terminal-tweaks [window-tweaks]
3788 (none)@*
3789 Use this command to modify your terminal's termcap entry without going
3790 through all the hassles involved in creating a custom termcap entry.
3791 Plus, you can optionally customize the termcap generated for the
3792 windows.  
3793 You have to place these commands in one of the screenrc startup files, as they
3794 are meaningless once the terminal emulator is booted.
3796 If your system uses the terminfo database rather than termcap,
3797 @code{screen} will understand the @code{terminfo} command, which has the
3798 same effects as the @code{termcap} command.   Two separate commands are
3799 provided, as there are subtle syntactic differences, e.g. when parameter
3800 interpolation (using @samp{%}) is required. Note that the termcap names of
3801 the capabilities should also be used with the @code{terminfo} command.
3803 In many cases, where the arguments are valid in both terminfo and termcap
3804 syntax, you can use the command @code{termcapinfo}, which is just a
3805 shorthand for a pair of @code{termcap} and @code{terminfo} commands with
3806 identical arguments.
3807 @end deffn
3809 The first argument specifies which terminal(s) should be affected by
3810 this definition.  You can specify multiple terminal names by separating
3811 them with @samp{|}s.  Use @samp{*} to match all terminals and @samp{vt*}
3812 to match all terminals that begin with @samp{vt}.
3814 Each @var{tweak} argument contains one or more termcap defines
3815 (separated by @samp{:}s) to be inserted at the start of the appropriate
3816 termcap entry, enhancing it or overriding existing values.  The first
3817 tweak modifies your terminal's termcap, and contains definitions that
3818 your terminal uses to perform certain functions.  Specify a null string
3819 to leave this unchanged (e.g. "").  The second (optional) tweak modifies
3820 all the window termcaps, and should contain definitions that screen
3821 understands (@pxref{Virtual Terminal}).
3823 @node Termcap Examples, Special Capabilities, Termcap Syntax, Termcap
3824 @section Termcap Examples
3825 Some examples:
3827 @example
3828 termcap xterm*  xn:hs@@
3829 @end example
3831 @noindent
3832 Informs @code{screen} that all terminals that begin with @samp{xterm}
3833 have firm auto-margins that allow the last position on the screen to be
3834 updated (xn), but they don't really have a status line (no 'hs' --
3835 append @samp{@@} to turn entries off).  Note that we assume @samp{xn} for
3836 all terminal names that start with @samp{vt}, but only if you don't
3837 specify a termcap command for that terminal.
3839 @example
3840 termcap vt*  xn
3841 termcap vt102|vt220  Z0=\E[?3h:Z1=\E[?3l
3842 @end example
3844 @noindent
3845 Specifies the firm-margined @samp{xn} capability for all terminals that
3846 begin with @samp{vt}, and the second line will also add the
3847 escape-sequences to switch into (Z0) and back out of (Z1)
3848 132-character-per-line mode if this is a VT102 or VT220.  (You must
3849 specify Z0 and Z1 in your termcap to use the width-changing commands.)
3851 @example
3852 termcap vt100  ""  l0=PF1:l1=PF2:l2=PF3:l3=PF4
3853 @end example
3855 @noindent
3856 This leaves your vt100 termcap alone and adds the function key labels to
3857 each window's termcap entry.
3859 @example
3860 termcap h19|z19  am@@:im=\E@@:ei=\EO  dc=\E[P
3861 @end example
3863 @noindent
3864 Takes a h19 or z19 termcap and turns off auto-margins (am@@) and enables
3865 the insert mode (im) and end-insert (ei) capabilities (the @samp{@@} in
3866 the @samp{im} string is after the @samp{=}, so it is part of the
3867 string).  Having the @samp{im} and @samp{ei} definitions put into your
3868 terminal's termcap will cause screen to automatically advertise the
3869 character-insert capability in each window's termcap.  Each window will
3870 also get the delete-character capability (dc) added to its termcap,
3871 which screen will translate into a line-update for the terminal (we're
3872 pretending it doesn't support character deletion).
3874 If you would like to fully specify each window's termcap entry, you
3875 should instead set the @code{$SCREENCAP} variable prior to running
3876 @code{screen}.  @xref{Virtual Terminal}, for the details of the
3877 @code{screen} terminal emulation.  @xref{Top, , Termcap, termcap, The
3878 Termcap Manual}, for more information on termcap definitions.
3880 @node Special Capabilities, Autonuke, Termcap Examples, Termcap
3881 @section Special Terminal Capabilities
3882 @cindex terminal capabilities
3883 @cindex capabilities 
3884 The following table describes all terminal capabilities that are
3885 recognized by @code{screen} and are not in the termcap manual
3886 (@pxref{Top, , Termcap, termcap, The Termcap Manual}).
3887 You can place these capabilities in your termcap entries (in
3888 @file{/etc/termcap}) or use them with the commands @code{termcap},
3889 @code{terminfo} and @code{termcapinfo} in your @code{screenrc} files. It is
3890 often not possible to place these capabilities in the terminfo database.
3891 @table @samp
3892 @item LP
3893 (bool)@*
3894 Terminal has VT100 style margins (`magic margins'). Note that
3895 this capability is obsolete --- @code{screen} now uses the standard 
3896 @samp{xn} instead.
3898 @item Z0
3899 (str)@*
3900 Change width to 132 columns.
3902 @item Z1
3903 (str)@*
3904 Change width to 80 columns.
3906 @item WS
3907 (str)@*
3908 Resize display. This capability has the desired width and height as
3909 arguments.  SunView(tm) example: @samp{\E[8;%d;%dt}.
3911 @item NF
3912 (bool)@*
3913 Terminal doesn't need flow control. Send ^S and ^Q direct to
3914 the application. Same as @code{flow off}. The opposite of this
3915 capability is @samp{nx}.
3917 @item G0
3918 (bool)@*
3919 Terminal can deal with ISO 2022 font selection sequences.
3921 @item S0
3922 (str)@*
3923 Switch charset @samp{G0} to the specified charset. Default
3924 is @samp{\E(%.}.
3926 @item E0
3927 (str)@*
3928 Switch charset @samp{G0} back to standard charset. Default
3929 is @samp{\E(B}.
3931 @item C0
3932 (str)@*
3933 Use the string as a conversion table for font 0. See
3934 the @samp{ac} capability for more details.
3936 @item CS
3937 (str)@*
3938 Switch cursor-keys to application mode.
3940 @item CE
3941 (str)@*
3942 Switch cursor-keys to cursor mode.
3944 @item AN
3945 (bool)@*
3946 Enable autonuke for displays of this terminal type.
3947 (@pxref{Autonuke}).
3949 @item OL
3950 (num)@*
3951 Set the output buffer limit. See the @samp{obuflimit} command
3952 (@pxref{Obuflimit}) for more details.
3954 @item KJ
3955 (str)@*
3956 Set the encoding of the terminal. See the @samp{encoding} command
3957 (@pxref{Character Processing}) for valid encodings.
3959 @item AF
3960 (str)@*
3961 Change character foreground color in an ANSI conform way. This
3962 capability will almost always be set to @samp{\E[3%dm}
3963 (@samp{\E[3%p1%dm} on terminfo machines).
3965 @item AB
3966 (str)@*
3967 Same as @samp{AF}, but change background color.
3969 @item AX
3970 (bool)@*
3971 Does understand ANSI set default fg/bg color (@samp{\E[39m / \E[49m}).
3973 @item XC
3974 (str)@*
3975 Describe a translation of characters to strings depending on the
3976 current font.  (@pxref{Character Translation}).
3978 @item XT
3979 (bool)@*
3980 Terminal understands special xterm sequences (OSC, mouse tracking).
3982 @item C8
3983 (bool)@*
3984 Terminal needs bold to display high-intensity colors (e.g. Eterm).
3986 @item TF
3987 (bool)@*
3988 Add missing capabilities to the termcap/info entry. (Set by default).
3989 @end table
3991 @node Autonuke, Obuflimit, Special Capabilities, Termcap
3992 @section Autonuke
3993 @deffn Command autonuke @var{state}
3994 (none)@*
3995 Sets whether a clear screen sequence should nuke all the output
3996 that has not been written to the terminal. @xref{Obuflimit}.
3997 This property is set per display, not per window.
3998 @end deffn
4000 @deffn Command defautonuke @var{state}
4001 (none)@*
4002 Same as the @code{autonuke} command except that the default setting for
4003 new displays is also changed. Initial setting is @code{off}. 
4004 Note that you can use the special @code{AN} terminal capability if you
4005 want to have a terminal type dependent setting.
4006 @end deffn
4008 @node Obuflimit, Character Translation, Autonuke, Termcap
4009 @section Obuflimit
4010 @deffn Command obuflimit [@var{limit}]
4011 (none)@*
4012 If the output buffer contains more bytes than the specified limit, no
4013 more data will be read from the windows. The default value is 256. If
4014 you have a fast display (like @code{xterm}), you can set it to some 
4015 higher value. If no argument is specified, the current setting is displayed.
4016 This property is set per display, not per window.
4017 @end deffn
4019 @deffn Command defobuflimit @var{limit}
4020 (none)@*
4021 Same as the @code{obuflimit} command except that the default setting for new
4022 displays is also changed. Initial setting is 256 bytes. Note that you can use
4023 the special @code{OL} terminal capability if you want to have a terminal
4024 type dependent limit.
4025 @end deffn
4027 @node Character Translation, , Obuflimit, Termcap
4028 @section Character Translation
4029 @code{Screen} has a powerful mechanism to translate characters to
4030 arbitrary strings depending on the current font and terminal type.
4031 Use this feature if you want to work with a common standard character
4032 set (say ISO8851-latin1) even on terminals that scatter the more
4033 unusual characters over several national language font pages.
4035 Syntax:
4037 @example
4038     XC=@var{<charset-mapping>}@{,,@var{<charset-mapping>}@}
4039     @var{<charset-mapping>} := @var{<designator>}@var{<template>}@{,@var{<mapping>}@}
4040     @var{<mapping>} := @var{<char-to-be-mapped>}@var{<template-arg>}
4041 @end example
4043 The things in braces may be repeated any number of times.
4045 A @var{<charset-mapping>} tells screen how to map characters
4046 in font @var{<designator>} (@samp{B}: Ascii, @samp{A}: UK,
4047 @samp{K}: german, etc.)
4048 to strings. Every @var{<mapping>} describes to what string a single
4049 character will be translated. A template mechanism is used, as 
4050 most of the time the codes have a lot in common (for example
4051 strings to switch to and from another charset). Each occurrence
4052 of @samp{%} in @var{<template>} gets substituted with the 
4053 @var{template-arg}
4054 specified together with the character. If your strings are not
4055 similar at all, then use @samp{%} as a template and place the full
4056 string in @var{<template-arg>}. A quoting mechanism was added to make
4057 it possible to use a real @samp{%}. The @samp{\} character quotes the
4058 special characters @samp{\}, @samp{%}, and @samp{,}.
4060 Here is an example:
4062 @example
4063     termcap hp700 'XC=B\E(K%\E(B,\304[,\326\\\\,\334]'
4064 @end example
4066 This tells @code{screen}, how to translate ISOlatin1 (charset @samp{B})
4067 upper case umlaut characters on a @code{hp700} terminal that has a
4068 German charset. @samp{\304} gets translated to
4069 @samp{\E(K[\E(B} and so on.
4070 Note that this line gets parsed *three* times before the internal
4071 lookup table is built, therefore a lot of quoting is needed to
4072 create a single @samp{\}.
4074 Another extension was added to allow more emulation: If a mapping
4075 translates the unquoted @samp{%} char, it will be sent to the terminal
4076 whenever screen switches to the corresponding @var{<designator>}.
4077 In this
4078 special case the template is assumed to be just @samp{%} because
4079 the charset switch sequence and the character mappings normally
4080 haven't much in common.
4082 This example shows one use of the extension:
4083 @example
4084     termcap xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334'
4085 @end example
4087 Here, a part of the German (@samp{K}) charset is emulated on an xterm.
4088 If screen has to change to the @samp{K} charset, @samp{\E(B} will be
4089 sent
4090 to the terminal, i.e. the ASCII charset is used instead. The
4091 template is just @samp{%}, so the mapping is straightforward:
4092 @samp{[} to @samp{\304}, @samp{\} to @samp{\326}, and @samp{]} to
4093 @samp{\334}.
4095 @node Message Line, Logging, Termcap, Top
4096 @chapter The Message Line
4097 @cindex message line
4099 @code{screen} displays informational messages and other diagnostics in a
4100 @dfn{message line} at the bottom of the screen.  If your terminal has a
4101 status line defined in its termcap, screen will use this for displaying
4102 its messages, otherwise the last line of the screen will be temporarily
4103 overwritten and output will be momentarily interrupted.  The message
4104 line is automatically removed after a few seconds delay, but it can also
4105 be removed early (on terminals without a status line) by beginning to
4106 type.
4108 @menu
4109 * Privacy Message::             Using the message line from your program.
4110 * Hardware Status Line::        Use the terminal's hardware status line.
4111 * Last Message::                Redisplay the last message.
4112 * Message Wait::                Control how long messages are displayed.
4113 @end menu
4115 @node Privacy Message, Hardware Status Line,  , Message Line
4116 @section Using the message line from your program
4117 The message line facility can be used by an application running in the
4118 current window by means of the ANSI @dfn{Privacy message} control
4119 sequence.  For instance, from within the shell, try something like:
4121 @example
4122 echo "@value{esc}^Hello world from window $WINDOW@value{esc}\"
4123 @end example
4125 where @samp{@value{esc}} is ASCII ESC and the @samp{^} that follows it
4126 is a literal caret or up-arrow.
4128 @node Hardware Status Line, Last Message, Privacy Message, Message Line
4129 @section Hardware Status Line
4130 @deffn Command hardstatus [state]
4131 @deffnx Command hardstatus [@code{always}]@code{lastline}|@code{message}|@code{ignore} [string]
4132 @deffnx Command hardstatus @code{string} [string]
4133 (none)@*
4134 This command configures the use and emulation of the terminal's
4135 hardstatus line. The first form toggles whether @code{screen}
4136 will use the hardware status line to display messages. If the
4137 flag is set to @samp{off}, these messages
4138 are overlaid in reverse video mode at the display line. The default
4139 setting is @samp{on}.
4141 The second form tells screen what to do if the terminal doesn't
4142 have a hardstatus line (i.e. the termcap/terminfo capabilities
4143 "hs", "ts", "fs" and "ds" are not set). If the type
4144 @code{lastline} is used, screen will reserve the last line of the
4145 display for the hardstatus. @code{message} uses
4146 @code{screen}'s message mechanism and
4147 @code{ignore} tells @code{screen} never to display the hardstatus.
4148 If you prepend the word @code{always} to the type (e.g., @code{alwayslastline}), @code{screen} will use
4149 the type even if the terminal supports a hardstatus line.
4151 The third form specifies the contents of the hardstatus line.
4152 @code{%h} is used as default string, i.e., the stored hardstatus of the
4153 current window (settable via @samp{ESC]0;^G} or @samp{ESC_\\}) is
4154 displayed.
4155 You can customize this to any string you like including
4156 string escapes (@pxref{String Escapes}).
4157 If you leave
4158 out the argument @var{string}, the current string is displayed.
4160 You can mix the second and third form by providing the string as
4161 additional argument.
4162 @end deffn
4164 @node Last Message, Message Wait, Hardware Status Line, Message Line
4165 @section Display Last Message
4166 @kindex m
4167 @kindex C-m
4168 @deffn Command lastmsg
4169 (@kbd{C-a m}, @kbd{C-a C-m})@*
4170 Repeat the last message displayed in the message line.  Useful if you're
4171 typing when a message appears, because (unless your terminal has a
4172 hardware status line) the message goes away when you press a key.
4173 @end deffn
4175 @node Message Wait,  , Last Message, Message Line
4176 @section Message Wait
4177 @deffn Command msgminwait sec
4178 (none)@*
4179 Defines the time @code{screen} delays a new message when another is
4180 currently displayed.  Defaults to 1 second.
4181 @end deffn
4183 @deffn Command msgwait sec
4184 (none)@*
4185 Defines the time a message is displayed, if @code{screen} is not
4186 disturbed by other activity.  Defaults to 5 seconds.
4187 @end deffn
4189 @node Logging, Startup, Message Line, Top
4190 @chapter Logging
4192 This section describes the commands for keeping a record of your session.
4194 @menu
4195 * Hardcopy::                    Dump the current screen to a file
4196 * Log::                         Log the output of a window to a file
4197 @end menu
4199 @node Hardcopy, Log,  , Logging
4200 @section hardcopy
4201 @kindex h
4202 @kindex C-h
4203 @deffn Command hardcopy [-h] [@var{file}]
4204 (@kbd{C-a h}, @kbd{C-a C-h})@*
4205 Writes out the currently displayed image to the file @var{file}, or,
4206 if no filename is specified, to @file{hardcopy.@var{n}}
4207 in the default directory, where @var{n} is the number of the
4208 current window.  This either appends or overwrites the file if it
4209 exists, as determined by the @code{hardcopy_append} command.
4210 If the option @code{-h} is specified, dump also the
4211 contents of the scrollback buffer.
4212 @end deffn
4214 @deffn Command hardcopy_append state
4215 (none)@*
4216 If set to @samp{on}, @code{screen} will append to the
4217 @file{hardcopy.@var{n}} files created by the command @code{hardcopy};
4218 otherwise, these files are overwritten each time.
4219 @end deffn
4221 @deffn Command hardcopydir directory
4222 (none)@*
4223 Defines a directory where hardcopy files will be placed.
4224 If unset, hardcopys are dumped in screen's current working
4225 directory.
4226 @end deffn
4228 @node Log,  , Hardcopy, Logging
4229 @section log
4231 @deffn Command deflog state
4232 (none)@*
4233 Same as the @code{log} command except that the default setting for new
4234 windows is changed.  Initial setting is `off'.
4235 @end deffn
4237 @kindex H
4238 @deffn Command log [state]
4239 (@kbd{C-a H})@*
4240 Begins/ends logging of the current window to the file
4241 @file{screenlog.@var{n}} in the window's default directory, where
4242 @var{n} is the number of the current window.
4243 This filename can be changed with the @samp{logfile} command.
4244 If no parameter is given,
4245 the logging state is toggled.  The session log is
4246 appended to the previous contents of the file if it already exists.  The
4247 current contents and the contents of the scrollback history are not
4248 included in the session log.  Default is @samp{off}.
4249 @end deffn
4251 @deffn Command logfile filename
4252 @deffnx Command logfile flush secs
4253 (none)@*
4254 Defines the name the log files will get. The default is @samp{screenlog.%n}.
4255 The second form changes the number of seconds @code{screen}
4256 will wait before flushing the logfile buffer to the file-system. The
4257 default value is 10 seconds.
4258 @end deffn
4260 @deffn Command logtstamp [state]
4261 @deffnx Command logtstamp @code{after} secs
4262 @deffnx Command logtstamp @code{string} string
4263 (none)@*
4264 This command controls logfile time-stamp mechanism of screen. If
4265 time-stamps are turned @samp{on}, screen adds a string containing
4266 the current time to the logfile after two minutes of inactivity.
4267 When output continues and more than another two minutes have passed,
4268 a second time-stamp is added to document the restart of the
4269 output. You can change this timeout with the second form
4270 of the command. The third form is used for customizing the time-stamp
4271 string (@samp{-- %n:%t -- time-stamp -- %M/%d/%y %c:%s --\n} by
4272 default).
4273 @end deffn
4275 @node Startup, Miscellaneous, Logging, Top
4276 @chapter Startup
4278 This section describes commands which are only useful in the
4279 @file{.screenrc} file, for use at startup.
4281 @menu
4282 * echo::                        Display a message.
4283 * sleep::                       Pause execution of the @file{.screenrc}.
4284 * Startup Message::             Control display of the copyright notice.
4285 @end menu
4287 @node echo, sleep,  , Startup
4288 @section echo
4289 @deffn Command echo [@samp{-n}] message
4290 (none)@*
4291 The echo command may be used to annoy @code{screen} users with a
4292 'message of the day'. Typically installed in a global screenrc. 
4293 The option @samp{-n} may be used to suppress the line feed.
4294 See also @code{sleep}.  
4295 Echo is also useful for online checking of environment variables.
4296 @end deffn
4298 @node sleep, Startup Message, echo, Startup
4299 @section sleep
4300 @deffn Command sleep num
4301 (none)@*
4302 This command will pause the execution of a .screenrc file for @var{num}
4303 seconds.  Keyboard activity will end the sleep.  It may be used to give
4304 users a chance to read the messages output by @code{echo}.
4305 @end deffn
4307 @node Startup Message,  , sleep, Startup
4308 @section Startup Message
4309 @deffn Command startup_message state
4310 (none)@*
4311 Select whether you want to see the copyright notice during startup.
4312 Default is @samp{on}, as you probably noticed.
4313 @end deffn
4315 @node Miscellaneous, String Escapes, Startup, Top
4316 @chapter Miscellaneous commands
4318 The commands described here do not fit well under any of the other
4319 categories.
4321 @menu
4322 * At::                          Execute a command at other displays or windows.
4323 * Break::                       Send a break signal to the window.
4324 * Debug::                       Suppress/allow debugging output.
4325 * License::                     Display the disclaimer page.
4326 * Nethack::                     Use @code{nethack}-like error messages.
4327 * Nonblock::                    Disable flow-control to a display.
4328 * Number::                      Change the current window's number.
4329 * Silence::                     Notify on inactivity.
4330 * Time::                        Display the time and load average.
4331 * Verbose::                     Display window creation commands.
4332 * Version::                     Display the version of @code{screen}.
4333 * Zombie::                      Keep dead windows.
4334 * Printcmd::                    Set command for VT100 printer port emulation.
4335 * Sorendition::                 Change the text highlighting method.
4336 * Attrcolor::                   Map attributes to colors.
4337 * Setsid::                      Change process group management.
4338 * Eval::                        Parse and execute arguments.
4339 * Maxwin::                      Set the maximum window number.
4340 * Backtick::                    Program a command for a backtick string escape.
4341 * Screen Saver::                Define a screen safer.
4342 * Zmodem::                      Define how screen treats zmodem requests.
4343 @end menu
4345 @node At, Break,  , Miscellaneous
4346 @section At
4347 @deffn Command at [identifier][#|*|%] command [args]
4348 (none)@*
4349 Execute a command at other displays or windows as if it had been entered there.
4350 @code{At} changes the context (the `current window' or `current display'
4351 setting) of the command. If the first parameter describes a non-unique context,
4352 the command will be executed multiple times. If the first parameter is of the 
4353 form @samp{@var{identifier}*} then identifier is matched against user names.
4354 The command is executed once for each display of the selected user(s).
4355 If the first parameter is of the form @samp{@var{identifier}%} identifier is
4356 matched against displays. Displays are named after the ttys they attach. The
4357 prefix @samp{/dev/} or @samp{/dev/tty} may be omitted from the identifier.
4358 If @var{identifier} has a @code{#} or nothing appended it is matched against
4359 window numbers and titles. Omitting an identifier in front of the @code{#},
4360 @code{*} or @code{%} character selects all users, displays or windows because
4361 a prefix-match is performed. Note that on the affected display(s) a short
4362 message will describe what happened. 
4363 Note that the @code{#} character works as a comment introducer when it is 
4364 preceded by whitespace. This can be escaped by prefixing @code{#} with a 
4365 @code{\}. 
4366 Permission is checked for the initiator of the @code{at} command, not for the
4367 owners of the affected display(s).
4368 Caveat: 
4369 When matching against windows, the command is executed at least 
4370 once per window. Commands that change the internal arrangement of windows
4371 (like @code{other}) may be called again. In shared windows the command will
4372 be repeated for each attached display. Beware, when issuing toggle commands
4373 like @code{login}!
4374 Some commands (e.g. @code{\*Qprocess}) require
4375 that a display is associated with the target windows.  These commands may not
4376 work correctly under @code{at} looping over windows.
4377 @end deffn
4379 @node Break, Debug, At, Miscellaneous
4380 @section Break
4381 @deffn Command break [duration]
4382 (none)@*
4383 Send a break signal for @var{duration}*0.25 seconds to this window.
4384 For non-Posix systems the time interval is rounded up to full seconds.
4385 Most useful if a character device is attached to the window rather than
4386 a shell process (@pxref{Window Types}). The maximum duration of
4387 a break signal is limited to 15 seconds.
4388 @end deffn
4390 @deffn Command pow_break
4391 (none)@*
4392 Reopen the window's terminal line and send a break condition.
4393 @end deffn
4395 @deffn Command breaktype [tcsendbreak|TIOCSBRK|TCSBRK]
4396 (none)@*
4397 Choose one of the available methods of generating a break signal for
4398 terminal devices. This command should affect the current window only.
4399 But it still behaves identical to @code{defbreaktype}. This will be changed in
4400 the future.
4401 Calling @code{breaktype} with no parameter displays the break setting for the
4402 current window.
4403 @end deffn
4405 @deffn Command defbreaktype [tcsendbreak|TIOCSBRK|TCSBRK]
4406 (none)@*
4407 Choose one of the available methods of generating a break signal for
4408 terminal devices opened afterwards. The preferred methods are 
4409 @code{tcsendbreak} and
4410 @code{TIOCSBRK}. The third, @code{TCSBRK}, blocks the complete @code{screen}
4411 session for the duration of the break, but it may be the only way to
4412 generate long breaks. @code{tcsendbreak} and @code{TIOCSBRK} may or may not
4413 produce long breaks with spikes (e.g. 4 per second). This is not only system
4414 dependent, this also differs between serial board drivers.
4415 Calling @code{defbreaktype} with no parameter displays the current setting.
4416 @end deffn
4418 @node Debug, License, Break, Miscellaneous
4419 @section Debug
4420 @deffn Command debug [on|off]
4421 (none)@*
4422 Turns runtime debugging on or off. If @code{screen} has been compiled with
4423 option @code{-DDEBUG} debugging is available and is turned on per default.
4424 Note that this command only affects debugging output from the main 
4425 @samp{SCREEN} process correctly. Debug output from attacher processes can only
4426 be turned off once and forever.
4427 @end deffn
4429 @node License, Nethack, Debug, Miscellaneous
4430 @section License
4431 @deffn Command license
4432 (none)@*
4433 Display the disclaimer page. This is done whenever @code{screen} is
4434 started without options, which should be often enough.
4435 @end deffn
4437 @node Nethack, Nonblock, License, Miscellaneous
4438 @section Nethack
4439 @deffn Command nethack state
4440 (none)@*
4441 Changes the kind of error messages used by @code{screen}.  When you are
4442 familiar with the game @code{nethack}, you may enjoy the nethack-style
4443 messages which will often blur the facts a little, but are much funnier
4444 to read. Anyway, standard messages often tend to be unclear as well.
4446 This option is only available if @code{screen} was compiled with the
4447 NETHACK flag defined (@pxref{Installation}). The default setting is then
4448 determined by the presence of the environment variable
4449 @code{$NETHACKOPTIONS}.
4450 @end deffn
4452 @node Nonblock, Number, Nethack, Miscellaneous
4453 @section Nonblock
4454 @deffn Command nonblock [@var{state}|@var{numsecs}]
4455 Tell screen how to deal with user interfaces (displays) that cease to
4456 accept output. This can happen if a user presses ^S or a TCP/modem
4457 connection gets cut but no hangup is received. If nonblock is
4458 @code{off} (this is the default) screen waits until the display 
4459 restarts to accept the output. If nonblock is @code{on}, screen
4460 waits until the timeout is reached (@code{on} is treated as 1s). If the
4461 display still doesn't receive characters, screen will consider
4462 it ``blocked'' and stop sending characters to it. If at
4463 some time it restarts to accept characters, screen will unblock 
4464 the display and redisplay the updated window contents.
4465 @end deffn
4467 @deffn Command defnonblock @var{state}|@var{numsecs}
4468 Same as the @code{nonblock} command except that the default setting for
4469 displays is changed. Initial setting is @code{off}.
4470 @end deffn
4472 @node Number, Silence, Nonblock, Miscellaneous
4473 @section Number
4474 @kindex N
4475 @deffn Command number [@var{n}]
4476 (@kbd{C-a N})@*
4477 Change the current window's number. If the given number @var{n} is already
4478 used by another window, both windows exchange their numbers. If no argument is
4479 specified, the current window number (and title) is shown.
4480 @end deffn
4482 @node Silence, Time, Number, Miscellaneous
4483 @section Silence
4484 @deffn Command silence [@var{state}|@var{sec}]
4485 (none)@*
4486 Toggles silence monitoring of windows. When silence is turned on and an 
4487 affected window is switched into the background, you will receive the
4488 silence notification message in the status line after a specified period
4489 of inactivity (silence). The default timeout can be changed with the
4490 @code{silencewait} command or by specifying a number of seconds instead of
4491 @code{on} or @code{off}. Silence is initially off for all windows.
4492 @end deffn
4494 @deffn Command defsilence state
4495 (none)@*
4496 Same as the @code{silence} command except that the default setting for
4497 new windows is changed.  Initial setting is `off'.
4498 @end deffn
4500 @deffn Command silencewait @var{seconds}
4501 (none)@*
4502 Define the time that all windows monitored for silence should wait
4503 before displaying a message. Default is 30 seconds.
4504 @end deffn
4506 @node Time, Verbose, Silence, Miscellaneous
4507 @section Time
4508 @kindex t
4509 @kindex C-t
4510 @deffn Command time [@var{string}]
4511 (@kbd{C-a t}, @kbd{C-a C-t})@*
4512 Uses the message line to display the time of day, the host name, and the
4513 load averages over 1, 5, and 15 minutes (if this is available on your
4514 system).  For window-specific information use @code{info} (@pxref{Info}).
4515 If a @var{string} is specified, it changes the format of the time report
4516 like it is described in the string escapes chapter (@pxref{String Escapes}). Screen uses a default of @samp{%c:%s %M %d %H%? %l%?}.
4517 @end deffn
4519 @node Verbose, Version, Time, Miscellaneous
4520 @section Verbose
4521 @deffn Command verbose [on|off]
4522 If verbose is switched on, the command name is echoed, whenever a window
4523 is created (or resurrected from zombie state). Default is off.
4524 Without parameter, the current setting is shown.
4525 @end deffn
4527 @node Version, Zombie, Verbose, Miscellaneous
4528 @section Version
4529 @kindex v
4530 @deffn Command version
4531 (@kbd{C-a v})@*
4532 Display the version and modification date in the message line.
4533 @end deffn
4535 @node Zombie, Printcmd, Version, Miscellaneous
4536 @section Zombie
4537 @deffn Command zombie [@var{keys} [onerror] ]
4538 @deffnx Command defzombie [@var{keys}]
4539 (none)@*
4540 Per default windows are removed from the window list as soon as the
4541 windows process (e.g. shell) exits. When a string of two keys is
4542 specified to the zombie command, `dead' windows will remain in the list.
4543 The @code{kill} command may be used to remove the window. Pressing the first key
4544 in the dead window has the same effect. Pressing the second key, however,
4545 screen will attempt to resurrect the window. The process that was initially 
4546 running in the window will be launched again. Calling @code{zombie} without
4547 parameters will clear the zombie setting, thus making windows disappear when
4548 the process terminates.
4550 As the zombie setting is affected globally for all windows, this command 
4551 should only be called @code{defzombie}. Until we need this as a per window 
4552 setting, the commands @code{zombie} and @code{defzombie} are synonymous.
4554 Optionally you can put the word @code{onerror} after the keys. This will
4555 cause screen to monitor exit status of the process running in the window.
4556 If it exits normally ('0'), the window disappears. Any other exit value
4557 causes the window to become a zombie.
4558 @end deffn
4560 @node Printcmd, Sorendition, Zombie, Miscellaneous
4561 @section Printcmd
4562 @deffn Command printcmd [@var{cmd}]
4563 (none)@*
4564 If @var{cmd} is not an empty string, screen will not use the terminal
4565 capabilities @code{po/pf} for printing if it detects an ansi print
4566 sequence @code{ESC [ 5 i}, but pipe the output into @var{cmd}.
4567 This should normally be a command like @samp{lpr} or
4568 @samp{cat > /tmp/scrprint}.
4569 @code{Printcmd} without an argument displays the current setting.
4570 The ansi sequence @code{ESC \} ends printing and closes the pipe.
4572 Warning: Be careful with this command! If other user have write
4573 access to your terminal, they will be able to fire off print commands.
4574 @end deffn
4576 @node Sorendition, Attrcolor, Printcmd, Miscellaneous
4577 @section Sorendition
4578 @deffn Command sorendition [@var{attr} [@var{color}]]
4579 (none)@*
4580 Change the way screen does highlighting for text marking and printing
4581 messages.
4582 See the chapter
4583 about string escapes (@pxref{String Escapes}) for the syntax of
4584 the modifiers. The default is currently @samp{=s dd} (standout,
4585 default colors).
4586 @end deffn
4588 @node Attrcolor, Setsid, Sorendition, Miscellaneous
4589 @section Attrcolor
4590 @deffn Command attrcolor @var{attrib} [@var{attribute/color-modifier}]
4591 (none)@*
4592 This command can be used to highlight attributes by changing the color of
4593 the text. If the attribute
4594 @var{attrib}
4595 is in use, the specified attribute/color modifier is also applied. If no
4596 modifier is given, the current one is deleted. See the chapter
4597 about string escapes (@pxref{String Escapes}) for the syntax of
4598 the modifier. Screen understands two pseudo-attributes, @code{i}
4599 stands for high-intensity foreground color and @code{I} for
4600 high-intensity background color.
4602 @noindent 
4603 Examples:
4604 @table @code
4605 @item attrcolor b "R"
4606 Change the color to bright red if bold text is to be printed.
4607 @item attrcolor u "-u b"
4608 Use blue text instead of underline.
4609 @item attrcolor b ".I"
4610 Use bright colors for bold text. Most terminal emulators do this
4611 already.
4612 @item attrcolor i "+b"
4613 Make bright colored text also bold.
4614 @end table
4615 @end deffn
4617 @node Setsid, Eval, Attrcolor, Miscellaneous
4618 @section Setsid
4619 @deffn Command setsid state
4620 (none)@*
4621 Normally screen uses different sessions and process groups for
4622 the windows. If setsid is turned @code{off}, this is not done
4623 anymore and all windows will be in the same process group as the
4624 screen backend process. This also breaks job-control, so be careful.
4625 The default is @code{on}, of course. This command is probably useful
4626 only in rare circumstances.
4627 @end deffn
4629 @node Eval, Maxwin, Setsid, Miscellaneous
4630 @section Eval
4631 @deffn Command eval @var{command1} [@var{command2} ...]
4632 (none)@*
4633 Parses and executes each argument as separate command.
4634 @end deffn
4636 @node Maxwin, Backtick, Eval, Miscellaneous
4637 @section Maxwin
4638 @deffn Command maxwin @var{n}
4639 (none)@*
4640 Set the maximum window number screen will create. Doesn't affect 
4641 already existing windows. The number may only be decreased.
4642 @end deffn
4644 @node Backtick, Screen Saver, Maxwin, Miscellaneous
4645 @section Backtick
4646 @deffn Command backtick @var{id} @var{lifespan} @var{autorefresh} @var{command} [@var{args}]
4647 @deffnx Command backtick @var{id}
4648 (none)@*
4649 Program the backtick command with the numerical id @var{id}.
4650 The output of such a command is used for substitution of the
4651 @code{%`} string escape (@pxref{String Escapes}).
4652 The specified @var{lifespan} is the number
4653 of seconds the output is considered valid. After this time, the
4654 command is run again if a corresponding string escape is encountered.
4655 The @var{autorefresh} parameter triggers an
4656 automatic refresh for caption and hardstatus strings after the
4657 specified number of seconds. Only the last line of output is used 
4658 for substitution.
4660 If both the @var{lifespan} and the @var{autorefresh} parameters
4661 are zero, the backtick program is expected to stay in the
4662 background and generate output once in a while.
4663 In this case, the command is executed right away and screen stores
4664 the last line of output. If a new line gets printed screen will
4665 automatically refresh the hardstatus or the captions.
4667 The second form of the command deletes the backtick command 
4668 with the numerical id @var{id}.
4669 @end deffn
4671 @node Screen Saver, Zmodem, Backtick, Miscellaneous
4672 @section Screen Saver
4673 @deffn Command idle [@var{timeout} [@var{cmd} @var{args}]]
4674 (none)@*
4675 Sets a command that is run after the specified number of
4676 seconds inactivity is reached. This command will normally
4677 be the @code{blanker} command to create a screen blanker, but
4678 it can be any screen command. If no command is specified,
4679 only the timeout is set. A timeout of zero (ot the special
4680 timeout @code{off}) disables the timer. If no arguments are
4681 given, the current settings are displayed.
4682 @end deffn
4684 @deffn Command blanker
4685 (none)@*
4686 Activate the screen blanker. First the screen is cleared.
4687 If no blanker program is defined, the cursor is turned
4688 off, otherwise, the program is started and it's output is
4689 written to the screen. The screen blanker is killed with
4690 the first keypress, the read key is discarded.
4692 This command is normally used together with the @code{idle}
4693 command.
4694 @end deffn
4696 @deffn Command blankerprg [@var{program args}]
4697 Defines a blanker program. Disables the blanker program if
4698 no arguments are given.
4699 @end deffn
4701 @node Zmodem, , Screen Saver, Miscellaneous
4702 @section Zmodem
4703 @deffn Command zmodem [off|auto|catch|pass]
4704 @deffnx Command zmodem sendcmd [string]
4705 @deffnx Command zmodem recvcmd [string]
4706 (none)@*
4707 Define zmodem support for screen. Screen understands two
4708 different modes when it detects a zmodem request: @code{pass}
4709 and @code{catch}. If the mode is set to @code{pass}, screen will
4710 relay all data to the attacher until the end of the
4711 transmission is reached. In @code{catch} mode screen acts as a
4712 zmodem endpoint and starts the corresponding rz/sz commands.
4713 If the mode is set to @code{auto}, screen will use @code{catch} if
4714 the window is a tty (e.g. a serial line), otherwise it
4715 will use @code{pass}.
4717 You can define the templates screen uses in @code{catch} mode
4718 via the second and the third form.
4720 Note also that this is an experimental feature.
4721 @end deffn
4723 @node String Escapes, Environment, Miscellaneous, Top
4724 @chapter String Escapes
4725 @cindex string escapes
4726 Screen provides an escape mechanism to insert information like the
4727 current time into messages or file names. The escape character
4728 is @code{%} with one exception: inside of a window's hardstatus
4729 @code{^%} (@code{^E}) is used instead.
4731 Here is the full list of supported escapes:
4733 @table @code
4734 @item %
4735 the escape character itself
4736 @item a
4737 either @code{am} or @code{pm}
4738 @item A
4739 either @code{AM} or @code{PM}
4740 @item c
4741 current time @code{HH:MM} in 24h format
4742 @item C
4743 current time @code{HH:MM} in 12h format
4744 @item d
4745 day number
4746 @item D
4747 weekday name
4748 @item f
4749 flags of the window
4750 @item F
4751 sets %? to true if the window has the focus
4752 @item h
4753 hardstatus of the window
4754 @item H
4755 hostname of the system
4756 @item l
4757 current load of the system
4758 @item m
4759 month number
4760 @item M
4761 month name
4762 @item n
4763 window number
4764 @item s
4765 seconds
4766 @item S
4767 session name
4768 @item t
4769 window title
4770 @item u
4771 all other users on this window
4772 @item w
4773 all window numbers and names. With @code{-} qualifier: up to the current
4774 window; with @code{+} qualifier: starting with the window after the current
4775 one.
4776 @item W
4777 all window numbers and names except the current one
4778 @item y
4779 last two digits of the year number
4780 @item Y
4781 full year number
4782 @item ?
4783 the part to the next @code{%?} is displayed only if a @code{%} escape
4784 inside the part expands to a non-empty string
4785 @item :
4786 else part of @code{%?}
4787 @item =
4788 pad the string to the display's width (like TeX's hfill). If a
4789 number is specified, pad to the percentage of the window's width.
4790 A @code{0} qualifier tells screen to treat the number as absolute position.
4791 You can specify to pad relative to the last absolute pad position
4792 by adding a @code{+} qualifier or to pad relative to the right margin
4793 by using @code{-}. The padding truncates the string if the specified
4794 position lies before the current position. Add the @code{L} qualifier
4795 to change this.
4796 @item <
4797 same as @code{%=} but just do truncation, do not fill with spaces
4798 @item >
4799 mark the current text position for the next truncation. When
4800 screen needs to do truncation, it tries to do it in a way that
4801 the marked position gets moved to the specified percentage of
4802 the output area. (The area starts from the last absolute pad
4803 position and ends with the position specified by the truncation
4804 operator.) The @code{L} qualifier tells screen to mark the truncated
4805 parts with @samp{...}.
4806 @item @{
4807 attribute/color modifier string terminated by the next @code{@}}
4808 @item `
4809 Substitute with the output of a `backtick' command. The length
4810 qualifier is misused to identify one of the commands. @xref{Backtick}.
4811 @end table
4812 The @code{c} and @code{C} escape may be qualified with a @code{0} to
4813 make screen use
4814 zero instead of space as fill character.
4815 The @code{n} and
4816 @code{=} escapes understand
4817 a length qualifier (e.g. @code{%3n}), @code{D} and @code{M} can be
4818 prefixed with @code{L} to generate long names, @code{w} and
4819 @code{W} also show the window flags if @code{L} is given.
4821 An attribute/color modifier is is used to change the attributes or the
4822 color settings. Its format
4823 is @samp{[attribute modifier] [color description]}. The attribute modifier
4824 must be prefixed by a change type indicator if it can be confused with
4825 a color description. The following change types are known: 
4826 @table @code
4827 @item +
4828 add the specified set to the current attributes
4829 @item -
4830 remove the set from the current attributes
4831 @item !
4832 invert the set in the current attributes
4833 @item =
4834 change the current attributes to the specified set
4835 @end table
4836 The attribute set can either be specified as a hexadecimal number or
4837 a combination of the following letters: 
4838 @table @code
4839 @item d
4841 @item u
4842 underline
4843 @item b
4844 bold
4845 @item r
4846 reverse
4847 @item s
4848 standout
4849 @item B
4850 blinking
4851 @end table
4852 Colors are coded either as a hexadecimal number or two letters specifying
4853 the desired background and foreground color (in that order). The following
4854 colors are known:
4855 @table @code
4856 @item k
4857 black
4858 @item r
4860 @item g
4861 green
4862 @item y
4863 yellow
4864 @item b
4865 blue
4866 @item m
4867 magenta
4868 @item c
4869 cyan
4870 @item w
4871 white
4872 @item d
4873 default color
4874 @item .
4875 leave color unchanged
4876 @end table
4877 The capitalized versions of the letter specify bright colors. You can also
4878 use the pseudo-color @samp{i} to set just the brightness and leave the color
4879 unchanged.
4881 A one digit/letter color description is treated as foreground or
4882 background color dependent on the current attributes: if reverse mode is
4883 set, the background color is changed instead of the foreground color.
4884 If you don't like this, prefix the color with a @samp{.}. If you want
4885 the same behavior for two-letter color descriptions, also prefix them
4886 with a @samp{.}.
4888 As a special case, @samp{%@{-@}} restores the attributes and colors that
4889 were set before the last change was made (i.e. pops one level of the
4890 color-change stack).
4892 @noindent
4893 Examples:
4894 @table @samp
4895 @item G
4896 set color to bright green
4897 @item +b r
4898 use bold red
4899 @item = yd
4900 clear all attributes, write in default color on yellow background.
4901 @item %-Lw%@{= BW@}%50>%n%f* %t%@{-@}%+Lw%<
4902 The available windows centered at the current win dow and truncated to
4903 the available width. The current window is displayed white on blue.
4904 This can be used with @samp{hardstatus alwayslastline}.
4905 @item %?%F%@{.R.@}%?%3n %t%? [%h]%?
4906 The window number and title and the window's hardstatus, if one is set.
4907 Also use a red background if this is the active focus.
4908 Useful for @samp{caption string}.
4909 @end table
4912 @node Environment, Files, String Escapes, Top
4913 @chapter Environment Variables
4914 @cindex environment
4916 @table @code
4917 @item COLUMNS
4918 Number of columns on the terminal (overrides termcap entry).
4920 @item HOME
4921 Directory in which to look for .screenrc.
4923 @item LINES
4924 Number of lines on the terminal (overrides termcap entry).
4926 @item LOCKPRG
4927 Screen lock program.
4929 @item NETHACKOPTIONS
4930 Turns on @code{nethack} option.
4932 @item PATH
4933 Used for locating programs to run.
4935 @item SCREENCAP
4936 For customizing a terminal's @code{TERMCAP} value.
4938 @item SCREENDIR
4939 Alternate socket directory.
4941 @item SCREENRC
4942 Alternate user screenrc file.
4944 @item SHELL
4945 Default shell program for opening windows (default @file{/bin/sh}).
4947 @item STY
4948 Alternate socket name. If @code{screen} is invoked, and the environment variable
4949 @code{STY} is set, then it creates only a window in the running @code{screen}
4950 session rather than starting a new session.
4952 @item SYSSCREENRC
4953 Alternate system screenrc file.
4955 @item TERM
4956 Terminal name.
4958 @item TERMCAP
4959 Terminal description.
4961 @item WINDOW
4962 Window number of a window (at creation time).
4963 @end table
4965 @node Files, Credits, Environment, Top
4966 @chapter Files Referenced
4967 @cindex files
4969 @table @file
4970 @item .../screen-4.?.??/etc/screenrc
4971 @itemx .../screen-4.?.??/etc/etcscreenrc
4972 Examples in the @code{screen} distribution package for private and
4973 global initialization files.
4975 @item @code{$SYSSCREENRC}
4976 @itemx /local/etc/screenrc
4977 @code{screen} initialization commands
4979 @item @code{$SCREENRC}
4980 @itemx @code{$HOME}/.iscreenrc
4981 @itemx @code{$HOME}/.screenrc
4982 Read in after /local/etc/screenrc
4984 @item @code{$SCREENDIR}/S-@var{login}
4986 @item /local/screens/S-@var{login}
4987 Socket directories (default)
4989 @item /usr/tmp/screens/S-@var{login}
4990 Alternate socket directories.
4992 @item @var{socket directory}/.termcap
4993 Written by the @code{dumptermcap} command
4995 @item /usr/tmp/screens/screen-exchange or
4996 @itemx /tmp/screen-exchange
4997 @code{screen} interprocess communication buffer
4999 @item hardcopy.[0-9]
5000 Screen images created by the hardcopy command
5002 @item screenlog.[0-9]
5003 Output log files created by the log command
5005 @item /usr/lib/terminfo/?/* or
5006 @itemx /etc/termcap
5007 Terminal capability databases
5009 @item /etc/utmp
5010 Login records
5012 @item @code{$LOCKPRG}
5013 Program for locking the terminal.
5014 @end table
5016 @node Credits, Bugs, Files, Top
5017 @chapter Credits
5019 @noindent
5020 Authors @*
5021 =======
5023 Originally created by Oliver Laumann, this latest version was
5024 produced by Wayne Davison, Juergen Weigert and Michael Schroeder.
5026 @noindent
5027 Contributors @*
5028 ============
5030 @example
5031      Ken Beal (kbeal@@amber.ssd.csd.harris.com),
5032      Rudolf Koenig (rfkoenig@@informatik.uni-erlangen.de),
5033      Toerless Eckert (eckert@@informatik.uni-erlangen.de),
5034      Wayne Davison (davison@@borland.com),
5035      Patrick Wolfe (pat@@kai.com, kailand!pat),
5036      Bart Schaefer (schaefer@@cse.ogi.edu),
5037      Nathan Glasser (nathan@@brokaw.lcs.mit.edu),
5038      Larry W. Virden (lvirden@@cas.org),
5039      Howard Chu (hyc@@hanauma.jpl.nasa.gov),
5040      Tim MacKenzie (tym@@dibbler.cs.monash.edu.au),
5041      Markku Jarvinen (mta@@@{cc,cs,ee@}.tut.fi),
5042      Marc Boucher (marc@@CAM.ORG),
5043      Doug Siebert (dsiebert@@isca.uiowa.edu),
5044      Ken Stillson (stillson@@tsfsrv.mitre.org),
5045      Ian Frechett (frechett@@spot.Colorado.EDU),
5046      Brian Koehmstedt (bpk@@gnu.ai.mit.edu),
5047      Don Smith (djs6015@@ultb.isc.rit.edu),
5048      Frank van der Linden (vdlinden@@fwi.uva.nl),
5049      Martin Schweikert (schweik@@cpp.ob.open.de),
5050      David Vrona (dave@@sashimi.lcu.com),
5051      E. Tye McQueen (tye%spillman.UUCP@@uunet.uu.net),
5052      Matthew Green (mrg@@eterna.com.au),
5053      Christopher Williams (cgw@@pobox.com),
5054      Matt Mosley (mattm@@access.digex.net),
5055      Gregory Neil Shapiro (gshapiro@@wpi.WPI.EDU),
5056      Jason Merrill (jason@@jarthur.Claremont.EDU),
5057      Johannes Zellner (johannes@@zellner.org),
5058      Pablo Averbuj (pablo@@averbuj.com).
5059 @end example
5061 @noindent
5062 Version @*
5063 =======
5065 This manual describes version @value{version} of the @code{screen}
5066 program. Its roots are a merge of a custom version 2.3PR7 by Wayne
5067 Davison and several enhancements to Oliver Laumann's version 2.0.
5068 Note that all versions numbered 2.x are copyright by Oliver Laumann.
5070 See also @xref{Availability}.
5072 @node Bugs, Installation, Credits, Top
5073 @chapter Bugs
5074 @cindex bugs
5076 Just like any other significant piece of software, @code{screen} has a
5077 few bugs and missing features.  Please send in a bug report if you have
5078 found a bug not mentioned here.
5080 @menu
5081 * Known Bugs::                  Problems we know about.
5082 * Reporting Bugs::              How to contact the maintainers.
5083 * Availability::                Where to find the latest screen version.
5084 @end menu
5086 @node Known Bugs, Reporting Bugs,  , Bugs
5087 @section Known Bugs
5089 @itemize @bullet
5090 @item
5091 @samp{dm} (delete mode) and @samp{xs} are not handled correctly (they
5092 are ignored).  @samp{xn} is treated as a magic-margin indicator.
5094 @item
5095 @code{screen} has no clue about double-high or double-wide characters. 
5096 But this is the only area where @code{vttest} is allowed to fail.
5098 @item
5099 It is not possible to change the environment variable @code{$TERMCAP}
5100 when reattaching under a different terminal type.
5102 @item
5103 The support of terminfo based systems is very limited. Adding extra
5104 capabilities to @code{$TERMCAP} may not have any effects.
5106 @item
5107 @code{screen} does not make use of hardware tabs.
5109 @item
5110 @code{screen} must be installed setuid root on most systems
5111 in order to be able to
5112 correctly change the owner of the tty device file for each window.
5113 Special permission may also be required to write the file
5114 @file{/etc/utmp}.
5116 @item
5117 Entries in @file{/etc/utmp} are not removed when @code{screen} is killed
5118 with SIGKILL.  This will cause some programs (like "w" or "rwho") to
5119 advertise that a user is logged on who really isn't.
5121 @item
5122 @code{screen} may give a strange warning when your tty has no utmp
5123 entry.
5125 @item
5126 When the modem line was hung up, @code{screen} may not automatically detach
5127 (or quit) unless the device driver sends a HANGUP signal. To detach such a 
5128 @code{screen} session use the -D or -d command line option.
5130 @item
5131 If a password is set, the command line options -d and -D still detach a 
5132 session without asking.
5134 @item
5135 Both @code{breaktype} and @code{defbreaktype} change the break generating
5136 method used by all terminal devices. The first should change a window
5137 specific setting, where the latter should change only the default for new
5138 windows.
5140 @item
5141 When attaching to a multiuser session, the user's @file{.screenrc} file is not
5142 sourced. Each users personal settings have to be included in the 
5143 @file{.screenrc} file from which the session is booted, or have to be 
5144 changed manually.
5146 @item
5147 A weird imagination is most useful to gain full advantage of all the
5148 features.
5149 @end itemize
5151 @node Reporting Bugs, Availability, Known Bugs, Bugs
5152 @section Reporting Bugs
5153 @cindex bug report
5155 If you find a bug in @code{Screen}, please send electronic mail to
5156 @w{@samp{screen@@uni-erlangen.de}}, and also to
5157 @w{@samp{bug-gnu-utils@@prep.ai.mit.edu}}.  Include the version number
5158 of @code{Screen} which you are using.  Also include in your message the
5159 hardware and operating system, the compiler used to compile, a
5160 description of the bug behavior, and the conditions that triggered the
5161 bug. Please recompile @code{screen} with the @samp{-DDEBUG} options
5162 enabled, reproduce the bug, and have a look at the debug output written to
5163 the directory @file{/tmp/debug}. If necessary quote suspect passages from the
5164 debug output and show the contents of your @file{config.h} if it matters.
5166 @node Availability,  , Reporting Bugs, Bugs
5167 @section Availability
5168 @cindex availability
5170 @code{Screen} is available under the @code{GNU} copyleft.
5172 The latest official release of @code{screen} available via anonymous
5173 ftp from @samp{prep.ai.mit.edu}, @samp{nic.funet.fi} or any other
5174 @code{GNU} distribution site.  The home site of 
5175 @code{screen} is @samp{ftp.uni-erlangen.de
5176 (131.188.3.71)}, in the directory @file{pub/utilities/screen}.
5177 The subdirectory @samp{private} contains the latest beta testing release.
5178 If you want to help, send a note to screen@@uni-erlangen.de.
5180 @node Installation, Concept Index, Bugs, Top
5181 @chapter Installation
5182 @cindex installation
5184 Since @code{screen} uses pseudo-ttys, the select system call, and
5185 UNIX-domain sockets/named pipes, it will not run under a system that
5186 does not include these features of 4.2 and 4.3 BSD UNIX.
5188 @menu
5189 * Socket Directory::            Where screen stores its handle.
5190 * Compiling Screen::
5191 @end menu
5193 @node Socket Directory,
5194 @section Socket Directory
5195 @cindex socket directory
5197 The socket directory defaults either to @file{$HOME/.screen} or simply to 
5198 @file{/tmp/screens} or preferably to @file{/usr/local/screens} chosen at 
5199 compile-time. If @code{screen} is installed
5200 setuid root, then the administrator should compile screen with an
5201 adequate (not NFS mounted) @code{SOCKDIR}. If @code{screen} is not
5202 running setuid-root, the user can specify any mode 700 directory in the
5203 environment variable @code{$SCREENDIR}.
5205 @node Compiling Screen,  , Socket Directory, Installation
5206 @section Compiling Screen
5207 @cindex compiling screen
5209 To compile and install screen:
5211 The @code{screen} package comes with a @code{GNU Autoconf} configuration 
5212 script. Before you compile the package run 
5214 @center @code{sh ./configure}
5216 This will create a @file{config.h} and @file{Makefile} for your machine.
5217 If @code{configure} fails for some reason, then look at the examples and
5218 comments found in the @file{Makefile.in} and @file{config.h.in} templates.
5219 Rename @file{config.status} to @file{config.status.@var{machine}} when
5220 you want to keep configuration data for multiple architectures. Running
5221 @code{sh ./config.status.@var{machine}} recreates your configuration 
5222 significantly faster than rerunning @code{configure}. 
5224 Read through the "User Configuration" section of @file{config.h}, and verify
5225 that it suits your needs.
5226 A comment near the top of this section explains why it's best to
5227 install screen setuid to root.
5228 Check for the place for the global @file{screenrc}-file and for the socket
5229 directory.
5231 Check the compiler used in @file{Makefile}, the prefix path where to install
5232 @code{screen}. Then run
5234 @center @code{make}
5236 If @code{make} fails to produce one of the files @file{term.h}, @file{comm.h}
5237 or @file{tty.c}, then use @code{@var{filename.x}.dist} instead.
5238 For additional information about installation of @code{screen} refer to the
5239 file @file{INSTALLATION}, coming with this package.
5241 @node Concept Index, Command Index, Installation, Top
5242 @unnumbered Concept Index
5244 @printindex cp
5246 @node Command Index, Keystroke Index, Concept Index, Top
5247 @unnumbered Command Index
5249 This is a list of all the commands supported by @code{screen}.
5251 @printindex fn
5253 @node Keystroke Index,  , Command Index, Top
5254 @unnumbered Keystroke Index
5256 This is a list of the default key bindings.
5258 The leading escape character (@pxref{Command Character}) has been omitted
5259 from the key sequences, since it is the same for all bindings.
5261 @printindex ky
5263 @shortcontents
5264 @contents
5265 @bye