ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/rxvt.7.man.in
(Generate patch)

Comparing rxvt-unicode/doc/rxvt.7.man.in (file contents):
Revision 1.79 by root, Mon Aug 7 16:17:30 2006 UTC vs.
Revision 1.80 by root, Thu Nov 2 17:37:47 2006 UTC

1.\" Automatically generated by Pod::Man 2.09 (Pod::Simple 3.04) 1.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.32
2.\" 2.\"
3.\" Standard preamble: 3.\" Standard preamble:
4.\" ======================================================================== 4.\" ========================================================================
5.de Sh \" Subsection heading 5.de Sh \" Subsection heading
6.br 6.br
127.\} 127.\}
128.rm #[ #] #H #V #F C 128.rm #[ #] #H #V #F C
129.\" ======================================================================== 129.\" ========================================================================
130.\" 130.\"
131.IX Title "@@RXVT_NAME@@ 7" 131.IX Title "@@RXVT_NAME@@ 7"
132.TH @@RXVT_NAME@@ 7 "2006-08-07" "7.9" "RXVT-UNICODE" 132.TH @@RXVT_NAME@@ 7 "2006-11-02" "8.0" "RXVT-UNICODE"
133.SH "NAME" 133.SH "NAME"
134RXVT REFERENCE \- FAQ, command sequences and other background information 134RXVT REFERENCE \- FAQ, command sequences and other background information
135.SH "SYNOPSIS" 135.SH "SYNOPSIS"
136.IX Header "SYNOPSIS" 136.IX Header "SYNOPSIS"
137.Vb 2 137.Vb 2
138\& # set a new font set 138\& # set a new font set
139\& printf '\e33]50;%s\e007' 9x15,xft:Kochi" Mincho" 139\& printf '\e33]50;%s\e007' 9x15,xft:Kochi" Mincho"
140\& 140.Ve
141.PP
142.Vb 2
141\& # change the locale and tell rxvt\-unicode about it 143\& # change the locale and tell rxvt-unicode about it
142\& export LC_CTYPE=ja_JP.EUC\-JP; printf "\e33]701;$LC_CTYPE\e007" 144\& export LC_CTYPE=ja_JP.EUC-JP; printf "\e33]701;$LC_CTYPE\e007"
143\& 145.Ve
146.PP
147.Vb 2
144\& # set window title 148\& # set window title
145\& printf '\e33]2;%s\e007' "new window title" 149\& printf '\e33]2;%s\e007' "new window title"
146.Ve 150.Ve
147.SH "DESCRIPTION" 151.SH "DESCRIPTION"
148.IX Header "DESCRIPTION" 152.IX Header "DESCRIPTION"
149This document contains the \s-1FAQ\s0, the \s-1RXVT\s0 \s-1TECHNICAL\s0 \s-1REFERENCE\s0 documenting 153This document contains the \s-1FAQ\s0, the \s-1RXVT\s0 \s-1TECHNICAL\s0 \s-1REFERENCE\s0 documenting
150all escape sequences, and other background information. 154all escape sequences, and other background information.
151.PP 155.PP
152The newest version of this document is also available on the World Wide Web at 156The newest version of this document is also available on the World Wide Web at
153<http://cvs.schmorp.de/browse/*checkout*/rxvt\-unicode/doc/rxvt.7.html>. 157<http://cvs.schmorp.de/browse/rxvt\-unicode/doc/rxvt.7.html>.
154.SH "RXVT\-UNICODE/URXVT FREQUENTLY ASKED QUESTIONS" 158.SH "RXVT\-UNICODE/URXVT FREQUENTLY ASKED QUESTIONS"
155.IX Header "RXVT-UNICODE/URXVT FREQUENTLY ASKED QUESTIONS" 159.IX Header "RXVT-UNICODE/URXVT FREQUENTLY ASKED QUESTIONS"
156.Sh "Meta, Features & Commandline Issues" 160.Sh "Meta, Features & Commandline Issues"
157.IX Subsection "Meta, Features & Commandline Issues" 161.IX Subsection "Meta, Features & Commandline Issues"
158\fIMy question isn't answered here, can I ask a human?\fR 162\fIMy question isn't answered here, can I ask a human?\fR
168Beginning with version 7.3, there is a perl extension that implements a 172Beginning with version 7.3, there is a perl extension that implements a
169simple tabbed terminal. It is installed by default, so any of these should 173simple tabbed terminal. It is installed by default, so any of these should
170give you tabs: 174give you tabs:
171.PP 175.PP
172.Vb 1 176.Vb 1
173\& @@URXVT_NAME@@ \-pe tabbed 177\& @@URXVT_NAME@@ -pe tabbed
174\& 178.Ve
179.PP
180.Vb 1
175\& URxvt.perl\-ext\-common: default,tabbed 181\& URxvt.perl-ext-common: default,tabbed
176.Ve 182.Ve
177.PP 183.PP
178It will also work fine with tabbing functionality of many window managers 184It will also work fine with tabbing functionality of many window managers
179or similar tabbing programs, and its embedding-features allow it to be 185or similar tabbing programs, and its embedding-features allow it to be
180embedded into other programs, as witnessed by \fIdoc/rxvt\-tabbed\fR or 186embedded into other programs, as witnessed by \fIdoc/rxvt\-tabbed\fR or
218@@URXVT_NAME@@c and the daemon isn't running yet, use this script: 224@@URXVT_NAME@@c and the daemon isn't running yet, use this script:
219.PP 225.PP
220.Vb 6 226.Vb 6
221\& #!/bin/sh 227\& #!/bin/sh
222\& @@URXVT_NAME@@c "$@" 228\& @@URXVT_NAME@@c "$@"
223\& if [ $? \-eq 2 ]; then 229\& if [ $? -eq 2 ]; then
224\& @@URXVT_NAME@@d \-q \-o \-f 230\& @@URXVT_NAME@@d -q -o -f
225\& @@URXVT_NAME@@c "$@" 231\& @@URXVT_NAME@@c "$@"
226\& fi 232\& fi
227.Ve 233.Ve
228.PP 234.PP
229This tries to create a new terminal, and if fails with exit status 2, 235This tries to create a new terminal, and if fails with exit status 2,
252Courtesy of Chuck Blake <cblake@BBN.COM> with the following shell script 258Courtesy of Chuck Blake <cblake@BBN.COM> with the following shell script
253snippets: 259snippets:
254.PP 260.PP
255.Vb 12 261.Vb 12
256\& # Bourne/Korn/POSIX family of shells: 262\& # Bourne/Korn/POSIX family of shells:
257\& [ ${TERM:\-foo} = foo ] && TERM=xterm # assume an xterm if we don't know 263\& [ ${TERM:-foo} = foo ] && TERM=xterm # assume an xterm if we don't know
258\& if [ ${TERM:\-foo} = xterm ]; then 264\& if [ ${TERM:-foo} = xterm ]; then
259\& stty \-icanon \-echo min 0 time 15 # see if enhanced rxvt or not 265\& stty -icanon -echo min 0 time 15 # see if enhanced rxvt or not
260\& echo \-n '^[Z' 266\& echo -n '^[Z'
261\& read term_id 267\& read term_id
262\& stty icanon echo 268\& stty icanon echo
263\& if [ ""${term_id} = '^[[?1;2C' \-a ${DISPLAY:\-foo} = foo ]; then 269\& if [ ""${term_id} = '^[[?1;2C' -a ${DISPLAY:-foo} = foo ]; then
264\& echo \-n '^[[7n' # query the rxvt we are in for the DISPLAY string 270\& echo -n '^[[7n' # query the rxvt we are in for the DISPLAY string
265\& read DISPLAY # set it in our local shell 271\& read DISPLAY # set it in our local shell
266\& fi 272\& fi
267\& fi 273\& fi
268.Ve 274.Ve
269.PP 275.PP
285features unique to urxvt (locale, encoding conversion, iso14755 etc.) are 291features unique to urxvt (locale, encoding conversion, iso14755 etc.) are
286already in use in this mode. 292already in use in this mode.
287.PP 293.PP
288.Vb 3 294.Vb 3
289\& text data bss drs rss filename 295\& text data bss drs rss filename
290\& 98398 1664 24 15695 1824 rxvt \-\-disable\-everything 296\& 98398 1664 24 15695 1824 rxvt --disable-everything
291\& 188985 9048 66616 18222 1788 urxvt \-\-disable\-everything 297\& 188985 9048 66616 18222 1788 urxvt --disable-everything
292.Ve 298.Ve
293.PP 299.PP
294When you \f(CW\*(C`\-\-enable\-everything\*(C'\fR (which \fIis\fR unfair, as this involves xft 300When you \f(CW\*(C`\-\-enable\-everything\*(C'\fR (which \fIis\fR unfair, as this involves xft
295and full locale/XIM support which are quite bloaty inside libX11 and my 301and full locale/XIM support which are quite bloaty inside libX11 and my
296libc), the two diverge, but not unreasonably so. 302libc), the two diverge, but not unreasonably so.
297.PP 303.PP
298.Vb 3 304.Vb 3
299\& text data bss drs rss filename 305\& text data bss drs rss filename
300\& 163431 2152 24 20123 2060 rxvt \-\-enable\-everything 306\& 163431 2152 24 20123 2060 rxvt --enable-everything
301\& 1035683 49680 66648 29096 3680 urxvt \-\-enable\-everything 307\& 1035683 49680 66648 29096 3680 urxvt --enable-everything
302.Ve 308.Ve
303.PP 309.PP
304The very large size of the text section is explained by the east-asian 310The very large size of the text section is explained by the east-asian
305encoding tables, which, if unused, take up disk space but nothing else 311encoding tables, which, if unused, take up disk space but nothing else
306and can be compiled out unless you rely on X11 core fonts that use those 312and can be compiled out unless you rely on X11 core fonts that use those
342.PP 348.PP
343.Vb 4 349.Vb 4
344\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000) 350\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000)
345\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaadde000) 351\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaadde000)
346\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab01d000) 352\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab01d000)
347\& /lib64/ld\-linux\-x86\-64.so.2 (0x00002aaaaaaab000) 353\& /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000)
348.Ve 354.Ve
349.PP 355.PP
350And here is rxvt\-unicode: 356And here is rxvt\-unicode:
351.PP 357.PP
352.Vb 5 358.Vb 5
353\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000) 359\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000)
354\& libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00002aaaaada2000) 360\& libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00002aaaaada2000)
355\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaaeb0000) 361\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaaeb0000)
356\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab0ee000) 362\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab0ee000)
357\& /lib64/ld\-linux\-x86\-64.so.2 (0x00002aaaaaaab000) 363\& /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000)
358.Ve 364.Ve
359.PP 365.PP
360No large bloated libraries (of course, none were linked in statically), 366No large bloated libraries (of course, none were linked in statically),
361except maybe libX11 :) 367except maybe libX11 :)
362.Sh "Rendering, Font & Look and Feel Issues" 368.Sh "Rendering, Font & Look and Feel Issues"
374.PP 380.PP
3751. Use inheritPixmap: 3811. Use inheritPixmap:
376.PP 382.PP
377.Vb 2 383.Vb 2
378\& Esetroot wallpaper.jpg 384\& Esetroot wallpaper.jpg
379\& @@URXVT_NAME@@ \-ip \-tint red \-sh 40 385\& @@URXVT_NAME@@ -ip -tint red -sh 40
380.Ve 386.Ve
381.PP 387.PP
382That works. If you think it doesn't, you lack transparency and tinting 388That works. If you think it doesn't, you lack transparency and tinting
383support, or you are unable to read. 389support, or you are unable to read.
384.PP 390.PP
3852. Use a simple pixmap and emulate pseudo\-transparency. This enables you 3912. Use a simple pixmap and emulate pseudo\-transparency. This enables you
386to use effects other than tinting and shading: Just shade/tint/whatever 392to use effects other than tinting and shading: Just shade/tint/whatever
387your picture with gimp or any other tool: 393your picture with gimp or any other tool:
388.PP 394.PP
389.Vb 2 395.Vb 2
390\& convert wallpaper.jpg \-blur 20x20 \-modulate 30 background.xpm 396\& convert wallpaper.jpg -blur 20x20 -modulate 30 background.xpm
391\& @@URXVT_NAME@@ \-pixmap background.xpm \-pe automove\-background 397\& @@URXVT_NAME@@ -pixmap background.xpm -pe automove-background
392.Ve 398.Ve
393.PP 399.PP
394That works. If you think it doesn't, you lack \s-1XPM\s0 and Perl support, or you 400That works. If you think it doesn't, you lack \s-1XPM\s0 and Perl support, or you
395are unable to read. 401are unable to read.
396.PP 402.PP
3973. Use an \s-1ARGB\s0 visual: 4033. Use an \s-1ARGB\s0 visual:
398.PP 404.PP
399.Vb 1 405.Vb 1
400\& @@URXVT_NAME@@ \-depth 32 \-fg grey90 \-bg rgba:0000/0000/4444/cccc 406\& @@URXVT_NAME@@ -depth 32 -fg grey90 -bg rgba:0000/0000/4444/cccc
401.Ve 407.Ve
402.PP 408.PP
403This requires \s-1XFT\s0 support, and the support of your X\-server. If that 409This requires \s-1XFT\s0 support, and the support of your X\-server. If that
404doesn't work for you, blame Xorg and Keith Packard. \s-1ARGB\s0 visuals aren't 410doesn't work for you, blame Xorg and Keith Packard. \s-1ARGB\s0 visuals aren't
405there yet, no matter what they claim. Rxvt-Unicode contains the necessary 411there yet, no matter what they claim. Rxvt-Unicode contains the necessary
407doesn't mean that your \s-1WM\s0 has the required kludges in place. 413doesn't mean that your \s-1WM\s0 has the required kludges in place.
408.PP 414.PP
4094. Use xcompmgr and let it do the job: 4154. Use xcompmgr and let it do the job:
410.PP 416.PP
411.Vb 2 417.Vb 2
412\& xprop \-frame \-f _NET_WM_WINDOW_OPACITY 32c \e 418\& xprop -frame -f _NET_WM_WINDOW_OPACITY 32c \e
413\& \-set _NET_WM_WINDOW_OPACITY 0xc0000000 419\& -set _NET_WM_WINDOW_OPACITY 0xc0000000
414.Ve 420.Ve
415.PP 421.PP
416Then click on a window you want to make transparent. Replace \f(CW0xc0000000\fR 422Then click on a window you want to make transparent. Replace \f(CW0xc0000000\fR
417by other values to change the degree of opacity. If it doesn't work and 423by other values to change the degree of opacity. If it doesn't work and
418your server crashes, you got to keep the pieces. 424your server crashes, you got to keep the pieces.
547\& URxvt.color3: #A8A800 553\& URxvt.color3: #A8A800
548\& URxvt.color4: #0000A8 554\& URxvt.color4: #0000A8
549\& URxvt.color5: #A800A8 555\& URxvt.color5: #A800A8
550\& URxvt.color6: #00A8A8 556\& URxvt.color6: #00A8A8
551\& URxvt.color7: #A8A8A8 557\& URxvt.color7: #A8A8A8
552\& 558.Ve
559.PP
560.Vb 8
553\& URxvt.color8: #000054 561\& URxvt.color8: #000054
554\& URxvt.color9: #FF0054 562\& URxvt.color9: #FF0054
555\& URxvt.color10: #00FF54 563\& URxvt.color10: #00FF54
556\& URxvt.color11: #FFFF54 564\& URxvt.color11: #FFFF54
557\& URxvt.color12: #0000FF 565\& URxvt.color12: #0000FF
560\& URxvt.color15: #FFFFFF 568\& URxvt.color15: #FFFFFF
561.Ve 569.Ve
562.PP 570.PP
563And here is a more complete set of non-standard colors. 571And here is a more complete set of non-standard colors.
564.PP 572.PP
565.Vb 10 573.Vb 18
566\& URxvt.cursorColor: #dc74d1 574\& URxvt.cursorColor: #dc74d1
567\& URxvt.pointerColor: #dc74d1 575\& URxvt.pointerColor: #dc74d1
568\& URxvt.background: #0e0e0e 576\& URxvt.background: #0e0e0e
569\& URxvt.foreground: #4ad5e1 577\& URxvt.foreground: #4ad5e1
570\& URxvt.color0: #000000 578\& URxvt.color0: #000000
607.PP 615.PP
608In that case, select a font of your taste and add it to the font list, 616In that case, select a font of your taste and add it to the font list,
609e.g.: 617e.g.:
610.PP 618.PP
611.Vb 1 619.Vb 1
612\& @@URXVT_NAME@@ \-fn basefont,font2,font3... 620\& @@URXVT_NAME@@ -fn basefont,font2,font3...
613.Ve 621.Ve
614.PP 622.PP
615When rxvt-unicode sees a character, it will first look at the base 623When rxvt-unicode sees a character, it will first look at the base
616font. If the base font does not contain the character, it will go to the 624font. If the base font does not contain the character, it will go to the
617next font, and so on. Specifying your own fonts will also speed up this 625next font, and so on. Specifying your own fonts will also speed up this
642In the future it might be possible to switch language preferences at 650In the future it might be possible to switch language preferences at
643runtime (the internal data structure has no problem with using different 651runtime (the internal data structure has no problem with using different
644fonts for the same character at the same time, but no interface for this 652fonts for the same character at the same time, but no interface for this
645has been designed yet). 653has been designed yet).
646.PP 654.PP
647Until then, you might get away with switching fonts at runtime (see \*(L"Can 655Until then, you might get away with switching fonts at runtime (see \*(L"Can I switch the fonts at runtime?\*(R" later in this document).
648I switch the fonts at runtime?\*(R" later in this document).
649.Sh "Keyboard, Mouse & User Interaction" 656.Sh "Keyboard, Mouse & User Interaction"
650.IX Subsection "Keyboard, Mouse & User Interaction" 657.IX Subsection "Keyboard, Mouse & User Interaction"
651\fIThe new selection selects pieces that are too big, how can I select single words?\fR 658\fIThe new selection selects pieces that are too big, how can I select single words?\fR
652.IX Subsection "The new selection selects pieces that are too big, how can I select single words?" 659.IX Subsection "The new selection selects pieces that are too big, how can I select single words?"
653.PP 660.PP
654If you want to select e.g. alphanumeric words, you can use the following 661If you want to select e.g. alphanumeric words, you can use the following
655setting: 662setting:
656.PP 663.PP
657.Vb 1 664.Vb 1
658\& URxvt.selection.pattern\-0: ([[:word:]]+) 665\& URxvt.selection.pattern-0: ([[:word:]]+)
659.Ve 666.Ve
660.PP 667.PP
661If you click more than twice, the selection will be extended 668If you click more than twice, the selection will be extended
662more and more. 669more and more.
663.PP 670.PP
664To get a selection that is very similar to the old code, try this pattern: 671To get a selection that is very similar to the old code, try this pattern:
665.PP 672.PP
666.Vb 1 673.Vb 1
667\& URxvt.selection.pattern\-0: ([^"&'()*,;<=>?@[\e\e\e\e]^`{|})]+) 674\& URxvt.selection.pattern-0: ([^"&'()*,;<=>?@[\e\e\e\e]^`{|})]+)
668.Ve 675.Ve
669.PP 676.PP
670Please also note that the \fILeftClick Shift-LeftClik\fR combination also 677Please also note that the \fILeftClick Shift-LeftClik\fR combination also
671selects words like the old code. 678selects words like the old code.
672.PP 679.PP
682\&\fB\s-1PREPACKAGED\s0 \s-1EXTENSIONS\s0\fR in the @@URXVT_NAME@@\fIperl\fR\|(3) manpage. For 689\&\fB\s-1PREPACKAGED\s0 \s-1EXTENSIONS\s0\fR in the @@URXVT_NAME@@\fIperl\fR\|(3) manpage. For
683example, to disable the \fBselection-popup\fR and \fBoption-popup\fR, specify 690example, to disable the \fBselection-popup\fR and \fBoption-popup\fR, specify
684this \fBperl-ext-common\fR resource: 691this \fBperl-ext-common\fR resource:
685.PP 692.PP
686.Vb 1 693.Vb 1
687\& URxvt.perl\-ext\-common: default,\-selection\-popup,\-option\-popup 694\& URxvt.perl-ext-common: default,-selection-popup,-option-popup
688.Ve 695.Ve
689.PP 696.PP
690This will keep the default extensions, but disable the two popup 697This will keep the default extensions, but disable the two popup
691extensions. Some extensions can also be configured, for example, 698extensions. Some extensions can also be configured, for example,
692scrollback search mode is triggered by \fBM\-s\fR. You can move it to any 699scrollback search mode is triggered by \fBM\-s\fR. You can move it to any
693other combination either by setting the \fBsearchable-scrollback\fR resource: 700other combination either by setting the \fBsearchable-scrollback\fR resource:
694.PP 701.PP
695.Vb 1 702.Vb 1
696\& URxvt.searchable\-scrollback: CM\-s 703\& URxvt.searchable-scrollback: CM-s
697.Ve 704.Ve
698.PP 705.PP
699\fIThe cursor moves when selecting text in the current input line, how do I switch this off?\fR 706\fIThe cursor moves when selecting text in the current input line, how do I switch this off?\fR
700.IX Subsection "The cursor moves when selecting text in the current input line, how do I switch this off?" 707.IX Subsection "The cursor moves when selecting text in the current input line, how do I switch this off?"
701.PP 708.PP
712.PP 719.PP
713You can permanently switch this feature off by disabling the \f(CW\*(C`readline\*(C'\fR 720You can permanently switch this feature off by disabling the \f(CW\*(C`readline\*(C'\fR
714extension: 721extension:
715.PP 722.PP
716.Vb 1 723.Vb 1
717\& URxvt.perl\-ext\-common: default,\-readline 724\& URxvt.perl-ext-common: default,-readline
718.Ve 725.Ve
719.PP 726.PP
720\fIMy numerical keypad acts weird and generates differing output?\fR 727\fIMy numerical keypad acts weird and generates differing output?\fR
721.IX Subsection "My numerical keypad acts weird and generates differing output?" 728.IX Subsection "My numerical keypad acts weird and generates differing output?"
722.PP 729.PP
780.PP 787.PP
781.Vb 3 788.Vb 3
782\& # use Backspace = ^H 789\& # use Backspace = ^H
783\& $ stty erase ^H 790\& $ stty erase ^H
784\& $ @@URXVT_NAME@@ 791\& $ @@URXVT_NAME@@
785\& 792.Ve
793.PP
794.Vb 3
786\& # use Backspace = ^? 795\& # use Backspace = ^?
787\& $ stty erase ^? 796\& $ stty erase ^?
788\& $ @@URXVT_NAME@@ 797\& $ @@URXVT_NAME@@
789.Ve 798.Ve
790.PP 799.PP
793For an existing rxvt\-unicode: 802For an existing rxvt\-unicode:
794.PP 803.PP
795.Vb 3 804.Vb 3
796\& # use Backspace = ^H 805\& # use Backspace = ^H
797\& $ stty erase ^H 806\& $ stty erase ^H
798\& $ echo \-n "^[[36h" 807\& $ echo -n "^[[36h"
799\& 808.Ve
809.PP
810.Vb 3
800\& # use Backspace = ^? 811\& # use Backspace = ^?
801\& $ stty erase ^? 812\& $ stty erase ^?
802\& $ echo \-n "^[[36l" 813\& $ echo -n "^[[36l"
803.Ve 814.Ve
804.PP 815.PP
805This helps satisfy some of the Backspace discrepancies that occur, but 816This helps satisfy some of the Backspace discrepancies that occur, but
806if you use Backspace = \f(CW\*(C`^H\*(C'\fR, make sure that the termcap/terminfo value 817if you use Backspace = \f(CW\*(C`^H\*(C'\fR, make sure that the termcap/terminfo value
807properly reflects that. 818properly reflects that.
826you have run \*(L"configure\*(R" with the \f(CW\*(C`\-\-disable\-resources\*(C'\fR option you can 837you have run \*(L"configure\*(R" with the \f(CW\*(C`\-\-disable\-resources\*(C'\fR option you can
827use the `keysym' resource to alter the keystrings associated with keysyms. 838use the `keysym' resource to alter the keystrings associated with keysyms.
828.PP 839.PP
829Here's an example for a URxvt session started using \f(CW\*(C`@@URXVT_NAME@@ \-name URxvt\*(C'\fR 840Here's an example for a URxvt session started using \f(CW\*(C`@@URXVT_NAME@@ \-name URxvt\*(C'\fR
830.PP 841.PP
831.Vb 10 842.Vb 20
832\& URxvt.keysym.Home: \e033[1~ 843\& URxvt.keysym.Home: \e033[1~
833\& URxvt.keysym.End: \e033[4~ 844\& URxvt.keysym.End: \e033[4~
834\& URxvt.keysym.C\-apostrophe: \e033<C\-'> 845\& URxvt.keysym.C-apostrophe: \e033<C-'>
835\& URxvt.keysym.C\-slash: \e033<C\-/> 846\& URxvt.keysym.C-slash: \e033<C-/>
836\& URxvt.keysym.C\-semicolon: \e033<C\-;> 847\& URxvt.keysym.C-semicolon: \e033<C-;>
837\& URxvt.keysym.C\-grave: \e033<C\-`> 848\& URxvt.keysym.C-grave: \e033<C-`>
838\& URxvt.keysym.C\-comma: \e033<C\-,> 849\& URxvt.keysym.C-comma: \e033<C-,>
839\& URxvt.keysym.C\-period: \e033<C\-.> 850\& URxvt.keysym.C-period: \e033<C-.>
840\& URxvt.keysym.C\-0x60: \e033<C\-`> 851\& URxvt.keysym.C-0x60: \e033<C-`>
841\& URxvt.keysym.C\-Tab: \e033<C\-Tab> 852\& URxvt.keysym.C-Tab: \e033<C-Tab>
842\& URxvt.keysym.C\-Return: \e033<C\-Return> 853\& URxvt.keysym.C-Return: \e033<C-Return>
843\& URxvt.keysym.S\-Return: \e033<S\-Return> 854\& URxvt.keysym.S-Return: \e033<S-Return>
844\& URxvt.keysym.S\-space: \e033<S\-Space> 855\& URxvt.keysym.S-space: \e033<S-Space>
845\& URxvt.keysym.M\-Up: \e033<M\-Up> 856\& URxvt.keysym.M-Up: \e033<M-Up>
846\& URxvt.keysym.M\-Down: \e033<M\-Down> 857\& URxvt.keysym.M-Down: \e033<M-Down>
847\& URxvt.keysym.M\-Left: \e033<M\-Left> 858\& URxvt.keysym.M-Left: \e033<M-Left>
848\& URxvt.keysym.M\-Right: \e033<M\-Right> 859\& URxvt.keysym.M-Right: \e033<M-Right>
849\& URxvt.keysym.M\-C\-0: list \e033<M\-C\- 0123456789 > 860\& URxvt.keysym.M-C-0: list \e033<M-C- 0123456789 >
850\& URxvt.keysym.M\-C\-a: list \e033<M\-C\- abcdefghijklmnopqrstuvwxyz > 861\& URxvt.keysym.M-C-a: list \e033<M-C- abcdefghijklmnopqrstuvwxyz >
851\& URxvt.keysym.F12: command:\e033]701;zh_CN.GBK\e007 862\& URxvt.keysym.F12: command:\e033]701;zh_CN.GBK\e007
852.Ve 863.Ve
853.PP 864.PP
854See some more examples in the documentation for the \fBkeysym\fR resource. 865See some more examples in the documentation for the \fBkeysym\fR resource.
855.PP 866.PP
881author's .Xdefaults entries, with comments on what they do. It's certainly 892author's .Xdefaults entries, with comments on what they do. It's certainly
882not \fItypical\fR, but what's typical... 893not \fItypical\fR, but what's typical...
883.PP 894.PP
884.Vb 2 895.Vb 2
885\& URxvt.cutchars: "()*,<>[]{}|' 896\& URxvt.cutchars: "()*,<>[]{}|'
886\& URxvt.print\-pipe: cat >/tmp/xxx 897\& URxvt.print-pipe: cat >/tmp/xxx
887.Ve 898.Ve
888.PP 899.PP
889These are just for testing stuff. 900These are just for testing stuff.
890.PP 901.PP
891.Vb 2 902.Vb 2
892\& URxvt.imLocale: ja_JP.UTF\-8 903\& URxvt.imLocale: ja_JP.UTF-8
893\& URxvt.preeditType: OnTheSpot,None 904\& URxvt.preeditType: OnTheSpot,None
894.Ve 905.Ve
895.PP 906.PP
896This tells rxvt-unicode to use a special locale when communicating with 907This tells rxvt-unicode to use a special locale when communicating with
897the X Input Method, and also tells it to only use the OnTheSpot pre-edit 908the X Input Method, and also tells it to only use the OnTheSpot pre-edit
898type, which requires the \f(CW\*(C`xim\-onthespot\*(C'\fR perl extension but rewards me 909type, which requires the \f(CW\*(C`xim\-onthespot\*(C'\fR perl extension but rewards me
899with correct-looking fonts. 910with correct-looking fonts.
900.PP 911.PP
901.Vb 6 912.Vb 6
902\& URxvt.perl\-lib: /root/lib/urxvt 913\& URxvt.perl-lib: /root/lib/urxvt
903\& URxvt.perl\-ext\-common: default,selection\-autotransform,selection\-pastebin,xim\-onthespot,remote\-clipboard 914\& URxvt.perl-ext-common: default,selection-autotransform,selection-pastebin,xim-onthespot,remote-clipboard
904\& URxvt.selection.pattern\-0: ( at .*? line \e\ed+) 915\& URxvt.selection.pattern-0: ( at .*? line \e\ed+)
905\& URxvt.selection.pattern\-1: ^(/[^:]+):\e 916\& URxvt.selection.pattern-1: ^(/[^:]+):\e
906\& URxvt.selection\-autotransform.0: s/^([^:[:space:]]+):(\e\ed+):?$/:e \e\eQ$1\e\eE\e\ex0d:$2\e\ex0d/ 917\& URxvt.selection-autotransform.0: s/^([^:[:space:]]+):(\e\ed+):?$/:e \e\eQ$1\e\eE\e\ex0d:$2\e\ex0d/
907\& URxvt.selection\-autotransform.1: s/^ at (.*?) line (\e\ed+)$/:e \e\eQ$1\e\eE\e\ex0d:$2\e\ex0d/ 918\& URxvt.selection-autotransform.1: s/^ at (.*?) line (\e\ed+)$/:e \e\eQ$1\e\eE\e\ex0d:$2\e\ex0d/
908.Ve 919.Ve
909.PP 920.PP
910This is my perl configuration. The first two set the perl library 921This is my perl configuration. The first two set the perl library
911directory and also tells urxvt to use a large number of extensions. I 922directory and also tells urxvt to use a large number of extensions. I
912develop for myself mostly, so I actually use most of the extensions I 923develop for myself mostly, so I actually use most of the extensions I
989.PP 1000.PP
990I once thought this is a great idea. 1001I once thought this is a great idea.
991.PP 1002.PP
992.Vb 9 1003.Vb 9
993\& urxvt.font: 9x15bold,\e 1004\& urxvt.font: 9x15bold,\e
994\& \-misc\-fixed\-bold\-r\-normal\-\-15\-140\-75\-75\-c\-90\-iso10646\-1,\e 1005\& -misc-fixed-bold-r-normal--15-140-75-75-c-90-iso10646-1,\e
995\& \-misc\-fixed\-medium\-r\-normal\-\-15\-140\-75\-75\-c\-90\-iso10646\-1, \e 1006\& -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1, \e
996\& [codeset=JISX0208]xft:Kochi Gothic, \e 1007\& [codeset=JISX0208]xft:Kochi Gothic, \e
997\& xft:Bitstream Vera Sans Mono:autohint=true, \e 1008\& xft:Bitstream Vera Sans Mono:autohint=true, \e
998\& xft:Code2000:antialias=false 1009\& xft:Code2000:antialias=false
999\& urxvt.boldFont: \-xos4\-terminus\-bold\-r\-normal\-\-14\-140\-72\-72\-c\-80\-iso8859\-15 1010\& urxvt.boldFont: -xos4-terminus-bold-r-normal--14-140-72-72-c-80-iso8859-15
1000\& urxvt.italicFont: xft:Bitstream Vera Sans Mono:italic:autohint=true 1011\& urxvt.italicFont: xft:Bitstream Vera Sans Mono:italic:autohint=true
1001\& urxvt.boldItalicFont: xft:Bitstream Vera Sans Mono:bold:italic:autohint=true 1012\& urxvt.boldItalicFont: xft:Bitstream Vera Sans Mono:bold:italic:autohint=true
1002.Ve 1013.Ve
1003.PP 1014.PP
1004I wrote rxvt-unicode to be able to specify fonts exactly. So don't be 1015I wrote rxvt-unicode to be able to specify fonts exactly. So don't be
1026\& IRC*saveLines: 0 1037\& IRC*saveLines: 0
1027\& IRC*mapAlert: true 1038\& IRC*mapAlert: true
1028\& IRC*font: suxuseuro 1039\& IRC*font: suxuseuro
1029\& IRC*boldFont: suxuseuro 1040\& IRC*boldFont: suxuseuro
1030\& IRC*colorBD: white 1041\& IRC*colorBD: white
1031\& IRC*keysym.M\-C\-1: command:\e033]710;suxuseuro\e007\e033]711;suxuseuro\e007 1042\& IRC*keysym.M-C-1: command:\e033]710;suxuseuro\e007\e033]711;suxuseuro\e007
1032\& IRC*keysym.M\-C\-2: command:\e033]710;9x15bold\e007\e033]711;9x15bold\e007 1043\& IRC*keysym.M-C-2: command:\e033]710;9x15bold\e007\e033]711;9x15bold\e007
1033.Ve 1044.Ve
1034.PP 1045.PP
1035\&\f(CW\*(C`Alt\-Shift\-1\*(C'\fR and \f(CW\*(C`Alt\-Shift\-2\*(C'\fR switch between two different font 1046\&\f(CW\*(C`Alt\-Shift\-1\*(C'\fR and \f(CW\*(C`Alt\-Shift\-2\*(C'\fR switch between two different font
1036sizes. \f(CW\*(C`suxuseuro\*(C'\fR allows me to keep an eye (and actually read) 1047sizes. \f(CW\*(C`suxuseuro\*(C'\fR allows me to keep an eye (and actually read)
1037stuff while keeping a very small window. If somebody pastes something 1048stuff while keeping a very small window. If somebody pastes something
1040The above is all in my \f(CW\*(C`.Xdefaults\*(C'\fR (I don't use \f(CW\*(C`.Xresources\*(C'\fR nor 1051The above is all in my \f(CW\*(C`.Xdefaults\*(C'\fR (I don't use \f(CW\*(C`.Xresources\*(C'\fR nor
1041\&\f(CW\*(C`xrdb\*(C'\fR). I also have some resources in a separate \f(CW\*(C`.Xdefaults\-hostname\*(C'\fR 1052\&\f(CW\*(C`xrdb\*(C'\fR). I also have some resources in a separate \f(CW\*(C`.Xdefaults\-hostname\*(C'\fR
1042file for different hosts, for example, on ym main desktop, I use: 1053file for different hosts, for example, on ym main desktop, I use:
1043.PP 1054.PP
1044.Vb 5 1055.Vb 5
1045\& URxvt.keysym.C\-M\-q: command:\e033[3;5;5t 1056\& URxvt.keysym.C-M-q: command:\e033[3;5;5t
1046\& URxvt.keysym.C\-M\-y: command:\e033[3;5;606t 1057\& URxvt.keysym.C-M-y: command:\e033[3;5;606t
1047\& URxvt.keysym.C\-M\-e: command:\e033[3;1605;5t 1058\& URxvt.keysym.C-M-e: command:\e033[3;1605;5t
1048\& URxvt.keysym.C\-M\-c: command:\e033[3;1605;606t 1059\& URxvt.keysym.C-M-c: command:\e033[3;1605;606t
1049\& URxvt.keysym.C\-M\-p: perl:test 1060\& URxvt.keysym.C-M-p: perl:test
1050.Ve 1061.Ve
1051.PP 1062.PP
1052The first for keysym definitions allow me to quickly bring some windows 1063The first for keysym definitions allow me to quickly bring some windows
1053in the layout I like most. Ion users might start laughing but will stop 1064in the layout I like most. Ion users might start laughing but will stop
1054immediately when I tell them that I use my own Fvwm2 module for much the 1065immediately when I tell them that I use my own Fvwm2 module for much the
1060.PP 1071.PP
1061Well, why, indeed? It does, in a way very similar to other X 1072Well, why, indeed? It does, in a way very similar to other X
1062applications. Most importantly, this means that if you or your \s-1OS\s0 loads 1073applications. Most importantly, this means that if you or your \s-1OS\s0 loads
1063resources into the X display (the right way to do it), rxvt-unicode will 1074resources into the X display (the right way to do it), rxvt-unicode will
1064ignore any resource files in your home directory. It will only read 1075ignore any resource files in your home directory. It will only read
1065\&\fI\f(CI$HOME\fI/.Xdefaults\fR when no resources are attached to the display. 1076\&\fI$HOME/.Xdefaults\fR when no resources are attached to the display.
1066.PP 1077.PP
1067If you have or use an \fI\f(CI$HOME\fI/.Xresources\fR file, chances are that 1078If you have or use an \fI$HOME/.Xresources\fR file, chances are that
1068resources are loaded into your X\-server. In this case, you have to 1079resources are loaded into your X\-server. In this case, you have to
1069re-login after every change (or run \fIxrdb \-merge \f(CI$HOME\fI/.Xresources\fR). 1080re-login after every change (or run \fIxrdb \-merge \f(CI$HOME\fI/.Xresources\fR).
1070.PP 1081.PP
1071Also consider the form resources have to use: 1082Also consider the form resources have to use:
1072.PP 1083.PP
1083.PP 1094.PP
1084The terminal description used by rxvt-unicode is not as widely available 1095The terminal description used by rxvt-unicode is not as widely available
1085as that for xterm, or even rxvt (for which the same problem often arises). 1096as that for xterm, or even rxvt (for which the same problem often arises).
1086.PP 1097.PP
1087The correct solution for this problem is to install the terminfo, this can 1098The correct solution for this problem is to install the terminfo, this can
1088be done like this (with ncurses' infocmp): 1099be done like this (with ncurses' infocmp and works as user and admin):
1089.PP 1100.PP
1090.Vb 2 1101.Vb 2
1091\& REMOTE=remotesystem.domain 1102\& REMOTE=remotesystem.domain
1092\& infocmp rxvt\-unicode | ssh $REMOTE "cat >/tmp/ti && tic /tmp/ti" 1103\& infocmp rxvt-unicode | ssh $REMOTE "mkdir -p .terminfo && cat >/tmp/ti && tic /tmp/ti"
1093.Ve 1104.Ve
1094.PP 1105.PP
1095\&... or by installing rxvt-unicode normally on the remote system, 1106\&... or by installing rxvt-unicode normally on the remote system,
1107.PP
1108One some systems you might need to set \f(CW$TERMINFO\fR to the full path of
1109\&\fI$HOME/.terminfo\fR for this to work.
1096.PP 1110.PP
1097If you cannot or do not want to do this, then you can simply set 1111If you cannot or do not want to do this, then you can simply set
1098\&\f(CW\*(C`TERM=rxvt\*(C'\fR or even \f(CW\*(C`TERM=xterm\*(C'\fR, and live with the small number of 1112\&\f(CW\*(C`TERM=rxvt\*(C'\fR or even \f(CW\*(C`TERM=xterm\*(C'\fR, and live with the small number of
1099problems arising, which includes wrong keymapping, less and different 1113problems arising, which includes wrong keymapping, less and different
1100colours and some refresh errors in fullscreen applications. It's a nice 1114colours and some refresh errors in fullscreen applications. It's a nice
1133You could use rxvt's termcap entry with reasonable results in many cases. 1147You could use rxvt's termcap entry with reasonable results in many cases.
1134You can also create a termcap entry by using terminfo's infocmp program 1148You can also create a termcap entry by using terminfo's infocmp program
1135like this: 1149like this:
1136.PP 1150.PP
1137.Vb 1 1151.Vb 1
1138\& infocmp \-C rxvt\-unicode 1152\& infocmp -C rxvt-unicode
1139.Ve 1153.Ve
1140.PP 1154.PP
1141Or you could use this termcap entry, generated by the command above: 1155Or you could use this termcap entry, generated by the command above:
1142.PP 1156.PP
1143.Vb 10 1157.Vb 20
1144\& rxvt\-unicode|rxvt\-unicode terminal (X Window System):\e 1158\& rxvt-unicode|rxvt-unicode terminal (X Window System):\e
1145\& :am:bw:eo:km:mi:ms:xn:xo:\e 1159\& :am:bw:eo:km:mi:ms:xn:xo:\e
1146\& :co#80:it#8:li#24:lm#0:\e 1160\& :co#80:it#8:li#24:lm#0:\e
1147\& :AL=\eE[%dL:DC=\eE[%dP:DL=\eE[%dM:DO=\eE[%dB:IC=\eE[%d@:\e 1161\& :AL=\eE[%dL:DC=\eE[%dP:DL=\eE[%dM:DO=\eE[%dB:IC=\eE[%d@:\e
1148\& :K1=\eEOw:K2=\eEOu:K3=\eEOy:K4=\eEOq:K5=\eEOs:LE=\eE[%dD:\e 1162\& :K1=\eEOw:K2=\eEOu:K3=\eEOy:K4=\eEOq:K5=\eEOs:LE=\eE[%dD:\e
1149\& :RI=\eE[%dC:SF=\eE[%dS:SR=\eE[%dT:UP=\eE[%dA:ae=\eE(B:al=\eE[L:\e 1163\& :RI=\eE[%dC:SF=\eE[%dS:SR=\eE[%dT:UP=\eE[%dA:ae=\eE(B:al=\eE[L:\e
1170decide whether a terminal has colour, but uses its own configuration 1184decide whether a terminal has colour, but uses its own configuration
1171file. Needless to say, \f(CW\*(C`rxvt\-unicode\*(C'\fR is not in its default file (among 1185file. Needless to say, \f(CW\*(C`rxvt\-unicode\*(C'\fR is not in its default file (among
1172with most other terminals supporting colour). Either add: 1186with most other terminals supporting colour). Either add:
1173.PP 1187.PP
1174.Vb 1 1188.Vb 1
1175\& TERM rxvt\-unicode 1189\& TERM rxvt-unicode
1176.Ve 1190.Ve
1177.PP 1191.PP
1178to \f(CW\*(C`/etc/DIR_COLORS\*(C'\fR or simply add: 1192to \f(CW\*(C`/etc/DIR_COLORS\*(C'\fR or simply add:
1179.PP 1193.PP
1180.Vb 1 1194.Vb 1
1181\& alias ls='ls \-\-color=auto' 1195\& alias ls='ls --color=auto'
1182.Ve 1196.Ve
1183.PP 1197.PP
1184to your \f(CW\*(C`.profile\*(C'\fR or \f(CW\*(C`.bashrc\*(C'\fR. 1198to your \f(CW\*(C`.profile\*(C'\fR or \f(CW\*(C`.bashrc\*(C'\fR.
1185.PP 1199.PP
1186\fIWhy doesn't vim/emacs etc. use the 88 colour mode?\fR 1200\fIWhy doesn't vim/emacs etc. use the 88 colour mode?\fR
1304(e.g. \s-1UTF\-8\s0). For example, I use this script to start \f(CW\*(C`xjdic\*(C'\fR, which 1318(e.g. \s-1UTF\-8\s0). For example, I use this script to start \f(CW\*(C`xjdic\*(C'\fR, which
1305first switches to a locale supported by xjdic and back later: 1319first switches to a locale supported by xjdic and back later:
1306.PP 1320.PP
1307.Vb 3 1321.Vb 3
1308\& printf '\e33]701;%s\e007' ja_JP.SJIS 1322\& printf '\e33]701;%s\e007' ja_JP.SJIS
1309\& xjdic \-js 1323\& xjdic -js
1310\& printf '\e33]701;%s\e007' de_DE.UTF\-8 1324\& printf '\e33]701;%s\e007' de_DE.UTF-8
1311.Ve 1325.Ve
1312.PP 1326.PP
1313You can also use xterm's \f(CW\*(C`luit\*(C'\fR program, which usually works fine, except 1327You can also use xterm's \f(CW\*(C`luit\*(C'\fR program, which usually works fine, except
1314for some locales where character width differs between program\- and 1328for some locales where character width differs between program\- and
1315rxvt\-unicode\-locales. 1329rxvt\-unicode\-locales.
1337When you want to use e.g. \fBkinput2\fR, it must be set to 1351When you want to use e.g. \fBkinput2\fR, it must be set to
1338\&\f(CW\*(C`@im=kinput2\*(C'\fR. For \fBscim\fR, use \f(CW\*(C`@im=SCIM\*(C'\fR. You can see what input 1352\&\f(CW\*(C`@im=kinput2\*(C'\fR. For \fBscim\fR, use \f(CW\*(C`@im=SCIM\*(C'\fR. You can see what input
1339method servers are running with this command: 1353method servers are running with this command:
1340.Sp 1354.Sp
1341.Vb 1 1355.Vb 1
1342\& xprop \-root XIM_SERVERS 1356\& xprop -root XIM_SERVERS
1343.Ve 1357.Ve
1344.IP "" 4 1358.IP "*" 4
1345.PP 1359.PP
1346\fIMy input method wants <some encoding> but I want \s-1UTF\-8\s0, what can I do?\fR 1360\fIMy input method wants <some encoding> but I want \s-1UTF\-8\s0, what can I do?\fR
1347.IX Subsection "My input method wants <some encoding> but I want UTF-8, what can I do?" 1361.IX Subsection "My input method wants <some encoding> but I want UTF-8, what can I do?"
1348.PP 1362.PP
1349You can specify separate locales for the input method and the rest of the 1363You can specify separate locales for the input method and the rest of the
1350terminal, using the resource \f(CW\*(C`imlocale\*(C'\fR: 1364terminal, using the resource \f(CW\*(C`imlocale\*(C'\fR:
1351.PP 1365.PP
1352.Vb 1 1366.Vb 1
1353\& URxvt.imlocale: ja_JP.EUC\-JP 1367\& URxvt.imlocale: ja_JP.EUC-JP
1354.Ve 1368.Ve
1355.PP 1369.PP
1356Now you can start your terminal with \f(CW\*(C`LC_CTYPE=ja_JP.UTF\-8\*(C'\fR and still 1370Now you can start your terminal with \f(CW\*(C`LC_CTYPE=ja_JP.UTF\-8\*(C'\fR and still
1357use your input method. Please note, however, that, depending on your Xlib 1371use your input method. Please note, however, that, depending on your Xlib
1358version, you may not be able to input characters outside \f(CW\*(C`EUC\-JP\*(C'\fR in a 1372version, you may not be able to input characters outside \f(CW\*(C`EUC\-JP\*(C'\fR in a
1667C = < Multinational character set unimplemented 1681C = < Multinational character set unimplemented
1668C = 5 Finnish character set unimplemented 1682C = 5 Finnish character set unimplemented
1669C = C Finnish character set unimplemented 1683C = C Finnish character set unimplemented
1670C = K German character set unimplemented 1684C = K German character set unimplemented
1671.TE 1685.TE
1686
1672.PP 1687.PP
1673 1688
1674.IX Xref "CSI" 1689.IX Xref "CSI"
1675.Sh "\s-1CSI\s0 (Command Sequence Introducer) Sequences" 1690.Sh "\s-1CSI\s0 (Command Sequence Introducer) Sequences"
1676.IX Subsection "CSI (Command Sequence Introducer) Sequences" 1691.IX Subsection "CSI (Command Sequence Introducer) Sequences"
1725l l . 1740l l .
1726Ps = 0 Clear Below (default) 1741Ps = 0 Clear Below (default)
1727Ps = 1 Clear Above 1742Ps = 1 Clear Above
1728Ps = 2 Clear All 1743Ps = 2 Clear All
1729.TE 1744.TE
1745
1730.ie n .IP "\fB\fB""ESC [ Ps K""\fB\fR" 4 1746.ie n .IP "\fB\fB""ESC [ Ps K""\fB\fR" 4
1731.el .IP "\fB\f(CBESC [ Ps K\fB\fR" 4 1747.el .IP "\fB\f(CBESC [ Ps K\fB\fR" 4
1732.IX Item "ESC [ Ps K" 1748.IX Item "ESC [ Ps K"
1733Erase in Line (\s-1EL\s0) 1749Erase in Line (\s-1EL\s0)
1734.TS 1750.TS
1735l l . 1751l l .
1736Ps = 0 Clear to Right (default) 1752Ps = 0 Clear to Right (default)
1737Ps = 1 Clear to Left 1753Ps = 1 Clear to Left
1738Ps = 2 Clear All 1754Ps = 2 Clear All
1739.TE 1755.TE
1756
1740.ie n .IP "\fB\fB""ESC [ Ps L""\fB\fR" 4 1757.ie n .IP "\fB\fB""ESC [ Ps L""\fB\fR" 4
1741.el .IP "\fB\f(CBESC [ Ps L\fB\fR" 4 1758.el .IP "\fB\f(CBESC [ Ps L\fB\fR" 4
1742.IX Item "ESC [ Ps L" 1759.IX Item "ESC [ Ps L"
1743Insert \fB\f(CB\*(C`Ps\*(C'\fB\fR Line(s) [default: 1] (\s-1IL\s0) 1760Insert \fB\f(CB\*(C`Ps\*(C'\fB\fR Line(s) [default: 1] (\s-1IL\s0)
1744.ie n .IP "\fB\fB""ESC [ Ps M""\fB\fR" 4 1761.ie n .IP "\fB\fB""ESC [ Ps M""\fB\fR" 4
1762l l . 1779l l .
1763Ps = 0 Tab Set (HTS) 1780Ps = 0 Tab Set (HTS)
1764Ps = 2 Tab Clear (TBC), Clear Current Column (default) 1781Ps = 2 Tab Clear (TBC), Clear Current Column (default)
1765Ps = 5 Tab Clear (TBC), Clear All 1782Ps = 5 Tab Clear (TBC), Clear All
1766.TE 1783.TE
1784
1767.ie n .IP "\fB\fB""ESC [ Ps X""\fB\fR" 4 1785.ie n .IP "\fB\fB""ESC [ Ps X""\fB\fR" 4
1768.el .IP "\fB\f(CBESC [ Ps X\fB\fR" 4 1786.el .IP "\fB\f(CBESC [ Ps X\fB\fR" 4
1769.IX Item "ESC [ Ps X" 1787.IX Item "ESC [ Ps X"
1770Erase \fB\f(CB\*(C`Ps\*(C'\fB\fR Character(s) [default: 1] (\s-1ECH\s0) 1788Erase \fB\f(CB\*(C`Ps\*(C'\fB\fR Character(s) [default: 1] (\s-1ECH\s0)
1771.ie n .IP "\fB\fB""ESC [ Ps Z""\fB\fR" 4 1789.ie n .IP "\fB\fB""ESC [ Ps Z""\fB\fR" 4
1806.TS 1824.TS
1807l l . 1825l l .
1808Ps = 0 Clear Current Column (default) 1826Ps = 0 Clear Current Column (default)
1809Ps = 3 Clear All (TBC) 1827Ps = 3 Clear All (TBC)
1810.TE 1828.TE
1829
1811.ie n .IP "\fB\fB""ESC [ Pm h""\fB\fR" 4 1830.ie n .IP "\fB\fB""ESC [ Pm h""\fB\fR" 4
1812.el .IP "\fB\f(CBESC [ Pm h\fB\fR" 4 1831.el .IP "\fB\f(CBESC [ Pm h\fB\fR" 4
1813.IX Item "ESC [ Pm h" 1832.IX Item "ESC [ Pm h"
1814Set Mode (\s-1SM\s0). See \fB\f(CB\*(C`ESC [ Pm l\*(C'\fB\fR sequence for description of \f(CW\*(C`Pm\*(C'\fR. 1833Set Mode (\s-1SM\s0). See \fB\f(CB\*(C`ESC [ Pm l\*(C'\fB\fR sequence for description of \f(CW\*(C`Pm\*(C'\fR.
1815.ie n .IP "\fB\fB""ESC [ Ps i""\fB\fR" 4 1834.ie n .IP "\fB\fB""ESC [ Ps i""\fB\fR" 4
1820l l . 1839l l .
1821Ps = 0 print screen (MC0) 1840Ps = 0 print screen (MC0)
1822Ps = 4 disable transparent print mode (MC4) 1841Ps = 4 disable transparent print mode (MC4)
1823Ps = 5 enable transparent print mode (MC5) 1842Ps = 5 enable transparent print mode (MC5)
1824.TE 1843.TE
1844
1825.ie n .IP "\fB\fB""ESC [ Pm l""\fB\fR" 4 1845.ie n .IP "\fB\fB""ESC [ Pm l""\fB\fR" 4
1826.el .IP "\fB\f(CBESC [ Pm l\fB\fR" 4 1846.el .IP "\fB\f(CBESC [ Pm l\fB\fR" 4
1827.IX Item "ESC [ Pm l" 1847.IX Item "ESC [ Pm l"
1828Reset Mode (\s-1RM\s0) 1848Reset Mode (\s-1RM\s0)
1829.RS 4 1849.RS 4
1833.TS 1853.TS
1834l l . 1854l l .
1835h Insert Mode (SMIR) 1855h Insert Mode (SMIR)
1836l Replace Mode (RMIR) 1856l Replace Mode (RMIR)
1837.TE 1857.TE
1858
1838.PD 0 1859.PD 0
1839.ie n .IP "\fB\fB""Ps = 20""\fB\fR (partially implemented)" 4 1860.ie n .IP "\fB\fB""Ps = 20""\fB\fR (partially implemented)" 4
1840.el .IP "\fB\f(CBPs = 20\fB\fR (partially implemented)" 4 1861.el .IP "\fB\f(CBPs = 20\fB\fR (partially implemented)" 4
1841.IX Item "Ps = 20 (partially implemented)" 1862.IX Item "Ps = 20 (partially implemented)"
1842.TS 1863.TS
1843l l . 1864l l .
1844h Automatic Newline (LNM) 1865h Automatic Newline (LNM)
1845l Normal Linefeed (LNM) 1866l Normal Linefeed (LNM)
1846.TE 1867.TE
1868
1847.RE 1869.RE
1848.RS 4 1870.RS 4
1849.RE 1871.RE
1850.ie n .IP "\fB\fB""ESC [ Pm m""\fB\fR" 4 1872.ie n .IP "\fB\fB""ESC [ Pm m""\fB\fR" 4
1851.el .IP "\fB\f(CBESC [ Pm m\fB\fR" 4 1873.el .IP "\fB\f(CBESC [ Pm m\fB\fR" 4
1880Ps = 95 / 105 fg/bg Bright Magenta 1902Ps = 95 / 105 fg/bg Bright Magenta
1881Ps = 96 / 106 fg/bg Bright Cyan 1903Ps = 96 / 106 fg/bg Bright Cyan
1882Ps = 97 / 107 fg/bg Bright White 1904Ps = 97 / 107 fg/bg Bright White
1883Ps = 99 / 109 fg/bg Bright Default 1905Ps = 99 / 109 fg/bg Bright Default
1884.TE 1906.TE
1907
1885.ie n .IP "\fB\fB""ESC [ Ps n""\fB\fR" 4 1908.ie n .IP "\fB\fB""ESC [ Ps n""\fB\fR" 4
1886.el .IP "\fB\f(CBESC [ Ps n\fB\fR" 4 1909.el .IP "\fB\f(CBESC [ Ps n\fB\fR" 4
1887.IX Item "ESC [ Ps n" 1910.IX Item "ESC [ Ps n"
1888Device Status Report (\s-1DSR\s0) 1911Device Status Report (\s-1DSR\s0)
1889.TS 1912.TS
1891Ps = 5 Status Report ESC [ 0 n (``OK'') 1914Ps = 5 Status Report ESC [ 0 n (``OK'')
1892Ps = 6 Report Cursor Position (CPR) [row;column] as ESC [ r ; c R 1915Ps = 6 Report Cursor Position (CPR) [row;column] as ESC [ r ; c R
1893Ps = 7 Request Display Name 1916Ps = 7 Request Display Name
1894Ps = 8 Request Version Number (place in window title) 1917Ps = 8 Request Version Number (place in window title)
1895.TE 1918.TE
1919
1896.ie n .IP "\fB\fB""ESC [ Ps;Ps r""\fB\fR" 4 1920.ie n .IP "\fB\fB""ESC [ Ps;Ps r""\fB\fR" 4
1897.el .IP "\fB\f(CBESC [ Ps;Ps r\fB\fR" 4 1921.el .IP "\fB\f(CBESC [ Ps;Ps r\fB\fR" 4
1898.IX Item "ESC [ Ps;Ps r" 1922.IX Item "ESC [ Ps;Ps r"
1899Set Scrolling Region [top;bottom] 1923Set Scrolling Region [top;bottom]
1900[default: full size of window] (\s-1CSR\s0) 1924[default: full size of window] (\s-1CSR\s0)
1923Ps = 19 Currently the same as Ps = 18, but responds with Ps = 9 1947Ps = 19 Currently the same as Ps = 18, but responds with Ps = 9
1924Ps = 20 Reports icon label (ESC ] L NAME \234) 1948Ps = 20 Reports icon label (ESC ] L NAME \234)
1925Ps = 21 Reports window title (ESC ] l NAME \234) 1949Ps = 21 Reports window title (ESC ] l NAME \234)
1926Ps = 24.. Set window height to Ps rows 1950Ps = 24.. Set window height to Ps rows
1927.TE 1951.TE
1952
1928.ie n .IP "\fB\fB""ESC [ u""\fB\fR" 4 1953.ie n .IP "\fB\fB""ESC [ u""\fB\fR" 4
1929.el .IP "\fB\f(CBESC [ u\fB\fR" 4 1954.el .IP "\fB\f(CBESC [ u\fB\fR" 4
1930.IX Item "ESC [ u" 1955.IX Item "ESC [ u"
1931Restore Cursor 1956Restore Cursor
1932.ie n .IP "\fB\fB""ESC [ Ps x""\fB\fR" 4 1957.ie n .IP "\fB\fB""ESC [ Ps x""\fB\fR" 4
1965.TS 1990.TS
1966l l . 1991l l .
1967h Application Cursor Keys 1992h Application Cursor Keys
1968l Normal Cursor Keys 1993l Normal Cursor Keys
1969.TE 1994.TE
1995
1970.PD 0 1996.PD 0
1971.ie n .IP "\fB\fB""Pm = 2""\fB\fR (\s-1ANSI/VT52\s0 mode)" 4 1997.ie n .IP "\fB\fB""Pm = 2""\fB\fR (\s-1ANSI/VT52\s0 mode)" 4
1972.el .IP "\fB\f(CBPm = 2\fB\fR (\s-1ANSI/VT52\s0 mode)" 4 1998.el .IP "\fB\f(CBPm = 2\fB\fR (\s-1ANSI/VT52\s0 mode)" 4
1973.IX Item "Pm = 2 (ANSI/VT52 mode)" 1999.IX Item "Pm = 2 (ANSI/VT52 mode)"
1974.TS 2000.TS
1975l l . 2001l l .
1976h Enter VT52 mode 2002h Enter VT52 mode
1977l Enter VT52 mode 2003l Enter VT52 mode
1978.TE 2004.TE
2005
1979.ie n .IP "\fB\fB""Pm = 3""\fB\fR" 4 2006.ie n .IP "\fB\fB""Pm = 3""\fB\fR" 4
1980.el .IP "\fB\f(CBPm = 3\fB\fR" 4 2007.el .IP "\fB\f(CBPm = 3\fB\fR" 4
1981.IX Item "Pm = 3" 2008.IX Item "Pm = 3"
1982.TS 2009.TS
1983l l . 2010l l .
1984h 132 Column Mode (DECCOLM) 2011h 132 Column Mode (DECCOLM)
1985l 80 Column Mode (DECCOLM) 2012l 80 Column Mode (DECCOLM)
1986.TE 2013.TE
2014
1987.ie n .IP "\fB\fB""Pm = 4""\fB\fR" 4 2015.ie n .IP "\fB\fB""Pm = 4""\fB\fR" 4
1988.el .IP "\fB\f(CBPm = 4\fB\fR" 4 2016.el .IP "\fB\f(CBPm = 4\fB\fR" 4
1989.IX Item "Pm = 4" 2017.IX Item "Pm = 4"
1990.TS 2018.TS
1991l l . 2019l l .
1992h Smooth (Slow) Scroll (DECSCLM) 2020h Smooth (Slow) Scroll (DECSCLM)
1993l Jump (Fast) Scroll (DECSCLM) 2021l Jump (Fast) Scroll (DECSCLM)
1994.TE 2022.TE
2023
1995.ie n .IP "\fB\fB""Pm = 5""\fB\fR" 4 2024.ie n .IP "\fB\fB""Pm = 5""\fB\fR" 4
1996.el .IP "\fB\f(CBPm = 5\fB\fR" 4 2025.el .IP "\fB\f(CBPm = 5\fB\fR" 4
1997.IX Item "Pm = 5" 2026.IX Item "Pm = 5"
1998.TS 2027.TS
1999l l . 2028l l .
2000h Reverse Video (DECSCNM) 2029h Reverse Video (DECSCNM)
2001l Normal Video (DECSCNM) 2030l Normal Video (DECSCNM)
2002.TE 2031.TE
2032
2003.ie n .IP "\fB\fB""Pm = 6""\fB\fR" 4 2033.ie n .IP "\fB\fB""Pm = 6""\fB\fR" 4
2004.el .IP "\fB\f(CBPm = 6\fB\fR" 4 2034.el .IP "\fB\f(CBPm = 6\fB\fR" 4
2005.IX Item "Pm = 6" 2035.IX Item "Pm = 6"
2006.TS 2036.TS
2007l l . 2037l l .
2008h Origin Mode (DECOM) 2038h Origin Mode (DECOM)
2009l Normal Cursor Mode (DECOM) 2039l Normal Cursor Mode (DECOM)
2010.TE 2040.TE
2041
2011.ie n .IP "\fB\fB""Pm = 7""\fB\fR" 4 2042.ie n .IP "\fB\fB""Pm = 7""\fB\fR" 4
2012.el .IP "\fB\f(CBPm = 7\fB\fR" 4 2043.el .IP "\fB\f(CBPm = 7\fB\fR" 4
2013.IX Item "Pm = 7" 2044.IX Item "Pm = 7"
2014.TS 2045.TS
2015l l . 2046l l .
2016h Wraparound Mode (DECAWM) 2047h Wraparound Mode (DECAWM)
2017l No Wraparound Mode (DECAWM) 2048l No Wraparound Mode (DECAWM)
2018.TE 2049.TE
2050
2019.ie n .IP "\fB\fB""Pm = 8""\fB\fR \fIunimplemented\fR" 4 2051.ie n .IP "\fB\fB""Pm = 8""\fB\fR \fIunimplemented\fR" 4
2020.el .IP "\fB\f(CBPm = 8\fB\fR \fIunimplemented\fR" 4 2052.el .IP "\fB\f(CBPm = 8\fB\fR \fIunimplemented\fR" 4
2021.IX Item "Pm = 8 unimplemented" 2053.IX Item "Pm = 8 unimplemented"
2022.TS 2054.TS
2023l l . 2055l l .
2024h Auto-repeat Keys (DECARM) 2056h Auto-repeat Keys (DECARM)
2025l No Auto-repeat Keys (DECARM) 2057l No Auto-repeat Keys (DECARM)
2026.TE 2058.TE
2059
2027.ie n .IP "\fB\fB""Pm = 9""\fB\fR X10 XTerm" 4 2060.ie n .IP "\fB\fB""Pm = 9""\fB\fR X10 XTerm" 4
2028.el .IP "\fB\f(CBPm = 9\fB\fR X10 XTerm" 4 2061.el .IP "\fB\f(CBPm = 9\fB\fR X10 XTerm" 4
2029.IX Item "Pm = 9 X10 XTerm" 2062.IX Item "Pm = 9 X10 XTerm"
2030.TS 2063.TS
2031l l . 2064l l .
2032h Send Mouse X & Y on button press. 2065h Send Mouse X & Y on button press.
2033l No mouse reporting. 2066l No mouse reporting.
2034.TE 2067.TE
2068
2035.ie n .IP "\fB\fB""Pm = 25""\fB\fR" 4 2069.ie n .IP "\fB\fB""Pm = 25""\fB\fR" 4
2036.el .IP "\fB\f(CBPm = 25\fB\fR" 4 2070.el .IP "\fB\f(CBPm = 25\fB\fR" 4
2037.IX Item "Pm = 25" 2071.IX Item "Pm = 25"
2038.TS 2072.TS
2039l l . 2073l l .
2040h Visible cursor {cnorm/cvvis} 2074h Visible cursor {cnorm/cvvis}
2041l Invisible cursor {civis} 2075l Invisible cursor {civis}
2042.TE 2076.TE
2077
2043.ie n .IP "\fB\fB""Pm = 30""\fB\fR" 4 2078.ie n .IP "\fB\fB""Pm = 30""\fB\fR" 4
2044.el .IP "\fB\f(CBPm = 30\fB\fR" 4 2079.el .IP "\fB\f(CBPm = 30\fB\fR" 4
2045.IX Item "Pm = 30" 2080.IX Item "Pm = 30"
2046.TS 2081.TS
2047l l . 2082l l .
2048h scrollBar visisble 2083h scrollBar visisble
2049l scrollBar invisisble 2084l scrollBar invisisble
2050.TE 2085.TE
2086
2051.ie n .IP "\fB\fB""Pm = 35""\fB\fR (\fBrxvt\fR)" 4 2087.ie n .IP "\fB\fB""Pm = 35""\fB\fR (\fBrxvt\fR)" 4
2052.el .IP "\fB\f(CBPm = 35\fB\fR (\fBrxvt\fR)" 4 2088.el .IP "\fB\f(CBPm = 35\fB\fR (\fBrxvt\fR)" 4
2053.IX Item "Pm = 35 (rxvt)" 2089.IX Item "Pm = 35 (rxvt)"
2054.TS 2090.TS
2055l l . 2091l l .
2056h Allow XTerm Shift+key sequences 2092h Allow XTerm Shift+key sequences
2057l Disallow XTerm Shift+key sequences 2093l Disallow XTerm Shift+key sequences
2058.TE 2094.TE
2095
2059.ie n .IP "\fB\fB""Pm = 38""\fB\fR \fIunimplemented\fR" 4 2096.ie n .IP "\fB\fB""Pm = 38""\fB\fR \fIunimplemented\fR" 4
2060.el .IP "\fB\f(CBPm = 38\fB\fR \fIunimplemented\fR" 4 2097.el .IP "\fB\f(CBPm = 38\fB\fR \fIunimplemented\fR" 4
2061.IX Item "Pm = 38 unimplemented" 2098.IX Item "Pm = 38 unimplemented"
2062.PD 2099.PD
2063Enter Tektronix Mode (\s-1DECTEK\s0) 2100Enter Tektronix Mode (\s-1DECTEK\s0)
2067.TS 2104.TS
2068l l . 2105l l .
2069h Allow 80/132 Mode 2106h Allow 80/132 Mode
2070l Disallow 80/132 Mode 2107l Disallow 80/132 Mode
2071.TE 2108.TE
2109
2072.PD 0 2110.PD 0
2073.ie n .IP "\fB\fB""Pm = 44""\fB\fR \fIunimplemented\fR" 4 2111.ie n .IP "\fB\fB""Pm = 44""\fB\fR \fIunimplemented\fR" 4
2074.el .IP "\fB\f(CBPm = 44\fB\fR \fIunimplemented\fR" 4 2112.el .IP "\fB\f(CBPm = 44\fB\fR \fIunimplemented\fR" 4
2075.IX Item "Pm = 44 unimplemented" 2113.IX Item "Pm = 44 unimplemented"
2076.TS 2114.TS
2077l l . 2115l l .
2078h Turn On Margin Bell 2116h Turn On Margin Bell
2079l Turn Off Margin Bell 2117l Turn Off Margin Bell
2080.TE 2118.TE
2119
2081.ie n .IP "\fB\fB""Pm = 45""\fB\fR \fIunimplemented\fR" 4 2120.ie n .IP "\fB\fB""Pm = 45""\fB\fR \fIunimplemented\fR" 4
2082.el .IP "\fB\f(CBPm = 45\fB\fR \fIunimplemented\fR" 4 2121.el .IP "\fB\f(CBPm = 45\fB\fR \fIunimplemented\fR" 4
2083.IX Item "Pm = 45 unimplemented" 2122.IX Item "Pm = 45 unimplemented"
2084.TS 2123.TS
2085l l . 2124l l .
2086h Reverse-wraparound Mode 2125h Reverse-wraparound Mode
2087l No Reverse-wraparound Mode 2126l No Reverse-wraparound Mode
2088.TE 2127.TE
2128
2089.ie n .IP "\fB\fB""Pm = 46""\fB\fR \fIunimplemented\fR" 4 2129.ie n .IP "\fB\fB""Pm = 46""\fB\fR \fIunimplemented\fR" 4
2090.el .IP "\fB\f(CBPm = 46\fB\fR \fIunimplemented\fR" 4 2130.el .IP "\fB\f(CBPm = 46\fB\fR \fIunimplemented\fR" 4
2091.IX Item "Pm = 46 unimplemented" 2131.IX Item "Pm = 46 unimplemented"
2092.ie n .IP "\fB\fB""Pm = 47""\fB\fR" 4 2132.ie n .IP "\fB\fB""Pm = 47""\fB\fR" 4
2093.el .IP "\fB\f(CBPm = 47\fB\fR" 4 2133.el .IP "\fB\f(CBPm = 47\fB\fR" 4
2095.TS 2135.TS
2096l l . 2136l l .
2097h Use Alternate Screen Buffer 2137h Use Alternate Screen Buffer
2098l Use Normal Screen Buffer 2138l Use Normal Screen Buffer
2099.TE 2139.TE
2140
2100.PD 2141.PD
2101 2142
2102.IX Xref "Priv66" 2143.IX Xref "Priv66"
2103.ie n .IP "\fB\fB""Pm = 66""\fB\fR" 4 2144.ie n .IP "\fB\fB""Pm = 66""\fB\fR" 4
2104.el .IP "\fB\f(CBPm = 66\fB\fR" 4 2145.el .IP "\fB\f(CBPm = 66\fB\fR" 4
2106.TS 2147.TS
2107l l . 2148l l .
2108h Application Keypad (DECPAM) == ESC = 2149h Application Keypad (DECPAM) == ESC =
2109l Normal Keypad (DECPNM) == ESC > 2150l Normal Keypad (DECPNM) == ESC >
2110.TE 2151.TE
2152
2111.PD 0 2153.PD 0
2112.ie n .IP "\fB\fB""Pm = 67""\fB\fR" 4 2154.ie n .IP "\fB\fB""Pm = 67""\fB\fR" 4
2113.el .IP "\fB\f(CBPm = 67\fB\fR" 4 2155.el .IP "\fB\f(CBPm = 67\fB\fR" 4
2114.IX Item "Pm = 67" 2156.IX Item "Pm = 67"
2115.TS 2157.TS
2116l l . 2158l l .
2117h Backspace key sends BS (DECBKM) 2159h Backspace key sends BS (DECBKM)
2118l Backspace key sends DEL 2160l Backspace key sends DEL
2119.TE 2161.TE
2162
2120.ie n .IP "\fB\fB""Pm = 1000""\fB\fR (X11 XTerm)" 4 2163.ie n .IP "\fB\fB""Pm = 1000""\fB\fR (X11 XTerm)" 4
2121.el .IP "\fB\f(CBPm = 1000\fB\fR (X11 XTerm)" 4 2164.el .IP "\fB\f(CBPm = 1000\fB\fR (X11 XTerm)" 4
2122.IX Item "Pm = 1000 (X11 XTerm)" 2165.IX Item "Pm = 1000 (X11 XTerm)"
2123.TS 2166.TS
2124l l . 2167l l .
2125h Send Mouse X & Y on button press and release. 2168h Send Mouse X & Y on button press and release.
2126l No mouse reporting. 2169l No mouse reporting.
2127.TE 2170.TE
2171
2128.ie n .IP "\fB\fB""Pm = 1001""\fB\fR (X11 XTerm) \fIunimplemented\fR" 4 2172.ie n .IP "\fB\fB""Pm = 1001""\fB\fR (X11 XTerm) \fIunimplemented\fR" 4
2129.el .IP "\fB\f(CBPm = 1001\fB\fR (X11 XTerm) \fIunimplemented\fR" 4 2173.el .IP "\fB\f(CBPm = 1001\fB\fR (X11 XTerm) \fIunimplemented\fR" 4
2130.IX Item "Pm = 1001 (X11 XTerm) unimplemented" 2174.IX Item "Pm = 1001 (X11 XTerm) unimplemented"
2131.TS 2175.TS
2132l l . 2176l l .
2133h Use Hilite Mouse Tracking. 2177h Use Hilite Mouse Tracking.
2134l No mouse reporting. 2178l No mouse reporting.
2135.TE 2179.TE
2180
2136.ie n .IP "\fB\fB""Pm = 1010""\fB\fR (\fBrxvt\fR)" 4 2181.ie n .IP "\fB\fB""Pm = 1010""\fB\fR (\fBrxvt\fR)" 4
2137.el .IP "\fB\f(CBPm = 1010\fB\fR (\fBrxvt\fR)" 4 2182.el .IP "\fB\f(CBPm = 1010\fB\fR (\fBrxvt\fR)" 4
2138.IX Item "Pm = 1010 (rxvt)" 2183.IX Item "Pm = 1010 (rxvt)"
2139.TS 2184.TS
2140l l . 2185l l .
2141h Don't scroll to bottom on TTY output 2186h Don't scroll to bottom on TTY output
2142l Scroll to bottom on TTY output 2187l Scroll to bottom on TTY output
2143.TE 2188.TE
2189
2144.ie n .IP "\fB\fB""Pm = 1011""\fB\fR (\fBrxvt\fR)" 4 2190.ie n .IP "\fB\fB""Pm = 1011""\fB\fR (\fBrxvt\fR)" 4
2145.el .IP "\fB\f(CBPm = 1011\fB\fR (\fBrxvt\fR)" 4 2191.el .IP "\fB\f(CBPm = 1011\fB\fR (\fBrxvt\fR)" 4
2146.IX Item "Pm = 1011 (rxvt)" 2192.IX Item "Pm = 1011 (rxvt)"
2147.TS 2193.TS
2148l l . 2194l l .
2149h Scroll to bottom when a key is pressed 2195h Scroll to bottom when a key is pressed
2150l Don't scroll to bottom when a key is pressed 2196l Don't scroll to bottom when a key is pressed
2151.TE 2197.TE
2198
2152.ie n .IP "\fB\fB""Pm = 1021""\fB\fR (\fBrxvt\fR)" 4 2199.ie n .IP "\fB\fB""Pm = 1021""\fB\fR (\fBrxvt\fR)" 4
2153.el .IP "\fB\f(CBPm = 1021\fB\fR (\fBrxvt\fR)" 4 2200.el .IP "\fB\f(CBPm = 1021\fB\fR (\fBrxvt\fR)" 4
2154.IX Item "Pm = 1021 (rxvt)" 2201.IX Item "Pm = 1021 (rxvt)"
2155.TS 2202.TS
2156l l . 2203l l .
2157h Bold/italic implies high intensity (see option -is) 2204h Bold/italic implies high intensity (see option -is)
2158l Font styles have no effect on intensity (Compile styles) 2205l Font styles have no effect on intensity (Compile styles)
2159.TE 2206.TE
2207
2160.ie n .IP "\fB\fB""Pm = 1047""\fB\fR" 4 2208.ie n .IP "\fB\fB""Pm = 1047""\fB\fR" 4
2161.el .IP "\fB\f(CBPm = 1047\fB\fR" 4 2209.el .IP "\fB\f(CBPm = 1047\fB\fR" 4
2162.IX Item "Pm = 1047" 2210.IX Item "Pm = 1047"
2163.TS 2211.TS
2164l l . 2212l l .
2165h Use Alternate Screen Buffer 2213h Use Alternate Screen Buffer
2166l Use Normal Screen Buffer - clear Alternate Screen Buffer if returning from it 2214l Use Normal Screen Buffer - clear Alternate Screen Buffer if returning from it
2167.TE 2215.TE
2216
2168.ie n .IP "\fB\fB""Pm = 1048""\fB\fR" 4 2217.ie n .IP "\fB\fB""Pm = 1048""\fB\fR" 4
2169.el .IP "\fB\f(CBPm = 1048\fB\fR" 4 2218.el .IP "\fB\f(CBPm = 1048\fB\fR" 4
2170.IX Item "Pm = 1048" 2219.IX Item "Pm = 1048"
2171.TS 2220.TS
2172l l . 2221l l .
2173h Save cursor position 2222h Save cursor position
2174l Restore cursor position 2223l Restore cursor position
2175.TE 2224.TE
2225
2176.ie n .IP "\fB\fB""Pm = 1049""\fB\fR" 4 2226.ie n .IP "\fB\fB""Pm = 1049""\fB\fR" 4
2177.el .IP "\fB\f(CBPm = 1049\fB\fR" 4 2227.el .IP "\fB\f(CBPm = 1049\fB\fR" 4
2178.IX Item "Pm = 1049" 2228.IX Item "Pm = 1049"
2179.TS 2229.TS
2180l l . 2230l l .
2181h Use Alternate Screen Buffer - clear Alternate Screen Buffer if switching to it 2231h Use Alternate Screen Buffer - clear Alternate Screen Buffer if switching to it
2182l Use Normal Screen Buffer 2232l Use Normal Screen Buffer
2183.TE 2233.TE
2234
2184.RE 2235.RE
2185.RS 4 2236.RS 4
2186.RE 2237.RE
2187.PD 2238.PD
2188.PP 2239.PP
2228Ps = 713 Set bold-italic fontset to Pt. Similar to Ps = 50 (Compile styles). 2279Ps = 713 Set bold-italic fontset to Pt. Similar to Ps = 50 (Compile styles).
2229Ps = 720 Move viewing window up by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills). 2280Ps = 720 Move viewing window up by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills).
2230Ps = 721 Move viewing window down by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills). 2281Ps = 721 Move viewing window down by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills).
2231Ps = 777 Call the perl extension with the given string, which should be of the form extension:parameters (Compile perl). 2282Ps = 777 Call the perl extension with the given string, which should be of the form extension:parameters (Compile perl).
2232.TE 2283.TE
2284
2233.SH "XPM" 2285.SH "XPM"
2234.IX Header "XPM" 2286.IX Header "XPM"
2235For the \s-1XPM\s0 XTerm escape sequence \fB\f(CB\*(C`ESC ] 20 ; Pt ST\*(C'\fB\fR then value 2287For the \s-1XPM\s0 XTerm escape sequence \fB\f(CB\*(C`ESC ] 20 ; Pt ST\*(C'\fB\fR then value
2236of \fB\f(CB\*(C`Pt\*(C'\fB\fR can be the name of the background pixmap followed by a 2288of \fB\f(CB\*(C`Pt\*(C'\fB\fR can be the name of the background pixmap followed by a
2237sequence of scaling/positioning commands separated by semi\-colons. The 2289sequence of scaling/positioning commands separated by semi\-colons. The
22950 Button1 pressed 23470 Button1 pressed
22961 Button2 pressed 23481 Button2 pressed
22972 Button3 pressed 23492 Button3 pressed
22983 button released (X11 mouse report) 23503 button released (X11 mouse report)
2299.TE 2351.TE
2352
2300.PP 2353.PP
2301The upper bits of \fB\f(CB\*(C`<b>\*(C'\fB\fR indicate the modifiers when the 2354The upper bits of \fB\f(CB\*(C`<b>\*(C'\fB\fR indicate the modifiers when the
2302button was pressed and are added together (X11 mouse report only): 2355button was pressed and are added together (X11 mouse report only):
2303.ie n .IP "State = \fB\fB""(<b> \- SPACE) & 60""\fB\fR" 4 2356.ie n .IP "State = \fB\fB""(<b> \- SPACE) & 60""\fB\fR" 4
2304.el .IP "State = \fB\f(CB(<b> \- SPACE) & 60\fB\fR" 4 2357.el .IP "State = \fB\f(CB(<b> \- SPACE) & 60\fB\fR" 4
23084 Shift 23614 Shift
23098 Meta 23628 Meta
231016 Control 236316 Control
231132 Double Click (rxvt extension) 236432 Double Click (rxvt extension)
2312.TE 2365.TE
2366
2313Col = \fB\f(CB\*(C`<x> \- SPACE\*(C'\fB\fR 2367Col = \fB\f(CB\*(C`<x> \- SPACE\*(C'\fB\fR
2314.Sp 2368.Sp
2315Row = \fB\f(CB\*(C`<y> \- SPACE\*(C'\fB\fR 2369Row = \fB\f(CB\*(C`<y> \- SPACE\*(C'\fB\fR
2316.SH "Key Codes" 2370.SH "Key Codes"
2317.IX Header "Key Codes" 2371.IX Header "Key Codes"
2381XK_KP_6 6 ESC O v 2435XK_KP_6 6 ESC O v
2382XK_KP_7 7 ESC O w 2436XK_KP_7 7 ESC O w
2383XK_KP_8 8 ESC O x 2437XK_KP_8 8 ESC O x
2384XK_KP_9 9 ESC O y 2438XK_KP_9 9 ESC O y
2385.TE 2439.TE
2440
2386.SH "CONFIGURE OPTIONS" 2441.SH "CONFIGURE OPTIONS"
2387.IX Header "CONFIGURE OPTIONS" 2442.IX Header "CONFIGURE OPTIONS"
2388General hint: if you get compile errors, then likely your configuration 2443General hint: if you get compile errors, then likely your configuration
2389hasn't been tested well. Either try with \f(CW\*(C`\-\-enable\-everything\*(C'\fR or use 2444hasn't been tested well. Either try with \f(CW\*(C`\-\-enable\-everything\*(C'\fR or use
2390the \fI./reconf\fR script as a base for experiments. \fI./reconf\fR is used by 2445the \fI./reconf\fR script as a base for experiments. \fI./reconf\fR is used by
2428zh_ext rarely used but very big chinese encodigs 2483zh_ext rarely used but very big chinese encodigs
2429jp common japanese encodings 2484jp common japanese encodings
2430jp_ext rarely used but big japanese encodings 2485jp_ext rarely used but big japanese encodings
2431kr korean encodings 2486kr korean encodings
2432.TE 2487.TE
2488
2433.IP "\-\-enable\-xim (default: on)" 4 2489.IP "\-\-enable\-xim (default: on)" 4
2434.IX Item "--enable-xim (default: on)" 2490.IX Item "--enable-xim (default: on)"
2435Add support for \s-1XIM\s0 (X Input Method) protocol. This allows using 2491Add support for \s-1XIM\s0 (X Input Method) protocol. This allows using
2436alternative input methods (e.g. kinput2) and will also correctly 2492alternative input methods (e.g. kinput2) and will also correctly
2437set up the input for people using dead keys or compose keys. 2493set up the input for people using dead keys or compose keys.
2545disable this. 2601disable this.
2546.Sp 2602.Sp
2547A non-exhaustive list of features enabled by \f(CW\*(C`\-\-enable\-frills\*(C'\fR (possibly 2603A non-exhaustive list of features enabled by \f(CW\*(C`\-\-enable\-frills\*(C'\fR (possibly
2548in combination with other switches) is: 2604in combination with other switches) is:
2549.Sp 2605.Sp
2550.Vb 10 2606.Vb 16
2551\& MWM\-hints 2607\& MWM-hints
2552\& EWMH\-hints (pid, utf8 names) and protocols (ping) 2608\& EWMH-hints (pid, utf8 names) and protocols (ping)
2553\& seperate underline colour (\-underlineColor) 2609\& seperate underline colour (-underlineColor)
2554\& settable border widths and borderless switch (\-w, \-b, \-bl) 2610\& settable border widths and borderless switch (-w, -b, -bl)
2555\& visual depth selection (\-depth) 2611\& visual depth selection (-depth)
2556\& settable extra linespacing /\-lsp) 2612\& settable extra linespacing /-lsp)
2557\& iso\-14755\-2 and \-3, and visual feedback 2613\& iso-14755-2 and -3, and visual feedback
2558\& tripleclickwords (\-tcw) 2614\& tripleclickwords (-tcw)
2559\& settable insecure mode (\-insecure) 2615\& settable insecure mode (-insecure)
2560\& keysym remapping support 2616\& keysym remapping support
2561\& cursor blinking and underline cursor (\-cb, \-uc) 2617\& cursor blinking and underline cursor (-cb, -uc)
2562\& XEmbed support (\-embed) 2618\& XEmbed support (-embed)
2563\& user\-pty (\-pty\-fd) 2619\& user-pty (-pty-fd)
2564\& hold on exit (\-hold) 2620\& hold on exit (-hold)
2565\& skip builtin block graphics (\-sbg) 2621\& skip builtin block graphics (-sbg)
2566\& separate highlightcolor support (\-hc) 2622\& separate highlightcolor support (-hc)
2567.Ve 2623.Ve
2568.Sp 2624.Sp
2569It also enables some non-essential features otherwise disabled, such as: 2625It also enables some non-essential features otherwise disabled, such as:
2570.Sp 2626.Sp
2571.Vb 11 2627.Vb 11
2572\& some round\-trip time optimisations 2628\& some round-trip time optimisations
2573\& nearest color allocation on pseudocolor screens 2629\& nearest color allocation on pseudocolor screens
2574\& UTF8_STRING supporr for selection 2630\& UTF8_STRING supporr for selection
2575\& sgr modes 90..97 and 100..107 2631\& sgr modes 90..97 and 100..107
2576\& backindex and forwardindex escape sequences 2632\& backindex and forwardindex escape sequences
2577\& view change/zero scorllback esacpe sequences 2633\& view change/zero scorllback esacpe sequences
2658.IX Header "AUTHORS" 2714.IX Header "AUTHORS"
2659Marc Lehmann <rxvt@schmorp.de> converted this document to pod and 2715Marc Lehmann <rxvt@schmorp.de> converted this document to pod and
2660reworked it from the original Rxvt documentation, which was done by Geoff 2716reworked it from the original Rxvt documentation, which was done by Geoff
2661Wing <gcw@pobox.com>, who in turn used the XTerm documentation and other 2717Wing <gcw@pobox.com>, who in turn used the XTerm documentation and other
2662sources. 2718sources.
2663.SH "POD ERRORS"
2664.IX Header "POD ERRORS"
2665Hey! \fBThe above document had some coding errors, which are explained below:\fR
2666.IP "Around line 2952:" 4
2667.IX Item "Around line 2952:"
2668=back doesn't take any parameters, but you said =back X<Mouse>
2669.IP "Around line 3048:" 4
2670.IX Item "Around line 3048:"
2671=back doesn't take any parameters, but you said =back X<KeyCodes>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines