--- rxvt-unicode/doc/rxvt.7.man.in 2005/01/16 15:59:45 1.2 +++ rxvt-unicode/doc/rxvt.7.man.in 2006/01/16 14:48:39 1.46 @@ -38,8 +38,8 @@ . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" -. ds C` -. ds C' +. ds C` "" +. ds C' "" 'br\} .el\{\ . ds -- \|\(em\| @@ -129,15 +129,227 @@ .\" ======================================================================== .\" .IX Title "rxvt 7" -.TH rxvt 7 "2005-01-16" "4.8" "RXVT-UNICODE" +.TH rxvt 7 "2006-01-16" "7.0" "RXVT-UNICODE" .SH "NAME" RXVT REFERENCE \- FAQ, command sequences and other background information +.SH "SYNOPSIS" +.IX Header "SYNOPSIS" +.Vb 2 +\& # set a new font set +\& printf '\e33]50;%s\e007' 9x15,xft:Kochi" Mincho" +.Ve +.PP +.Vb 2 +\& # change the locale and tell rxvt-unicode about it +\& export LC_CTYPE=ja_JP.EUC-JP; printf "\e33]701;$LC_CTYPE\e007" +.Ve +.PP +.Vb 2 +\& # set window title +\& printf '\e33]2;%s\e007' "new window title" +.Ve +.SH "DESCRIPTION" +.IX Header "DESCRIPTION" +This document contains the \s-1FAQ\s0, the \s-1RXVT\s0 \s-1TECHNICAL\s0 \s-1REFERENCE\s0 documenting +all escape sequences, and other background information. +.PP +The newest version of this document is +also available on the World Wide Web at +. .SH "FREQUENTLY ASKED QUESTIONS" .IX Header "FREQUENTLY ASKED QUESTIONS" +.IP "The new selection selects pieces that are too big, how can I select single words?" 4 +.IX Item "The new selection selects pieces that are too big, how can I select single words?" +Yes. For example, if you want to select alphanumeric words, you can use +the following resource: +.Sp +.Vb 1 +\& URxvt.selection.pattern-0: ([[:word:]]+) +.Ve +.Sp +If you click more than twice, the selection will be extended +more and more. +.Sp +To get a selection that is very similar to the old code, try this pattern: +.Sp +.Vb 1 +\& URxvt.selection.pattern-0: ([^"&'()*,;<=>?@[\e\e\e\e]^`{|})]+) +.Ve +.Sp +Please also note that the \fILeftClick Shift-LeftClik\fR combination also +selects words like the old code. +.IP "I don't like the new selection/popups/hotkeys/perl, how do I change/disable it?" 4 +.IX Item "I don't like the new selection/popups/hotkeys/perl, how do I change/disable it?" +You can disable the perl extension completely by setting the +\&\fBperl-ext-common\fR resource to the empty string, which also keeps +rxvt-unicode from initialising perl, saving memory. +.Sp +If you only want to disable specific features, you first have to +identify which perl extension is responsible. For this, read the section +\&\fB\s-1PREPACKAGED\s0 \s-1EXTENSIONS\s0\fR in the @@RXVT_NAME@@\fIperl\fR\|(3) manpage. For +example, to disable the \fBselection-popup\fR and \fBoption-popup\fR, specify +this \fBperl-ext-common\fR resource: +.Sp +.Vb 1 +\& URxvt.perl-ext-common: default,-selection-popup,-option-popup +.Ve +.Sp +This will keep the default extensions, but disable the two popup +extensions. Some extensions can also be configured, for example, +scrollback search mode is triggered by \fBM\-s\fR. You can move it to any +other combination either by setting the \fBsearchable-scrollback\fR resource: +.Sp +.Vb 1 +\& URxvt.searchable-scrollback: CM-s +.Ve +.IP "Isn't rxvt supposed to be small? Don't all those features bloat?" 4 +.IX Item "Isn't rxvt supposed to be small? Don't all those features bloat?" +I often get asked about this, and I think, no, they didn't cause extra +bloat. If you compare a minimal rxvt and a minimal urxvt, you can see +that the urxvt binary is larger (due to some encoding tables always being +compiled in), but it actually uses less memory (\s-1RSS\s0) after startup. Even +with \f(CW\*(C`\-\-disable\-everything\*(C'\fR, this comparison is a bit unfair, as many +features unique to urxvt (locale, encoding conversion, iso14755 etc.) are +already in use in this mode. +.Sp +.Vb 3 +\& text data bss drs rss filename +\& 98398 1664 24 15695 1824 rxvt --disable-everything +\& 188985 9048 66616 18222 1788 urxvt --disable-everything +.Ve +.Sp +When you \f(CW\*(C`\-\-enable\-everything\*(C'\fR (which _is_ unfair, as this involves xft +and full locale/XIM support which are quite bloaty inside libX11 and my +libc), the two diverge, but not unreasnobaly so. +.Sp +.Vb 3 +\& text data bss drs rss filename +\& 163431 2152 24 20123 2060 rxvt --enable-everything +\& 1035683 49680 66648 29096 3680 urxvt --enable-everything +.Ve +.Sp +The very large size of the text section is explained by the east-asian +encoding tables, which, if unused, take up disk space but nothing else +and can be compiled out unless you rely on X11 core fonts that use those +encodings. The \s-1BSS\s0 size comes from the 64k emergency buffer that my c++ +compiler allocates (but of course doesn't use unless you are out of +memory). Also, using an xft font instead of a core font immediately adds a +few megabytes of \s-1RSS\s0. Xft indeed is responsible for a lot of \s-1RSS\s0 even when +not used. +.Sp +Of course, due to every character using two or four bytes instead of one, +a large scrollback buffer will ultimately make rxvt-unicode use more +memory. +.Sp +Compared to e.g. Eterm (5112k), aterm (3132k) and xterm (4680k), this +still fares rather well. And compared to some monsters like gnome-terminal +(21152k + extra 4204k in separate processes) or konsole (22200k + extra +43180k in daemons that stay around after exit, plus half a minute of +startup time, including the hundreds of warnings it spits out), it fares +extremely well *g*. +.IP "Why \*(C+, isn't that unportable/bloated/uncool?" 4 +.IX Item "Why , isn't that unportable/bloated/uncool?" +Is this a question? :) It comes up very often. The simple answer is: I had +to write it, and \*(C+ allowed me to write and maintain it in a fraction +of the time and effort (which is a scarce resource for me). Put even +shorter: It simply wouldn't exist without \*(C+. +.Sp +My personal stance on this is that \*(C+ is less portable than C, but in +the case of rxvt-unicode this hardly matters, as its portability limits +are defined by things like X11, pseudo terminals, locale support and unix +domain sockets, which are all less portable than \*(C+ itself. +.Sp +Regarding the bloat, see the above question: It's easy to write programs +in C that use gobs of memory, an certainly possible to write programs in +\&\*(C+ that don't. \*(C+ also often comes with large libraries, but this is +not necessarily the case with \s-1GCC\s0. Here is what rxvt links against on my +system with a minimal config: +.Sp +.Vb 4 +\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000) +\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaadde000) +\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab01d000) +\& /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000) +.Ve +.Sp +And here is rxvt\-unicode: +.Sp +.Vb 5 +\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000) +\& libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00002aaaaada2000) +\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaaeb0000) +\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab0ee000) +\& /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000) +.Ve +.Sp +No large bloated libraries (of course, none were linked in statically), +except maybe libX11 :) +.IP "Does it support tabs, can I have a tabbed rxvt\-unicode?" 4 +.IX Item "Does it support tabs, can I have a tabbed rxvt-unicode?" +rxvt-unicode does not directly support tabs. It will work fine with +tabbing functionality of many window managers or similar tabbing programs, +and its embedding-features allow it to be embedded into other programs, +as witnessed by \fIdoc/rxvt\-tabbed\fR or the upcoming \f(CW\*(C`Gtk2::URxvt\*(C'\fR perl +module, which features a tabbed urxvt (murxvt) terminal as an example +embedding application. .IP "How do I know which rxvt-unicode version I'm using?" 4 .IX Item "How do I know which rxvt-unicode version I'm using?" The version number is displayed with the usage (\-h). Also the escape -sequence \f(CW\*(C`ESC[8n\*(C'\fR sets the window title to the version number. +sequence \f(CW\*(C`ESC [ 8 n\*(C'\fR sets the window title to the version number. When +using the @@RXVT_NAME@@c client, the version displayed is that of the +daemon. +.IP "I am using Debian GNU/Linux and have a problem..." 4 +.IX Item "I am using Debian GNU/Linux and have a problem..." +The Debian GNU/Linux package of rxvt-unicode in sarge contains large +patches that considerably change the behaviour of rxvt\-unicode. Before +reporting a bug to the original rxvt-unicode author please download and +install the genuine version () +and try to reproduce the problem. If you cannot, chances are that the +problems are specific to Debian GNU/Linux, in which case it should be +reported via the Debian Bug Tracking System (use \f(CW\*(C`reportbug\*(C'\fR to report +the bug). +.Sp +For other problems that also affect the Debian package, you can and +probably should use the Debian \s-1BTS\s0, too, because, after all, it's also a +bug in the Debian version and it serves as a reminder for other users that +might encounter the same issue. +.IP "I am maintaining rxvt-unicode for distribution/OS \s-1XXX\s0, any recommendation?" 4 +.IX Item "I am maintaining rxvt-unicode for distribution/OS XXX, any recommendation?" +You should build one binary with the default options. \fIconfigure\fR +now enables most useful options, and the trend goes to making them +runtime\-switchable, too, so there is usually no drawback to enbaling them, +except higher disk and possibly memory usage. The perl interpreter should +be enabled, as important functionality (menus, selection, likely more in +the future) depends on it. +.Sp +You should not overwrite the \f(CW\*(C`perl\-ext\-common\*(C'\fR snd \f(CW\*(C`perl\-ext\*(C'\fR resources +system-wide (except maybe with \f(CW\*(C`defaults\*(C'\fR). This will result in useful +behaviour. If your distribution aims at low memory, add an empty +\&\f(CW\*(C`perl\-ext\-common\*(C'\fR resource to the app-defaults file. This will keep the +perl interpreter disabled until the user enables it. +.Sp +If you can/want build more binaries, I recommend building a minimal +one with \f(CW\*(C`\-\-disable\-everything\*(C'\fR (very useful) and a maximal one with +\&\f(CW\*(C`\-\-enable\-everything\*(C'\fR (less useful, it will be very big due to a lot of +encodings built-in that increase download times and are rarely used). +.IP "I need to make it setuid/setgid to support utmp/ptys on my \s-1OS\s0, is this safe?" 4 +.IX Item "I need to make it setuid/setgid to support utmp/ptys on my OS, is this safe?" +Likely not. While I honestly try to make it secure, and am probably not +bad at it, I think it is simply unreasonable to expect all of freetype ++ fontconfig + xft + xlib + perl + ... + rxvt-unicode itself to all be +secure. Also, rxvt-unicode disables some options when it detects that it +runs setuid or setgid, which is not nice. Besides, with the embedded perl +interpreter the possibility for security problems easily multiplies. +.Sp +Elevated privileges are only required for utmp and pty operations on some +systems (for example, GNU/Linux doesn't need any extra privileges for +ptys, but some need it for utmp support). It is planned to mvoe this into +a forked handler process, but this is not yet done. +.Sp +So, while setuid/setgid operation is supported and not a problem on your +typical single-user-no-other-logins unix desktop, always remember that +its an awful lot of code, most of which isn't checked for security issues +regularly. .IP "When I log-in to another system it tells me about missing terminfo data?" 4 .IX Item "When I log-in to another system it tells me about missing terminfo data?" The terminal description used by rxvt-unicode is not as widely available @@ -159,8 +371,9 @@ colours and some refresh errors in fullscreen applications. It's a nice quick-and-dirty workaround for rare cases, though. .Sp -If you always want to do this you can either recompile rxvt-unicode with -the desired \s-1TERM\s0 value or use a resource to set it: +If you always want to do this (and are fine with the consequences) you +can either recompile rxvt-unicode with the desired \s-1TERM\s0 value or use a +resource to set it: .Sp .Vb 1 \& URxvt.termName: rxvt @@ -168,8 +381,23 @@ .Sp If you don't plan to use \fBrxvt\fR (quite common...) you could also replace the rxvt terminfo file with the rxvt-unicode one. +.ie n .IP """tic"" outputs some error when compiling the terminfo entry." 4 +.el .IP "\f(CWtic\fR outputs some error when compiling the terminfo entry." 4 +.IX Item "tic outputs some error when compiling the terminfo entry." +Most likely it's the empty definition for \f(CW\*(C`enacs=\*(C'\fR. Just replace it by +\&\f(CW\*(C`enacs=\eE[0@\*(C'\fR and try again. +.ie n .IP """bash""'s readline does not work correctly under @@RXVT_NAME@@." 4 +.el .IP "\f(CWbash\fR's readline does not work correctly under @@RXVT_NAME@@." 4 +.IX Item "bash's readline does not work correctly under @@RXVT_NAME@@." +.PD 0 .IP "I need a termcap file entry." 4 .IX Item "I need a termcap file entry." +.PD +One reason you might want this is that some distributions or operating +systems still compile some programs using the long-obsoleted termcap +library (Fedora Core's bash is one example) and rely on a termcap entry +for \f(CW\*(C`rxvt\-unicode\*(C'\fR. +.Sp You could use rxvt's termcap entry with resonable results in many cases. You can also create a termcap entry by using terminfo's infocmp program like this: @@ -178,31 +406,32 @@ \& infocmp -C rxvt-unicode .Ve .Sp -\&\s-1OR\s0 you could this termcap entry: +Or you could use this termcap entry, generated by the command above: .Sp -.Vb 19 +.Vb 20 \& rxvt-unicode|rxvt-unicode terminal (X Window System):\e \& :am:bw:eo:km:mi:ms:xn:xo:\e -\& :co#80:it#8:li#24:\e +\& :co#80:it#8:li#24:lm#0:\e \& :AL=\eE[%dL:DC=\eE[%dP:DL=\eE[%dM:DO=\eE[%dB:IC=\eE[%d@:\e \& :K1=\eEOw:K2=\eEOu:K3=\eEOy:K4=\eEOq:K5=\eEOs:LE=\eE[%dD:\e -\& :RI=\eE[%dC:SF=\eE[%dS:SR=\eE[%dT:UP=\eE[%dA:ae=^O:al=\eE[L:\e -\& :as=^N:bl=^G:cd=\eE[J:ce=\eE[K:cl=\eE[H\eE[2J:cm=\eE[%i%d;%dH:\e -\& :cr=^M:cs=\eE[%i%d;%dr:ct=\eE[3g:dc=\eE[P:dl=\eE[M:do=^J:\e -\& :ec=\eE[%dX:ei=\eE[4l:ho=\eE[H:i1=\eE[?47l\eE=\eE[?1l:ic=\eE[@:\e -\& :im=\eE[4h:is=\eE[r\eE[m\eE[2J\eE[H\eE[?7h\eE[?1;3;4;6l\eE[4l:\e -\& :k0=\eE[21~:k1=\eE[11~:k2=\eE[12~:k3=\eE[13~:k4=\eE[14~:\e -\& :k5=\eE[15~:k6=\eE[17~:k7=\eE[18~:k8=\eE[19~:k9=\eE[20~:\e -\& :kD=\eE[3~:kI=\eE[2~:kN=\eE[6~:kP=\eE[5~:kb=\e177:kd=\eEOB:\e -\& :ke=\eE[?1l\eE>:kh=\eE[7~:kl=\eEOD:kr=\eEOC:ks=\eE[?1h\eE=:\e -\& :ku=\eEOA:le=^H:mb=\eE[5m:md=\eE[1m:me=\eE[m\e017:mr=\eE[7m:\e -\& :nd=\eE[C:rc=\eE8:sc=\eE7:se=\eE[27m:sf=^J:so=\eE[7m:sr=\eEM:\e -\& :st=\eEH:ta=^I:te=\eE[r\eE[?1049l:ti=\eE[?1049h:ue=\eE[24m:\e -\& :up=\eE[A:us=\eE[4m:vb=\eE[?5h\eE[?5l:ve=\eE[?25h:vi=\eE[?25l:\e +\& :RI=\eE[%dC:SF=\eE[%dS:SR=\eE[%dT:UP=\eE[%dA:ae=\eE(B:al=\eE[L:\e +\& :as=\eE(0:bl=^G:cd=\eE[J:ce=\eE[K:cl=\eE[H\eE[2J:\e +\& :cm=\eE[%i%d;%dH:cr=^M:cs=\eE[%i%d;%dr:ct=\eE[3g:dc=\eE[P:\e +\& :dl=\eE[M:do=^J:ec=\eE[%dX:ei=\eE[4l:ho=\eE[H:\e +\& :i1=\eE[?47l\eE=\eE[?1l:ic=\eE[@:im=\eE[4h:\e +\& :is=\eE[r\eE[m\eE[2J\eE[H\eE[?7h\eE[?1;3;4;6l\eE[4l:\e +\& :k1=\eE[11~:k2=\eE[12~:k3=\eE[13~:k4=\eE[14~:k5=\eE[15~:\e +\& :k6=\eE[17~:k7=\eE[18~:k8=\eE[19~:k9=\eE[20~:kD=\eE[3~:\e +\& :kI=\eE[2~:kN=\eE[6~:kP=\eE[5~:kb=\e177:kd=\eEOB:ke=\eE[?1l\eE>:\e +\& :kh=\eE[7~:kl=\eEOD:kr=\eEOC:ks=\eE[?1h\eE=:ku=\eEOA:le=^H:\e +\& :mb=\eE[5m:md=\eE[1m:me=\eE[m\e017:mr=\eE[7m:nd=\eE[C:rc=\eE8:\e +\& :sc=\eE7:se=\eE[27m:sf=^J:so=\eE[7m:sr=\eEM:st=\eEH:ta=^I:\e +\& :te=\eE[r\eE[?1049l:ti=\eE[?1049h:ue=\eE[24m:up=\eE[A:\e +\& :us=\eE[4m:vb=\eE[?5h\eE[?5l:ve=\eE[?25h:vi=\eE[?25l:\e \& :vs=\eE[?25h: .Ve -.ie n .IP "Why does \*(C`ls\*(C' no longer have coloured output?" 4 -.el .IP "Why does \f(CW\*(C`ls\*(C'\fR no longer have coloured output?" 4 +.ie n .IP "Why does ""ls"" no longer have coloured output?" 4 +.el .IP "Why does \f(CWls\fR no longer have coloured output?" 4 .IX Item "Why does ls no longer have coloured output?" The \f(CW\*(C`ls\*(C'\fR in the \s-1GNU\s0 coreutils unfortunately doesn't use terminfo to decide wether a terminal has colour, but uses it's own configuration @@ -236,6 +465,14 @@ file, so you will need to install it on your own (See the question \fBWhen I log-in to another system it tells me about missing terminfo data?\fR on how to do this). +.IP "My numerical keypad acts weird and generates differing output?" 4 +.IX Item "My numerical keypad acts weird and generates differing output?" +Some Debian GNUL/Linux users seem to have this problem, although no +specific details were reported so far. It is possible that this is caused +by the wrong \f(CW\*(C`TERM\*(C'\fR setting, although the details of wether and how +this can happen are unknown, as \f(CW\*(C`TERM=rxvt\*(C'\fR should offer a compatible +keymap. See the answer to the previous question, and please report if that +helped. .IP "Rxvt-unicode does not seem to understand the selected encoding?" 4 .IX Item "Rxvt-unicode does not seem to understand the selected encoding?" .PD 0 @@ -249,7 +486,7 @@ Rxvt-unicode must be started with the same \f(CW\*(C`LC_CTYPE\*(C'\fR setting as the programs. Often rxvt-unicode is started in the \f(CW\*(C`C\*(C'\fR locale, while the login script running within the rxvt-unicode window changes the locale to -sth. else, e.h. \f(CW\*(C`en_GB.UTF\-8\*(C'\fR. Needless to say, this is not going to work. +something else, e.g. \f(CW\*(C`en_GB.UTF\-8\*(C'\fR. Needless to say, this is not going to work. .Sp The best thing is to fix your startup environment, as you will likely run into other problems. If nothing works you can try this in your .profile. @@ -260,7 +497,9 @@ .Sp If this doesn't work, then maybe you use a \f(CW\*(C`LC_CTYPE\*(C'\fR specification not supported on your systems. Some systems have a \f(CW\*(C`locale\*(C'\fR command which -displays this. If it displays sth. like: +displays this (also, \f(CW\*(C`perl \-e0\*(C'\fR can be used to check locale settings, as +it will complain loudly if it cannot set the locale). If it displays something +like: .Sp .Vb 1 \& locale: Cannot set LC_CTYPE to default locale: ... @@ -284,10 +523,10 @@ .Sp \&\fBrxvt-unicode\fR makes a best-effort try at finding a replacement font. Often the result is fine, but sometimes the chosen font looks -bad. Many fonts have totally strange characters that don't resemble the -correct glyph at all, and rxvt-unicode lacks the artificial intelligence -to detect that a specific glyph is wrong: it has to believe the font that -the characters it contains indeed look correct. +bad/ugly/wrong. Some fonts have totally strange characters that don't +resemble the correct glyph at all, and rxvt-unicode lacks the artificial +intelligence to detect that a specific glyph is wrong: it has to believe +the font that the characters it claims to contain indeed look correct. .Sp In that case, select a font of your taste and add it to the font list, e.g.: @@ -301,30 +540,32 @@ next font, and so on. Specifying your own fonts will also speed up this search and use less resources within rxvt-unicode and the X\-server. .Sp -The only limitation is that all the fonts must not be larger than the base -font, as the base font defines the principal cell size, which must be the -same due to the way terminals work. +The only limitation is that none of the fonts may be larger than the base +font, as the base font defines the terminal character cell size, which +must be the same due to the way terminals work. .IP "Why do some chinese characters look so different than others?" 4 .IX Item "Why do some chinese characters look so different than others?" This is because there is a difference between script and language \*(-- -rxvt-unicode does not know which language the text that is output -is, as it only knows the unicode character codes. If rxvt-unicode -first sees a japanese character, it might choose a japanese font for -it. Subsequent japanese characters will take that font. Now, many chinese -characters aren't represented in japanese fonts, so when the first +rxvt-unicode does not know which language the text that is output is, +as it only knows the unicode character codes. If rxvt-unicode first +sees a japanese/chinese character, it might choose a japanese font for +display. Subsequent japanese characters will use that font. Now, many +chinese characters aren't represented in japanese fonts, so when the first non-japanese character comes up, rxvt-unicode will look for a chinese font \&\*(-- unfortunately at this point, it will still use the japanese font for -japanese characters that are also chinese. +chinese characters that are also in the japanese font. .Sp The workaround is easy: just tag a chinese font at the end of your font list (see the previous question). The key is to view the font list as a preference list: If you expect more japanese, list a japanese font first. If you expect more chinese, put a chinese font first. .Sp -In the future it might be possible to switch preferences at runtime (the -internal data structure has no problem with using different fonts for -the same character at the same time, but no interface for this has been -designed yet). +In the future it might be possible to switch language preferences at +runtime (the internal data structure has no problem with using different +fonts for the same character at the same time, but no interface for this +has been designed yet). +.Sp +Until then, you might get away with switching fonts at runtime (see \*(L"Can I switch the fonts at runtime?\*(R" later in this document). .IP "Why does rxvt-unicode sometimes leave pixel droppings?" 4 .IX Item "Why does rxvt-unicode sometimes leave pixel droppings?" Most fonts were not designed for terminal use, which means that character @@ -346,6 +587,15 @@ .Sp All of this is not a problem when using X11 core fonts, as their bounding box data is correct. +.IP "On Solaris 9, many line-drawing characters are too wide." 4 +.IX Item "On Solaris 9, many line-drawing characters are too wide." +Seems to be a known bug, read +. Some people use the +following ugly workaround to get non-double-wide-characters working: +.Sp +.Vb 1 +\& #define wcwidth(x) wcwidth(x) > 1 ? 1 : wcwidth(x) +.Ve .IP "My Compose (Multi_key) key is no longer working." 4 .IX Item "My Compose (Multi_key) key is no longer working." The most common causes for this are that either your locale is not set @@ -357,8 +607,8 @@ .Sp In this case either do not specify a \fBpreeditStyle\fR or specify more than one pre-edit style, such as \fBOverTheSpot,Root,None\fR. -.ie n .IP "I cannot type \*(C`Ctrl\-Shift\-2\*(C' to get an \s-1ASCII\s0 \s-1NUL\s0 character due to \s-1ISO\s0 14755" 4 -.el .IP "I cannot type \f(CW\*(C`Ctrl\-Shift\-2\*(C'\fR to get an \s-1ASCII\s0 \s-1NUL\s0 character due to \s-1ISO\s0 14755" 4 +.ie n .IP "I cannot type ""Ctrl\-Shift\-2"" to get an \s-1ASCII\s0 \s-1NUL\s0 character due to \s-1ISO\s0 14755" 4 +.el .IP "I cannot type \f(CWCtrl\-Shift\-2\fR to get an \s-1ASCII\s0 \s-1NUL\s0 character due to \s-1ISO\s0 14755" 4 .IX Item "I cannot type Ctrl-Shift-2 to get an ASCII NUL character due to ISO 14755" Either try \f(CW\*(C`Ctrl\-2\*(C'\fR alone (it often is mapped to \s-1ASCII\s0 \s-1NUL\s0 even on international keyboards) or simply use \s-1ISO\s0 14755 support to your @@ -367,26 +617,25 @@ character and so on. .IP "How can I keep rxvt-unicode from using reverse video so much?" 4 .IX Item "How can I keep rxvt-unicode from using reverse video so much?" -First of all, make sure you are running with the right terminfo -(\f(CW\*(C`urxvt\*(C'\fR), which will get rid of most of these effects. Then make sure -you have specified colours for italic and bold, as otherwise rxvt-unicode -might use reverse video to simulate the effect: +First of all, make sure you are running with the right terminal settings +(\f(CW\*(C`TERM=rxvt\-unicode\*(C'\fR), which will get rid of most of these effects. Then +make sure you have specified colours for italic and bold, as otherwise +rxvt-unicode might use reverse video to simulate the effect: .Sp .Vb 2 -\& URxvt*colorBD: white -\& URxvt*colorIT: green +\& URxvt.colorBD: white +\& URxvt.colorIT: green .Ve .IP "Some programs assume totally weird colours (red instead of blue), how can I fix that?" 4 .IX Item "Some programs assume totally weird colours (red instead of blue), how can I fix that?" -For some unexplainable reason, some programs (i.e. irssi) assume a very -weird colour palette when confronted with a terminal with more than the -standard 8 colours (rxvt\-unicode supports 88). The right fix is, of -course, to fix these programs not to assume non-ISO colours without very -good reasons. -.Sp -In the meantime, you can either edit your \f(CW\*(C`urxvt\*(C'\fR terminfo definition to -only claim 8 colour support or use \f(CW\*(C`TERM=rxvt\*(C'\fR, which will fix colours -but keep you from using other rxvt-unicode features. +For some unexplainable reason, some rare programs assume a very weird +colour palette when confronted with a terminal with more than the standard +8 colours (rxvt\-unicode supports 88). The right fix is, of course, to fix +these programs not to assume non-ISO colours without very good reasons. +.Sp +In the meantime, you can either edit your \f(CW\*(C`rxvt\-unicode\*(C'\fR terminfo +definition to only claim 8 colour support or use \f(CW\*(C`TERM=rxvt\*(C'\fR, which will +fix colours but keep you from using other rxvt-unicode features. .IP "I am on FreeBSD and rxvt-unicode does not seem to work at all." 4 .IX Item "I am on FreeBSD and rxvt-unicode does not seem to work at all." Rxvt-unicode requires the symbol \f(CW\*(C`_\|_STDC_ISO_10646_\|_\*(C'\fR to be defined @@ -396,15 +645,18 @@ .Sp As you might have guessed, FreeBSD does neither define this symobl nor does it support it. Instead, it uses it's own internal representation of -\&\fBwchar_t\fR. This is, of course, completely legal. +\&\fBwchar_t\fR. This is, of course, completely fine with respect to standards. .Sp -However, \f(CW\*(C`_\|_STDC_ISO_10646_\|_\*(C'\fR is the only sane way to support -multi-language apps in an \s-1OS\s0, as using a locale-dependent (and -non\-standardized) representation of \fBwchar_t\fR makes it impossible to -convert between \fBwchar_t\fR (as used by X11 and your applications) and any -other encoding without implementing OS-specific-wrappers for each and -every locale. There simply are no APIs to convert \fBwchar_t\fR into anything -except the current locale encoding. +However, that means rxvt-unicode only works in \f(CW\*(C`POSIX\*(C'\fR, \f(CW\*(C`ISO\-8859\-1\*(C'\fR and +\&\f(CW\*(C`UTF\-8\*(C'\fR locales under FreeBSD (which all use Unicode as \fBwchar_t\fR. +.Sp +\&\f(CW\*(C`_\|_STDC_ISO_10646_\|_\*(C'\fR is the only sane way to support multi-language +apps in an \s-1OS\s0, as using a locale-dependent (and non\-standardized) +representation of \fBwchar_t\fR makes it impossible to convert between +\&\fBwchar_t\fR (as used by X11 and your applications) and any other encoding +without implementing OS-specific-wrappers for each and every locale. There +simply are no APIs to convert \fBwchar_t\fR into anything except the current +locale encoding. .Sp Some applications (such as the formidable \fBmlterm\fR) work around this by carrying their own replacement functions for character set handling @@ -414,7 +666,23 @@ .Sp The rxvt-unicode author insists that the right way to fix this is in the system libraries once and for all, instead of forcing every app to carry -complete replacements. +complete replacements for them :) +.IP "I use Solaris 9 and it doesn't compile/work/etc." 4 +.IX Item "I use Solaris 9 and it doesn't compile/work/etc." +Try the diff in \fIdoc/solaris9.patch\fR as a base. It fixes the worst +problems with \f(CW\*(C`wcwidth\*(C'\fR and a compile problem. +.IP "How can I use rxvt-unicode under cygwin?" 4 +.IX Item "How can I use rxvt-unicode under cygwin?" +rxvt-unicode should compile and run out of the box on cygwin, using +the X11 libraries that come with cygwin. libW11 emulation is no +longer supported (and makes no sense, either, as it only supported a +single font). I recommend starting the X\-server in \f(CW\*(C`\-multiwindow\*(C'\fR or +\&\f(CW\*(C`\-rootless\*(C'\fR mode instead, which will result in similar look&feel as the +old libW11 emulation. +.Sp +At the time of this writing, cygwin didn't seem to support any multi-byte +encodings (you might try \f(CW\*(C`LC_CTYPE=C\-UTF\-8\*(C'\fR), so you are likely limited +to 8\-bit encodings. .IP "How does rxvt-unicode determine the encoding to use?" 4 .IX Item "How does rxvt-unicode determine the encoding to use?" .PD 0 @@ -427,8 +695,11 @@ .Sp The reasons is that there exists a perfectly fine mechanism for selecting the encoding, doing I/O and (most important) communicating this to all -applications so everybody agrees on character properties such as width and -code number. This mechanism is the \fIlocale\fR. +applications so everybody agrees on character properties such as width +and code number. This mechanism is the \fIlocale\fR. Applications not using +that info will have problems (for example, \f(CW\*(C`xterm\*(C'\fR gets the width of +characters wrong as it uses it's own, locale-independent table under all +locales). .Sp Rxvt-unicode uses the \f(CW\*(C`LC_CTYPE\*(C'\fR locale category to select encoding. All programs doing the same (that is, most) will automatically agree in the @@ -445,34 +716,39 @@ .Sp Rxvt-unicode ignores all other locale categories, and except for the encoding, ignores country or language-specific settings, -i.e. \f(CW\*(C`de_DE.UTF\-8\*(C'\fR and \f(CW\*(C`ja_JP.UTF\-8\*(C'\fR are the same for rxvt\-unicode. +i.e. \f(CW\*(C`de_DE.UTF\-8\*(C'\fR and \f(CW\*(C`ja_JP.UTF\-8\*(C'\fR are the normally same to +rxvt\-unicode. .Sp If you want to use a specific encoding you have to make sure you start rxvt-unicode with the correct \f(CW\*(C`LC_CTYPE\*(C'\fR category. .IP "Can I switch locales at runtime?" 4 .IX Item "Can I switch locales at runtime?" -Yes, using an escape sequence. Try sth. like this, which sets +Yes, using an escape sequence. Try something like this, which sets rxvt\-unicode's idea of \f(CW\*(C`LC_CTYPE\*(C'\fR. .Sp .Vb 1 \& printf '\ee]701;%s\e007' ja_JP.SJIS .Ve .Sp -See also the previous question. +See also the previous answer. .Sp -Sometimes this capability is rather handy when you want to work in one -locale (e.g. \f(CW\*(C`de_DE.UTF\-8\*(C'\fR) but some programs don't support \s-1UTF\-8\s0. For -example, I use this script to start \f(CW\*(C`xjdic\*(C'\fR, which first switches to a -locale supported by xjdic and back later: +Sometimes this capability is rather handy when you want to work in +one locale (e.g. \f(CW\*(C`de_DE.UTF\-8\*(C'\fR) but some programs don't support it +(e.g. \s-1UTF\-8\s0). For example, I use this script to start \f(CW\*(C`xjdic\*(C'\fR, which +first switches to a locale supported by xjdic and back later: .Sp .Vb 3 \& printf '\ee]701;%s\e007' ja_JP.SJIS \& xjdic -js \& printf '\ee]701;%s\e007' de_DE.UTF-8 .Ve +.Sp +You can also use xterm's \f(CW\*(C`luit\*(C'\fR program, which usually works fine, except +for some locales where character width differs between program\- and +rxvt\-unicode\-locales. .IP "Can I switch the fonts at runtime?" 4 .IX Item "Can I switch the fonts at runtime?" -Yes, using an escape sequence. Try sth. like this, which has the same +Yes, using an escape sequence. Try something like this, which has the same effect as using the \f(CW\*(C`\-fn\*(C'\fR switch, and takes effect immediately: .Sp .Vb 1 @@ -488,12 +764,12 @@ .IX Item "Why do italic characters look as if clipped?" Many fonts have difficulties with italic characters and hinting. For example, the otherwise very nicely hinted font \f(CW\*(C`xft:Bitstream Vera Sans -Mono\*(C'\fR completely fails in it's italic face. A workaround is to enable -freetype autohinting, i.e. like this: +Mono\*(C'\fR completely fails in it's italic face. A workaround might be to +enable freetype autohinting, i.e. like this: .Sp .Vb 2 -\& URxvt*italicFont: xft:Bitstream Vera Sans Mono:italic:autohint=true -\& URxvt*boldItalicFont: xft:Bitstream Vera Sans Mono:bold:italic:autohint=true +\& URxvt.italicFont: xft:Bitstream Vera Sans Mono:italic:autohint=true +\& URxvt.boldItalicFont: xft:Bitstream Vera Sans Mono:bold:italic:autohint=true .Ve .IP "My input method wants but I want \s-1UTF\-8\s0, what can I do?" 4 .IX Item "My input method wants but I want UTF-8, what can I do?" @@ -508,9 +784,19 @@ use your input method. Please note, however, that you will not be able to input characters outside \f(CW\*(C`EUC\-JP\*(C'\fR in a normal way then, as your input method limits you. +.IP "Rxvt-unicode crashes when the X Input Method changes or exits." 4 +.IX Item "Rxvt-unicode crashes when the X Input Method changes or exits." +Unfortunately, this is unavoidable, as the \s-1XIM\s0 protocol is racy by +design. Applications can avoid some crashes at the expense of memory +leaks, and Input Methods can avoid some crashes by careful ordering at +exit time. \fBkinput2\fR (and derived input methods) generally succeeds, +while \fB\s-1SCIM\s0\fR (or similar input methods) fails. In the end, however, +crashes cannot be completely avoided even if both sides cooperate. +.Sp +So the only workaround is not to kill your Input Method Servers. .IP "Rxvt-unicode uses gobs of memory, how can I reduce that?" 4 .IX Item "Rxvt-unicode uses gobs of memory, how can I reduce that?" -Rxvt-unicode tries to obey the rule of not charging you for sth. you +Rxvt-unicode tries to obey the rule of not charging you for something you don't use. One thing you should try is to configure out all settings that you don't need, for example, Xft support is a resource hog by design, when used. Compiling it out ensures that no Xft font will be loaded @@ -526,7 +812,7 @@ .IX Item "Can I speed up Xft rendering somehow?" Yes, the most obvious way to speed it up is to avoid Xft entirely, as it is simply slow. If you still want Xft fonts you might try to disable -antialiasing (by appending \f(CW\*(C`:antialiasing=false\*(C'\fR), which saves lots of +antialiasing (by appending \f(CW\*(C`:antialias=false\*(C'\fR), which saves lots of memory and also speeds up rendering considerably. .IP "Rxvt-unicode doesn't seem to anti-alias its fonts, what is wrong?" 4 .IX Item "Rxvt-unicode doesn't seem to anti-alias its fonts, what is wrong?" @@ -543,7 +829,7 @@ some editors prematurely may leave the mouse in mouse report mode. I've heard that tcsh may use mouse reporting unless it otherwise specified. A quick check is to see if cut/paste works when the Alt or Shift keys are -depressed. See @@RXVT_NAME@@(7) +depressed. .IP "What's with this bold/blink stuff?" 4 .IX Item "What's with this bold/blink stuff?" If no bold colour is set via \f(CW\*(C`colorBD:\*(C'\fR, bold will invert text using the @@ -569,29 +855,29 @@ including the murky brown that passes for low-intensity yellow: .Sp .Vb 8 -\& URxvt*color0: #000000 -\& URxvt*color1: #A80000 -\& URxvt*color2: #00A800 -\& URxvt*color3: #A8A800 -\& URxvt*color4: #0000A8 -\& URxvt*color5: #A800A8 -\& URxvt*color6: #00A8A8 -\& URxvt*color7: #A8A8A8 +\& URxvt.color0: #000000 +\& URxvt.color1: #A80000 +\& URxvt.color2: #00A800 +\& URxvt.color3: #A8A800 +\& URxvt.color4: #0000A8 +\& URxvt.color5: #A800A8 +\& URxvt.color6: #00A8A8 +\& URxvt.color7: #A8A8A8 .Ve .Sp .Vb 8 -\& URxvt*color8: #000054 -\& URxvt*color9: #FF0054 -\& URxvt*color10: #00FF54 -\& URxvt*color11: #FFFF54 -\& URxvt*color12: #0000FF -\& URxvt*color13: #FF00FF -\& URxvt*color14: #00FFFF -\& URxvt*color15: #FFFFFF +\& URxvt.color8: #000054 +\& URxvt.color9: #FF0054 +\& URxvt.color10: #00FF54 +\& URxvt.color11: #FFFF54 +\& URxvt.color12: #0000FF +\& URxvt.color13: #FF00FF +\& URxvt.color14: #00FFFF +\& URxvt.color15: #FFFFFF .Ve .Sp -And here is a more complete set of non-standard colors described as -\&\*(L"pretty girly\*(R": +And here is a more complete set of non-standard colors described (not by +me) as \*(L"pretty girly\*(R". .Sp .Vb 18 \& URxvt.cursorColor: #dc74d1 @@ -613,6 +899,10 @@ \& URxvt.color7: #e1dddd \& URxvt.color15: #e1dddd .Ve +.IP "How can I start @@RXVT_NAME@@d in a race-free way?" 4 +.IX Item "How can I start @@RXVT_NAME@@d in a race-free way?" +Try \f(CW\*(C`@@RXVT_NAME@@d \-f \-o\*(C'\fR, which tells @@RXVT_NAME@@d to open the +display, create the listening socket and then fork. .IP "What's with the strange Backspace/Delete key behaviour?" 4 .IX Item "What's with the strange Backspace/Delete key behaviour?" Assuming that the physical Backspace key corresponds to the @@ -644,7 +934,7 @@ \& $ @@RXVT_NAME@@ .Ve .Sp -Toggle with \*(L"ESC[36h\*(R" / \*(L"ESC[36l\*(R" as documented in @@RXVT_NAME@@(7). +Toggle with \f(CW\*(C`ESC [ 36 h\*(C'\fR / \f(CW\*(C`ESC [ 36 l\*(C'\fR. .Sp For an existing rxvt\-unicode: .Sp @@ -667,7 +957,7 @@ The Delete key is a another casualty of the ill-defined Backspace problem. To avoid confusion between the Backspace and Delete keys, the Delete key has been assigned an escape sequence to match the vt100 for Execute -(ESC[3~) and is in the supplied termcap/terminfo. +(\f(CW\*(C`ESC [ 3 ~\*(C'\fR) and is in the supplied termcap/terminfo. .Sp Some other Backspace problems: .Sp @@ -682,30 +972,32 @@ you have run \*(L"configure\*(R" with the \f(CW\*(C`\-\-disable\-resources\*(C'\fR option you can use the `keysym' resource to alter the keystrings associated with keysyms. .Sp -Here's an example for a URxvt session started using `@@RXVT_NAME@@ \-name URxvt' +Here's an example for a URxvt session started using \f(CW\*(C`@@RXVT_NAME@@ \-name URxvt\*(C'\fR .Sp .Vb 20 -\& URxvt*keysym.Home: \ee[1~ -\& URxvt*keysym.End: \ee[4~ -\& URxvt*keysym.C-apostrophe: \ee -\& URxvt*keysym.C-slash: \ee -\& URxvt*keysym.C-semicolon: \ee -\& URxvt*keysym.C-grave: \ee -\& URxvt*keysym.C-comma: \ee -\& URxvt*keysym.C-period: \ee -\& URxvt*keysym.C-0x60: \ee -\& URxvt*keysym.C-Tab: \ee -\& URxvt*keysym.C-Return: \ee -\& URxvt*keysym.S-Return: \ee -\& URxvt*keysym.S-space: \ee -\& URxvt*keysym.M-Up: \ee -\& URxvt*keysym.M-Down: \ee -\& URxvt*keysym.M-Left: \ee -\& URxvt*keysym.M-Right: \ee -\& URxvt*keysym.M-C-0: list.0123456789.\ee -\& URxvt*keysym.M-C-a: list.abcdefghijklmnopqrstuvwxyz.\e033 -\& URxvt*keysym.F12: proto:\e033]701;zh_CN.GBK\e007 +\& URxvt.keysym.Home: \e033[1~ +\& URxvt.keysym.End: \e033[4~ +\& URxvt.keysym.C-apostrophe: \e033 +\& URxvt.keysym.C-slash: \e033 +\& URxvt.keysym.C-semicolon: \e033 +\& URxvt.keysym.C-grave: \e033 +\& URxvt.keysym.C-comma: \e033 +\& URxvt.keysym.C-period: \e033 +\& URxvt.keysym.C-0x60: \e033 +\& URxvt.keysym.C-Tab: \e033 +\& URxvt.keysym.C-Return: \e033 +\& URxvt.keysym.S-Return: \e033 +\& URxvt.keysym.S-space: \e033 +\& URxvt.keysym.M-Up: \e033 +\& URxvt.keysym.M-Down: \e033 +\& URxvt.keysym.M-Left: \e033 +\& URxvt.keysym.M-Right: \e033 +\& URxvt.keysym.M-C-0: list \e033 +\& URxvt.keysym.M-C-a: list \e033 +\& URxvt.keysym.F12: command:\e033]701;zh_CN.GBK\e007 .Ve +.Sp +See some more examples in the documentation for the \fBkeysym\fR resource. .IP "I'm using keyboard model \s-1XXX\s0 that has extra Prior/Next/Insert keys. How do I make use of them? For example, the Sun Keyboard type 4 has the following mappings that rxvt-unicode doesn't recognize." 4 .IX Item "I'm using keyboard model XXX that has extra Prior/Next/Insert keys. How do I make use of them? For example, the Sun Keyboard type 4 has the following mappings that rxvt-unicode doesn't recognize." .Vb 6 @@ -717,11 +1009,11 @@ \& F35 == Next .Ve .Sp -Rather than have rxvt-unicode try to accommodate all the various possible keyboard -mappings, it is better to use `xmodmap' to remap the keys as required for -your particular machine. -.IP "How do I distinguish if I'm running rxvt-unicode or a regular xterm? I need this to decide about setting colors etc." 4 -.IX Item "How do I distinguish if I'm running rxvt-unicode or a regular xterm? I need this to decide about setting colors etc." +Rather than have rxvt-unicode try to accommodate all the various possible +keyboard mappings, it is better to use `xmodmap' to remap the keys as +required for your particular machine. +.IP "How do I distinguish wether I'm running rxvt-unicode or a regular xterm? I need this to decide about setting colors etc." 4 +.IX Item "How do I distinguish wether I'm running rxvt-unicode or a regular xterm? I need this to decide about setting colors etc." rxvt and rxvt-unicode always export the variable \*(L"\s-1COLORTERM\s0\*(R", so you can check and see if that is set. Note that several programs, \s-1JED\s0, slrn, Midnight Commander automatically check this variable to decide whether or @@ -762,189 +1054,173 @@ Before sending me mail, you could go to \s-1IRC:\s0 \f(CW\*(C`irc.freenode.net\*(C'\fR, channel \f(CW\*(C`#rxvt\-unicode\*(C'\fR has some rxvt-unicode enthusiasts that might be interested in learning about new and exciting problems (but not FAQs :). -.SH "SYNOPSIS" -.IX Header "SYNOPSIS" -.Vb 2 -\& # set a new font set -\& printf '\e33]50;%s\e007' 9x15,xft:Kochi" Mincho" -.Ve -.PP -.Vb 2 -\& # change the locale and tell rxvt-unicode about it -\& export LC_CTYPE=ja_JP.EUC-JP; printf "\e33]701;$LC_CTYPE\e007" -.Ve -.PP -.Vb 2 -\& # set window title -\& printf '\e33]2;%s\e007' "new window title" -.Ve +.SH "RXVT TECHNICAL REFERENCE" +.IX Header "RXVT TECHNICAL REFERENCE" .SH "DESCRIPTION" .IX Header "DESCRIPTION" The rest of this document describes various technical aspects of \&\fBrxvt-unicode\fR. First the description of supported command sequences, followed by menu and pixmap support and last by a description of all features selectable at \f(CW\*(C`configure\*(C'\fR time. -.SH "RXVT TECHNICAL REFERENCE" -.IX Header "RXVT TECHNICAL REFERENCE" .SH "Definitions" .IX Header "Definitions" -.ie n .IP "\fB\fB\*(C`c\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`c\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""c""\fB\fR" 4 +.el .IP "\fB\f(CBc\fB\fR" 4 .IX Item "c" The literal character c. -.ie n .IP "\fB\fB\*(C`C\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`C\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""C""\fB\fR" 4 +.el .IP "\fB\f(CBC\fB\fR" 4 .IX Item "C" A single (required) character. -.ie n .IP "\fB\fB\*(C`Ps\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps""\fB\fR" 4 +.el .IP "\fB\f(CBPs\fB\fR" 4 .IX Item "Ps" A single (usually optional) numeric parameter, composed of one or more digits. -.ie n .IP "\fB\fB\*(C`Pm\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Pm\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Pm""\fB\fR" 4 +.el .IP "\fB\f(CBPm\fB\fR" 4 .IX Item "Pm" A multiple numeric parameter composed of any number of single numeric parameters, separated by \f(CW\*(C`;\*(C'\fR character(s). -.ie n .IP "\fB\fB\*(C`Pt\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Pt\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Pt""\fB\fR" 4 +.el .IP "\fB\f(CBPt\fB\fR" 4 .IX Item "Pt" A text parameter composed of printable characters. .SH "Values" .IX Header "Values" -.ie n .IP "\fB\fB\*(C`ENQ\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ENQ\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ENQ""\fB\fR" 4 +.el .IP "\fB\f(CBENQ\fB\fR" 4 .IX Item "ENQ" Enquiry (Ctrl\-E) = Send Device Attributes (\s-1DA\s0) request attributes from terminal. See \fB\f(CB\*(C`ESC [ Ps c\*(C'\fB\fR. -.ie n .IP "\fB\fB\*(C`BEL\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`BEL\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""BEL""\fB\fR" 4 +.el .IP "\fB\f(CBBEL\fB\fR" 4 .IX Item "BEL" Bell (Ctrl\-G) -.ie n .IP "\fB\fB\*(C`BS\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`BS\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""BS""\fB\fR" 4 +.el .IP "\fB\f(CBBS\fB\fR" 4 .IX Item "BS" Backspace (Ctrl\-H) -.ie n .IP "\fB\fB\*(C`TAB\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`TAB\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""TAB""\fB\fR" 4 +.el .IP "\fB\f(CBTAB\fB\fR" 4 .IX Item "TAB" Horizontal Tab (\s-1HT\s0) (Ctrl\-I) -.ie n .IP "\fB\fB\*(C`LF\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`LF\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""LF""\fB\fR" 4 +.el .IP "\fB\f(CBLF\fB\fR" 4 .IX Item "LF" Line Feed or New Line (\s-1NL\s0) (Ctrl\-J) -.ie n .IP "\fB\fB\*(C`VT\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`VT\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""VT""\fB\fR" 4 +.el .IP "\fB\f(CBVT\fB\fR" 4 .IX Item "VT" Vertical Tab (Ctrl\-K) same as \fB\f(CB\*(C`LF\*(C'\fB\fR -.ie n .IP "\fB\fB\*(C`FF\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`FF\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""FF""\fB\fR" 4 +.el .IP "\fB\f(CBFF\fB\fR" 4 .IX Item "FF" Form Feed or New Page (\s-1NP\s0) (Ctrl\-L) same as \fB\f(CB\*(C`LF\*(C'\fB\fR -.ie n .IP "\fB\fB\*(C`CR\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`CR\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""CR""\fB\fR" 4 +.el .IP "\fB\f(CBCR\fB\fR" 4 .IX Item "CR" Carriage Return (Ctrl\-M) -.ie n .IP "\fB\fB\*(C`SO\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`SO\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""SO""\fB\fR" 4 +.el .IP "\fB\f(CBSO\fB\fR" 4 .IX Item "SO" Shift Out (Ctrl\-N), invokes the G1 character set. Switch to Alternate Character Set -.ie n .IP "\fB\fB\*(C`SI\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`SI\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""SI""\fB\fR" 4 +.el .IP "\fB\f(CBSI\fB\fR" 4 .IX Item "SI" Shift In (Ctrl\-O), invokes the G0 character set (the default). Switch to Standard Character Set -.ie n .IP "\fB\fB\*(C`SPC\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`SPC\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""SPC""\fB\fR" 4 +.el .IP "\fB\f(CBSPC\fB\fR" 4 .IX Item "SPC" Space Character .SH "Escape Sequences" .IX Header "Escape Sequences" -.ie n .IP "\fB\fB\*(C`ESC # 8\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC # 8\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC # 8""\fB\fR" 4 +.el .IP "\fB\f(CBESC # 8\fB\fR" 4 .IX Item "ESC # 8" \&\s-1DEC\s0 Screen Alignment Test (\s-1DECALN\s0) -.ie n .IP "\fB\fB\*(C`ESC 7\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC 7\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC 7""\fB\fR" 4 +.el .IP "\fB\f(CBESC 7\fB\fR" 4 .IX Item "ESC 7" Save Cursor (\s-1SC\s0) -.ie n .IP "\fB\fB\*(C`ESC 8\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC 8\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC 8""\fB\fR" 4 +.el .IP "\fB\f(CBESC 8\fB\fR" 4 .IX Item "ESC 8" Restore Cursor -.ie n .IP "\fB\fB\*(C`ESC =\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC =\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC =""\fB\fR" 4 +.el .IP "\fB\f(CBESC =\fB\fR" 4 .IX Item "ESC =" Application Keypad (\s-1SMKX\s0). See also next sequence. -.ie n .IP "\fB\fB\*(C`ESC\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC""\fB\fR" 4 +.el .IP "\fB\f(CBESC\fB\fR" 4 .IX Item "ESC" Normal Keypad (\s-1RMKX\s0) .Sp \&\fBNote:\fR If the numeric keypad is activated, eg, \fBNum_Lock\fR has been pressed, numbers or control functions are generated by the numeric keypad (see Key Codes). -.ie n .IP "\fB\fB\*(C`ESC D\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC D\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC D""\fB\fR" 4 +.el .IP "\fB\f(CBESC D\fB\fR" 4 .IX Item "ESC D" Index (\s-1IND\s0) -.ie n .IP "\fB\fB\*(C`ESC E\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC E\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC E""\fB\fR" 4 +.el .IP "\fB\f(CBESC E\fB\fR" 4 .IX Item "ESC E" Next Line (\s-1NEL\s0) -.ie n .IP "\fB\fB\*(C`ESC H\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC H\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC H""\fB\fR" 4 +.el .IP "\fB\f(CBESC H\fB\fR" 4 .IX Item "ESC H" Tab Set (\s-1HTS\s0) -.ie n .IP "\fB\fB\*(C`ESC M\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC M\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC M""\fB\fR" 4 +.el .IP "\fB\f(CBESC M\fB\fR" 4 .IX Item "ESC M" Reverse Index (\s-1RI\s0) -.ie n .IP "\fB\fB\*(C`ESC N\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC N\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC N""\fB\fR" 4 +.el .IP "\fB\f(CBESC N\fB\fR" 4 .IX Item "ESC N" Single Shift Select of G2 Character Set (\s-1SS2\s0): affects next character only \fIunimplemented\fR -.ie n .IP "\fB\fB\*(C`ESC O\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC O\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC O""\fB\fR" 4 +.el .IP "\fB\f(CBESC O\fB\fR" 4 .IX Item "ESC O" Single Shift Select of G3 Character Set (\s-1SS3\s0): affects next character only \fIunimplemented\fR -.ie n .IP "\fB\fB\*(C`ESC Z\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC Z\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC Z""\fB\fR" 4 +.el .IP "\fB\f(CBESC Z\fB\fR" 4 .IX Item "ESC Z" -Obsolete form of returns: \fB\f(CB\*(C`ESC[?1;2C\*(C'\fB\fR \fIrxvt-unicode compile-time option\fR -.ie n .IP "\fB\fB\*(C`ESC c\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC c\*(C'\fB\fR" 4 +Obsolete form of returns: \fB\f(CB\*(C`ESC [ ? 1 ; 2 C\*(C'\fB\fR \fIrxvt-unicode compile-time option\fR +.ie n .IP "\fB\fB""ESC c""\fB\fR" 4 +.el .IP "\fB\f(CBESC c\fB\fR" 4 .IX Item "ESC c" Full reset (\s-1RIS\s0) -.ie n .IP "\fB\fB\*(C`ESC n\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC n\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC n""\fB\fR" 4 +.el .IP "\fB\f(CBESC n\fB\fR" 4 .IX Item "ESC n" Invoke the G2 Character Set (\s-1LS2\s0) -.ie n .IP "\fB\fB\*(C`ESC o\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC o\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC o""\fB\fR" 4 +.el .IP "\fB\f(CBESC o\fB\fR" 4 .IX Item "ESC o" Invoke the G3 Character Set (\s-1LS3\s0) -.ie n .IP "\fB\fB\*(C`ESC\*(C'\fB ( C>\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC\*(C'\fB ( C>\fR" 4 -.IX Item "ESC ( C>" +.ie n .IP "\fB\fB""ESC ( C""\fB\fR" 4 +.el .IP "\fB\f(CBESC ( C\fB\fR" 4 +.IX Item "ESC ( C" Designate G0 Character Set (\s-1ISO\s0 2022), see below for values of \f(CW\*(C`C\*(C'\fR. -.ie n .IP "\fB\fB\*(C`ESC\*(C'\fB ) C>\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC\*(C'\fB ) C>\fR" 4 -.IX Item "ESC ) C>" +.ie n .IP "\fB\fB""ESC ) C""\fB\fR" 4 +.el .IP "\fB\f(CBESC ) C\fB\fR" 4 +.IX Item "ESC ) C" Designate G1 Character Set (\s-1ISO\s0 2022), see below for values of \f(CW\*(C`C\*(C'\fR. -.ie n .IP "\fB\fB\*(C`ESC * C\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC * C\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC * C""\fB\fR" 4 +.el .IP "\fB\f(CBESC * C\fB\fR" 4 .IX Item "ESC * C" Designate G2 Character Set (\s-1ISO\s0 2022), see below for values of \f(CW\*(C`C\*(C'\fR. -.ie n .IP "\fB\fB\*(C`ESC + C\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC + C\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC + C""\fB\fR" 4 +.el .IP "\fB\f(CBESC + C\fB\fR" 4 .IX Item "ESC + C" Designate G3 Character Set (\s-1ISO\s0 2022), see below for values of \f(CW\*(C`C\*(C'\fR. -.ie n .IP "\fB\fB\*(C`ESC $ C\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC $ C\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC $ C""\fB\fR" 4 +.el .IP "\fB\f(CBESC $ C\fB\fR" 4 .IX Item "ESC $ C" Designate Kanji Character Set .Sp @@ -965,51 +1241,51 @@ .IX Xref "CSI" .SH "CSI (Command Sequence Introducer) Sequences" .IX Header "CSI (Command Sequence Introducer) Sequences" -.ie n .IP "\fB\fB\*(C`ESC [ Ps @\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps @\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps @""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps @\fB\fR" 4 .IX Item "ESC [ Ps @" Insert \fB\f(CB\*(C`Ps\*(C'\fB\fR (Blank) Character(s) [default: 1] (\s-1ICH\s0) .IX Xref "ESCOBPsA" -.ie n .IP "\fB\fB\*(C`ESC [ Ps A\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps A\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps A""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps A\fB\fR" 4 .IX Item "ESC [ Ps A" Cursor Up \fB\f(CB\*(C`Ps\*(C'\fB\fR Times [default: 1] (\s-1CUU\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps B\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps B\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps B""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps B\fB\fR" 4 .IX Item "ESC [ Ps B" Cursor Down \fB\f(CB\*(C`Ps\*(C'\fB\fR Times [default: 1] (\s-1CUD\s0) .IX Xref "ESCOBPsC" -.ie n .IP "\fB\fB\*(C`ESC [ Ps C\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps C\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps C""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps C\fB\fR" 4 .IX Item "ESC [ Ps C" Cursor Forward \fB\f(CB\*(C`Ps\*(C'\fB\fR Times [default: 1] (\s-1CUF\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps D\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps D\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps D""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps D\fB\fR" 4 .IX Item "ESC [ Ps D" Cursor Backward \fB\f(CB\*(C`Ps\*(C'\fB\fR Times [default: 1] (\s-1CUB\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps E\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps E\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps E""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps E\fB\fR" 4 .IX Item "ESC [ Ps E" Cursor Down \fB\f(CB\*(C`Ps\*(C'\fB\fR Times [default: 1] and to first column -.ie n .IP "\fB\fB\*(C`ESC [ Ps F\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps F\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps F""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps F\fB\fR" 4 .IX Item "ESC [ Ps F" Cursor Up \fB\f(CB\*(C`Ps\*(C'\fB\fR Times [default: 1] and to first column .IX Xref "ESCOBPsG" -.ie n .IP "\fB\fB\*(C`ESC [ Ps G\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps G\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps G""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps G\fB\fR" 4 .IX Item "ESC [ Ps G" Cursor to Column \fB\f(CB\*(C`Ps\*(C'\fB\fR (\s-1HPA\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps;Ps H\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps;Ps H\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps;Ps H""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps;Ps H\fB\fR" 4 .IX Item "ESC [ Ps;Ps H" Cursor Position [row;column] [default: 1;1] (\s-1CUP\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps I\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps I\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps I""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps I\fB\fR" 4 .IX Item "ESC [ Ps I" Move forward \fB\f(CB\*(C`Ps\*(C'\fB\fR tab stops [default: 1] -.ie n .IP "\fB\fB\*(C`ESC [ Ps J\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps J\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps J""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps J\fB\fR" 4 .IX Item "ESC [ Ps J" Erase in Display (\s-1ED\s0) .TS @@ -1019,8 +1295,8 @@ Ps = 2 Clear All .TE -.ie n .IP "\fB\fB\*(C`ESC [ Ps K\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps K\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps K""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps K\fB\fR" 4 .IX Item "ESC [ Ps K" Erase in Line (\s-1EL\s0) .TS @@ -1030,25 +1306,25 @@ Ps = 2 Clear All .TE -.ie n .IP "\fB\fB\*(C`ESC [ Ps L\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps L\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps L""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps L\fB\fR" 4 .IX Item "ESC [ Ps L" Insert \fB\f(CB\*(C`Ps\*(C'\fB\fR Line(s) [default: 1] (\s-1IL\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps M\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps M\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps M""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps M\fB\fR" 4 .IX Item "ESC [ Ps M" Delete \fB\f(CB\*(C`Ps\*(C'\fB\fR Line(s) [default: 1] (\s-1DL\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps P\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps P\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps P""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps P\fB\fR" 4 .IX Item "ESC [ Ps P" Delete \fB\f(CB\*(C`Ps\*(C'\fB\fR Character(s) [default: 1] (\s-1DCH\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps;Ps;Ps;Ps;Ps T\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps;Ps;Ps;Ps;Ps T\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps;Ps;Ps;Ps;Ps T""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps;Ps;Ps;Ps;Ps T\fB\fR" 4 .IX Item "ESC [ Ps;Ps;Ps;Ps;Ps T" Initiate . \fIunimplemented\fR Parameters are [func;startx;starty;firstrow;lastrow]. -.ie n .IP "\fB\fB\*(C`ESC [ Ps W\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps W\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps W""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps W\fB\fR" 4 .IX Item "ESC [ Ps W" Tabulator functions .TS @@ -1058,43 +1334,43 @@ Ps = 5 Tab Clear (TBC), Clear All .TE -.ie n .IP "\fB\fB\*(C`ESC [ Ps X\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps X\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps X""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps X\fB\fR" 4 .IX Item "ESC [ Ps X" Erase \fB\f(CB\*(C`Ps\*(C'\fB\fR Character(s) [default: 1] (\s-1ECH\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps Z\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps Z\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps Z""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps Z\fB\fR" 4 .IX Item "ESC [ Ps Z" Move backward \fB\f(CB\*(C`Ps\*(C'\fB\fR [default: 1] tab stops -.ie n .IP "\fB\fB\*(C`ESC [ Ps '\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps '\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps '""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps '\fB\fR" 4 .IX Item "ESC [ Ps '" See \fB\f(CB\*(C`ESC [ Ps G\*(C'\fB\fR -.ie n .IP "\fB\fB\*(C`ESC [ Ps a\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps a\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps a""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps a\fB\fR" 4 .IX Item "ESC [ Ps a" See \fB\f(CB\*(C`ESC [ Ps C\*(C'\fB\fR -.ie n .IP "\fB\fB\*(C`ESC [ Ps c\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps c\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps c""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps c\fB\fR" 4 .IX Item "ESC [ Ps c" Send Device Attributes (\s-1DA\s0) \&\fB\f(CB\*(C`Ps = 0\*(C'\fB\fR (or omitted): request attributes from terminal -returns: \fB\f(CB\*(C`ESC[?1;2c\*(C'\fB\fR (``I am a \s-1VT100\s0 with Advanced Video +returns: \fB\f(CB\*(C`ESC [ ? 1 ; 2 c\*(C'\fB\fR (``I am a \s-1VT100\s0 with Advanced Video Option'') -.ie n .IP "\fB\fB\*(C`ESC [ Ps d\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps d\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps d""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps d\fB\fR" 4 .IX Item "ESC [ Ps d" Cursor to Line \fB\f(CB\*(C`Ps\*(C'\fB\fR (\s-1VPA\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps e\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps e\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps e""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps e\fB\fR" 4 .IX Item "ESC [ Ps e" See \fB\f(CB\*(C`ESC [ Ps A\*(C'\fB\fR -.ie n .IP "\fB\fB\*(C`ESC [ Ps;Ps f\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps;Ps f\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps;Ps f""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps;Ps f\fB\fR" 4 .IX Item "ESC [ Ps;Ps f" Horizontal and Vertical Position [row;column] (\s-1HVP\s0) [default: 1;1] -.ie n .IP "\fB\fB\*(C`ESC [ Ps g\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps g\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps g""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps g\fB\fR" 4 .IX Item "ESC [ Ps g" Tab Clear (\s-1TBC\s0) .TS @@ -1103,12 +1379,12 @@ Ps = 3 Clear All (TBC) .TE -.ie n .IP "\fB\fB\*(C`ESC [ Pm h\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Pm h\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Pm h""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Pm h\fB\fR" 4 .IX Item "ESC [ Pm h" Set 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. -.ie n .IP "\fB\fB\*(C`ESC [ Ps i\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps i\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps i""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps i\fB\fR" 4 .IX Item "ESC [ Ps i" Printing. See also the \f(CW\*(C`print\-pipe\*(C'\fR resource. .TS @@ -1118,13 +1394,13 @@ Ps = 5 enable transparent print mode (MC5) .TE -.ie n .IP "\fB\fB\*(C`ESC [ Pm l\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Pm l\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Pm l""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Pm l\fB\fR" 4 .IX Item "ESC [ Pm l" Reset Mode (\s-1RM\s0) .RS 4 -.ie n .IP "\fB\fB\*(C`Ps = 4\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 4\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 4""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 4\fB\fR" 4 .IX Item "Ps = 4" .TS l l . @@ -1133,8 +1409,8 @@ .TE .PD 0 -.ie n .IP "\fB\fB\*(C`Ps = 20\*(C'\fB\fR (partially implemented)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 20\*(C'\fB\fR (partially implemented)" 4 +.ie n .IP "\fB\fB""Ps = 20""\fB\fR (partially implemented)" 4 +.el .IP "\fB\f(CBPs = 20\fB\fR (partially implemented)" 4 .IX Item "Ps = 20 (partially implemented)" .TS l l . @@ -1145,8 +1421,8 @@ .RE .RS 4 .RE -.ie n .IP "\fB\fB\*(C`ESC [ Pm m\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Pm m\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Pm m""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Pm m\fB\fR" 4 .IX Item "ESC [ Pm m" .PD Character Attributes (\s-1SGR\s0) @@ -1181,8 +1457,8 @@ Ps = 99 / 109 fg/bg Bright Default .TE -.ie n .IP "\fB\fB\*(C`ESC [ Ps n\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps n\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps n""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps n\fB\fR" 4 .IX Item "ESC [ Ps n" Device Status Report (\s-1DSR\s0) .TS @@ -1193,51 +1469,75 @@ Ps = 8 Request Version Number (place in window title) .TE -.ie n .IP "\fB\fB\*(C`ESC [ Ps;Ps r\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps;Ps r\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps;Ps r""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps;Ps r\fB\fR" 4 .IX Item "ESC [ Ps;Ps r" Set Scrolling Region [top;bottom] [default: full size of window] (\s-1CSR\s0) -.ie n .IP "\fB\fB\*(C`ESC [ s\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ s\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ s""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ s\fB\fR" 4 .IX Item "ESC [ s" Save Cursor (\s-1SC\s0) -.ie n .IP "\fB\fB\*(C`ESC [ Ps x\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ Ps x\*(C'\fB\fR" 4 -.IX Item "ESC [ Ps x" -Request Terminal Parameters (\s-1DECREQTPARM\s0) -.ie n .IP "\fB\fB\*(C`ESC [ u\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ u\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ Ps;Pt t""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps;Pt t\fB\fR" 4 +.IX Item "ESC [ Ps;Pt t" +Window Operations +.TS +l l . +Ps = 1 Deiconify (map) window +Ps = 2 Iconify window +Ps = 3 ESC [ 3 ; X ; Y t Move window to (X|Y) +Ps = 4 ESC [ 4 ; H ; W t Resize to WxH pixels +Ps = 5 Raise window +Ps = 6 Lower window +Ps = 7 Refresh screen once +Ps = 8 ESC [ 8 ; R ; C t Resize to R rows and C columns +Ps = 11 Report window state (responds with Ps = 1 or Ps = 2) +Ps = 13 Report window position (responds with Ps = 3) +Ps = 14 Report window pixel size (responds with Ps = 4) +Ps = 18 Report window text size (responds with Ps = 7) +Ps = 19 Currently the same as Ps = 18, but responds with Ps = 9 +Ps = 20 Reports icon label (ESC ] L NAME \234) +Ps = 21 Reports window title (ESC ] l NAME \234) +Ps = 24.. Set window height to Ps rows +.TE + +.ie n .IP "\fB\fB""ESC [ u""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ u\fB\fR" 4 .IX Item "ESC [ u" Restore Cursor +.ie n .IP "\fB\fB""ESC [ Ps x""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ Ps x\fB\fR" 4 +.IX Item "ESC [ Ps x" +Request Terminal Parameters (\s-1DECREQTPARM\s0) .PP .IX Xref "PrivateModes" .SH "DEC Private Modes" .IX Header "DEC Private Modes" -.ie n .IP "\fB\fB\*(C`ESC [ ? Pm h\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ ? Pm h\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ ? Pm h""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ ? Pm h\fB\fR" 4 .IX Item "ESC [ ? Pm h" \&\s-1DEC\s0 Private Mode Set (\s-1DECSET\s0) -.ie n .IP "\fB\fB\*(C`ESC [ ? Pm l\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ ? Pm l\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ ? Pm l""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ ? Pm l\fB\fR" 4 .IX Item "ESC [ ? Pm l" \&\s-1DEC\s0 Private Mode Reset (\s-1DECRST\s0) -.ie n .IP "\fB\fB\*(C`ESC [ ? Pm r\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ ? Pm r\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ ? Pm r""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ ? Pm r\fB\fR" 4 .IX Item "ESC [ ? Pm r" Restore previously saved \s-1DEC\s0 Private Mode Values. -.ie n .IP "\fB\fB\*(C`ESC [ ? Pm s\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ ? Pm s\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ ? Pm s""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ ? Pm s\fB\fR" 4 .IX Item "ESC [ ? Pm s" Save \s-1DEC\s0 Private Mode Values. -.ie n .IP "\fB\fB\*(C`ESC [ ? Pm t\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ ? Pm t\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ ? Pm t""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ ? Pm t\fB\fR" 4 .IX Item "ESC [ ? Pm t" Toggle \s-1DEC\s0 Private Mode Values (rxvt extension). \fIwhere\fR .RS 4 -.ie n .IP "\fB\fB\*(C`Ps = 1\*(C'\fB\fR (\s-1DECCKM\s0)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1\*(C'\fB\fR (\s-1DECCKM\s0)" 4 +.ie n .IP "\fB\fB""Ps = 1""\fB\fR (\s-1DECCKM\s0)" 4 +.el .IP "\fB\f(CBPs = 1\fB\fR (\s-1DECCKM\s0)" 4 .IX Item "Ps = 1 (DECCKM)" .TS l l . @@ -1246,8 +1546,8 @@ .TE .PD 0 -.ie n .IP "\fB\fB\*(C`Ps = 2\*(C'\fB\fR (\s-1ANSI/VT52\s0 mode)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 2\*(C'\fB\fR (\s-1ANSI/VT52\s0 mode)" 4 +.ie n .IP "\fB\fB""Ps = 2""\fB\fR (\s-1ANSI/VT52\s0 mode)" 4 +.el .IP "\fB\f(CBPs = 2\fB\fR (\s-1ANSI/VT52\s0 mode)" 4 .IX Item "Ps = 2 (ANSI/VT52 mode)" .TS l l . @@ -1255,8 +1555,8 @@ l Enter VT52 mode .TE -.ie n .IP "\fB\fB\*(C`Ps = 3\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 3\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 3""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 3\fB\fR" 4 .IX Item "Ps = 3" .TS l l . @@ -1264,8 +1564,8 @@ l 80 Column Mode (DECCOLM) .TE -.ie n .IP "\fB\fB\*(C`Ps = 4\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 4\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 4""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 4\fB\fR" 4 .IX Item "Ps = 4" .TS l l . @@ -1273,8 +1573,8 @@ l Jump (Fast) Scroll (DECSCLM) .TE -.ie n .IP "\fB\fB\*(C`Ps = 5\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 5\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 5""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 5\fB\fR" 4 .IX Item "Ps = 5" .TS l l . @@ -1282,8 +1582,8 @@ l Normal Video (DECSCNM) .TE -.ie n .IP "\fB\fB\*(C`Ps = 6\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 6\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 6""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 6\fB\fR" 4 .IX Item "Ps = 6" .TS l l . @@ -1291,8 +1591,8 @@ l Normal Cursor Mode (DECOM) .TE -.ie n .IP "\fB\fB\*(C`Ps = 7\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 7\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 7""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 7\fB\fR" 4 .IX Item "Ps = 7" .TS l l . @@ -1300,8 +1600,8 @@ l No Wraparound Mode (DECAWM) .TE -.ie n .IP "\fB\fB\*(C`Ps = 8\*(C'\fB\fR \fIunimplemented\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 8\*(C'\fB\fR \fIunimplemented\fR" 4 +.ie n .IP "\fB\fB""Ps = 8""\fB\fR \fIunimplemented\fR" 4 +.el .IP "\fB\f(CBPs = 8\fB\fR \fIunimplemented\fR" 4 .IX Item "Ps = 8 unimplemented" .TS l l . @@ -1309,8 +1609,8 @@ l No Auto-repeat Keys (DECARM) .TE -.ie n .IP "\fB\fB\*(C`Ps = 9\*(C'\fB\fR X10 XTerm" 4 -.el .IP "\fB\f(CB\*(C`Ps = 9\*(C'\fB\fR X10 XTerm" 4 +.ie n .IP "\fB\fB""Ps = 9""\fB\fR X10 XTerm" 4 +.el .IP "\fB\f(CBPs = 9\fB\fR X10 XTerm" 4 .IX Item "Ps = 9 X10 XTerm" .TS l l . @@ -1318,17 +1618,8 @@ l No mouse reporting. .TE -.ie n .IP "\fB\fB\*(C`Ps = 10\*(C'\fB\fR (\fBrxvt\fR)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 10\*(C'\fB\fR (\fBrxvt\fR)" 4 -.IX Item "Ps = 10 (rxvt)" -.TS -l l . -h menuBar visible -l menuBar invisible -.TE - -.ie n .IP "\fB\fB\*(C`Ps = 25\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 25\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 25""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 25\fB\fR" 4 .IX Item "Ps = 25" .TS l l . @@ -1336,8 +1627,8 @@ l Invisible cursor {civis} .TE -.ie n .IP "\fB\fB\*(C`Ps = 30\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 30\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 30""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 30\fB\fR" 4 .IX Item "Ps = 30" .TS l l . @@ -1345,8 +1636,8 @@ l scrollBar invisisble .TE -.ie n .IP "\fB\fB\*(C`Ps = 35\*(C'\fB\fR (\fBrxvt\fR)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 35\*(C'\fB\fR (\fBrxvt\fR)" 4 +.ie n .IP "\fB\fB""Ps = 35""\fB\fR (\fBrxvt\fR)" 4 +.el .IP "\fB\f(CBPs = 35\fB\fR (\fBrxvt\fR)" 4 .IX Item "Ps = 35 (rxvt)" .TS l l . @@ -1354,13 +1645,13 @@ l Disallow XTerm Shift+key sequences .TE -.ie n .IP "\fB\fB\*(C`Ps = 38\*(C'\fB\fR \fIunimplemented\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 38\*(C'\fB\fR \fIunimplemented\fR" 4 +.ie n .IP "\fB\fB""Ps = 38""\fB\fR \fIunimplemented\fR" 4 +.el .IP "\fB\f(CBPs = 38\fB\fR \fIunimplemented\fR" 4 .IX Item "Ps = 38 unimplemented" .PD Enter Tektronix Mode (\s-1DECTEK\s0) -.ie n .IP "\fB\fB\*(C`Ps = 40\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 40\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 40""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 40\fB\fR" 4 .IX Item "Ps = 40" .TS l l . @@ -1369,8 +1660,8 @@ .TE .PD 0 -.ie n .IP "\fB\fB\*(C`Ps = 44\*(C'\fB\fR \fIunimplemented\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 44\*(C'\fB\fR \fIunimplemented\fR" 4 +.ie n .IP "\fB\fB""Ps = 44""\fB\fR \fIunimplemented\fR" 4 +.el .IP "\fB\f(CBPs = 44\fB\fR \fIunimplemented\fR" 4 .IX Item "Ps = 44 unimplemented" .TS l l . @@ -1378,8 +1669,8 @@ l Turn Off Margin Bell .TE -.ie n .IP "\fB\fB\*(C`Ps = 45\*(C'\fB\fR \fIunimplemented\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 45\*(C'\fB\fR \fIunimplemented\fR" 4 +.ie n .IP "\fB\fB""Ps = 45""\fB\fR \fIunimplemented\fR" 4 +.el .IP "\fB\f(CBPs = 45\fB\fR \fIunimplemented\fR" 4 .IX Item "Ps = 45 unimplemented" .TS l l . @@ -1387,11 +1678,11 @@ l No Reverse-wraparound Mode .TE -.ie n .IP "\fB\fB\*(C`Ps = 46\*(C'\fB\fR \fIunimplemented\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 46\*(C'\fB\fR \fIunimplemented\fR" 4 +.ie n .IP "\fB\fB""Ps = 46""\fB\fR \fIunimplemented\fR" 4 +.el .IP "\fB\f(CBPs = 46\fB\fR \fIunimplemented\fR" 4 .IX Item "Ps = 46 unimplemented" -.ie n .IP "\fB\fB\*(C`Ps = 47\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 47\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 47""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 47\fB\fR" 4 .IX Item "Ps = 47" .TS l l . @@ -1402,8 +1693,8 @@ .PD .IX Xref "Priv66" -.ie n .IP "\fB\fB\*(C`Ps = 66\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 66\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 66""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 66\fB\fR" 4 .IX Item "Ps = 66" .TS l l . @@ -1412,8 +1703,8 @@ .TE .PD 0 -.ie n .IP "\fB\fB\*(C`Ps = 67\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 67\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 67""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 67\fB\fR" 4 .IX Item "Ps = 67" .TS l l . @@ -1421,8 +1712,8 @@ l Backspace key sends DEL .TE -.ie n .IP "\fB\fB\*(C`Ps = 1000\*(C'\fB\fR (X11 XTerm)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1000\*(C'\fB\fR (X11 XTerm)" 4 +.ie n .IP "\fB\fB""Ps = 1000""\fB\fR (X11 XTerm)" 4 +.el .IP "\fB\f(CBPs = 1000\fB\fR (X11 XTerm)" 4 .IX Item "Ps = 1000 (X11 XTerm)" .TS l l . @@ -1430,8 +1721,8 @@ l No mouse reporting. .TE -.ie n .IP "\fB\fB\*(C`Ps = 1001\*(C'\fB\fR (X11 XTerm) \fIunimplemented\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1001\*(C'\fB\fR (X11 XTerm) \fIunimplemented\fR" 4 +.ie n .IP "\fB\fB""Ps = 1001""\fB\fR (X11 XTerm) \fIunimplemented\fR" 4 +.el .IP "\fB\f(CBPs = 1001\fB\fR (X11 XTerm) \fIunimplemented\fR" 4 .IX Item "Ps = 1001 (X11 XTerm) unimplemented" .TS l l . @@ -1439,8 +1730,8 @@ l No mouse reporting. .TE -.ie n .IP "\fB\fB\*(C`Ps = 1010\*(C'\fB\fR (\fBrxvt\fR)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1010\*(C'\fB\fR (\fBrxvt\fR)" 4 +.ie n .IP "\fB\fB""Ps = 1010""\fB\fR (\fBrxvt\fR)" 4 +.el .IP "\fB\f(CBPs = 1010\fB\fR (\fBrxvt\fR)" 4 .IX Item "Ps = 1010 (rxvt)" .TS l l . @@ -1448,8 +1739,8 @@ l Scroll to bottom on TTY output .TE -.ie n .IP "\fB\fB\*(C`Ps = 1011\*(C'\fB\fR (\fBrxvt\fR)" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1011\*(C'\fB\fR (\fBrxvt\fR)" 4 +.ie n .IP "\fB\fB""Ps = 1011""\fB\fR (\fBrxvt\fR)" 4 +.el .IP "\fB\f(CBPs = 1011\fB\fR (\fBrxvt\fR)" 4 .IX Item "Ps = 1011 (rxvt)" .TS l l . @@ -1457,8 +1748,17 @@ l Don't scroll to bottom when a key is pressed .TE -.ie n .IP "\fB\fB\*(C`Ps = 1047\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1047\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 1021""\fB\fR (\fBrxvt\fR)" 4 +.el .IP "\fB\f(CBPs = 1021\fB\fR (\fBrxvt\fR)" 4 +.IX Item "Ps = 1021 (rxvt)" +.TS +l l . +h Bold/italic implies high intensity (see option -is) +l Font styles have no effect on intensity (Compile styles) +.TE + +.ie n .IP "\fB\fB""Ps = 1047""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 1047\fB\fR" 4 .IX Item "Ps = 1047" .TS l l . @@ -1466,8 +1766,8 @@ l Use Normal Screen Buffer - clear Alternate Screen Buffer if returning from it .TE -.ie n .IP "\fB\fB\*(C`Ps = 1048\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1048\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 1048""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 1048\fB\fR" 4 .IX Item "Ps = 1048" .TS l l . @@ -1475,8 +1775,8 @@ l Restore cursor position .TE -.ie n .IP "\fB\fB\*(C`Ps = 1049\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`Ps = 1049\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""Ps = 1049""\fB\fR" 4 +.el .IP "\fB\f(CBPs = 1049\fB\fR" 4 .IX Item "Ps = 1049" .TS l l . @@ -1493,8 +1793,8 @@ .IX Xref "XTerm" .SH "XTerm Operating System Commands" .IX Header "XTerm Operating System Commands" -.ie n .IP "\fB\fB\*(C`ESC ] Ps;Pt ST\*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC ] Ps;Pt ST\*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC ] Ps;Pt ST""\fB\fR" 4 +.el .IP "\fB\f(CBESC ] Ps;Pt ST\fB\fR" 4 .IX Item "ESC ] Ps;Pt ST" Set XTerm Parameters. 8\-bit \s-1ST:\s0 0x9c, 7\-bit \s-1ST\s0 sequence: \s-1ESC\s0 \e (0x1b, 0x5c), backwards compatible terminator \s-1BEL\s0 (0x07) is also accepted. any @@ -1511,397 +1811,31 @@ Ps = 12 Change colour of text cursor foreground to Pt Ps = 13 Change colour of mouse foreground to Pt Ps = 17 Change colour of highlight characters to Pt -Ps = 18 Change colour of bold characters to Pt -Ps = 19 Change colour of underlined characters to Pt +Ps = 18 Change colour of bold characters to Pt [deprecated, see 706] +Ps = 19 Change colour of underlined characters to Pt [deprecated, see 707] Ps = 20 Change default background to Pt -Ps = 39 Change default foreground colour to Pt rxvt compile-time option +Ps = 39 Change default foreground colour to Pt. Ps = 46 Change Log File to Pt unimplemented -Ps = 49 Change default background colour to Pt rxvt compile-time option +Ps = 49 Change default background colour to Pt. Ps = 50 Set fontset to Pt, with the following special values of Pt (rxvt) #+n change up n #-n change down n if n is missing of 0, a value of 1 is used empty change to font0 n change to font n Ps = 55 Log all scrollback buffer and all of screen to Pt -Ps = 701 Change current locale to Pt, or, if Pt is ?, return the current locale (@@RXVT_NAME@@ extension) -Ps = 703 Menubar command Pt rxvt compile-time option (rxvt-unicode extension) +Ps = 701 Change current locale to Pt, or, if Pt is ?, return the current locale (Compile frills). Ps = 704 Change colour of italic characters to Pt -Ps = 705 Change background pixmap tint colour to Pt +Ps = 705 Change background pixmap tint colour to Pt (Compile transparency). +Ps = 706 Change colour of bold characters to Pt +Ps = 707 Change colour of underlined characters to Pt Ps = 710 Set normal fontset to Pt. Same as Ps = 50. -Ps = 711 Set bold fontset to Pt. Similar to Ps = 50. -Ps = 712 Set italic fontset to Pt. Similar to Ps = 50. -Ps = 713 Set bold-italic fontset to Pt. Similar to Ps = 50. +Ps = 711 Set bold fontset to Pt. Similar to Ps = 50 (Compile styles). +Ps = 712 Set italic fontset to Pt. Similar to Ps = 50 (Compile styles). +Ps = 713 Set bold-italic fontset to Pt. Similar to Ps = 50 (Compile styles). +Ps = 720 Move viewing window up by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills). +Ps = 721 Move viewing window down by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills). +Ps = 777 Call the perl extension with the given string, which should be of the form extension:parameters (Compile perl). .TE .PP -.IX Xref "menuBar" -.SH "menuBar" -.IX Header "menuBar" -\&\fBThe exact syntax used is \f(BIalmost\fB solidified.\fR -In the menus, \fB\s-1DON\s0'T\fR try to use menuBar commands that add or remove a -menuBar. -.PP -Note that in all of the commands, the \fB\f(BI/path/\fB\fR \fIcannot\fR be -omitted: use \fB./\fR to specify a menu relative to the current menu. -.Sh "Overview of menuBar operation" -.IX Subsection "Overview of menuBar operation" -For the menuBar XTerm escape sequence \f(CW\*(C`ESC ] 703 ; Pt ST\*(C'\fR, the syntax -of \f(CW\*(C`Pt\*(C'\fR can be used for a variety of tasks: -.PP -At the top level is the current menuBar which is a member of a circular -linked-list of other such menuBars. -.PP -The menuBar acts as a parent for the various drop-down menus, which in -turn, may have labels, separator lines, menuItems and subMenus. -.PP -The menuItems are the useful bits: you can use them to mimic keyboard -input or even to send text or escape sequences back to rxvt. -.PP -The menuBar syntax is intended to provide a simple yet robust method of -constructing and manipulating menus and navigating through the -menuBars. -.PP -The first step is to use the tag \fB[menu:\f(BIname\fB]\fR which creates -the menuBar called \fIname\fR and allows access. You may now or menus, -subMenus, and menuItems. Finally, use the tag \fB[done]\fR to set the -menuBar access as \fBreadonly\fR to prevent accidental corruption of the -menus. To re-access the current menuBar for alterations, use the tag -\&\fB[menu]\fR, make the alterations and then use \fB[done]\fR -.PP - -.IX Xref "menuBarCommands" -.Sh "Commands" -.IX Subsection "Commands" -.IP "\fB[menu:+\f(BIname\fB]\fR" 4 -.IX Item "[menu:+name]" -access the named menuBar for creation or alteration. If a new menuBar -is created, it is called \fIname\fR (max of 15 chars) and the current -menuBar is pushed onto the stack -.IP "\fB[menu]\fR" 4 -.IX Item "[menu]" -access the current menuBar for alteration -.IP "\fB[title:+\f(BIstring\fB]\fR" 4 -.IX Item "[title:+string]" -set the current menuBar's title to \fIstring\fR, which may contain the -following format specifiers: -\&\fB%%\fR : literal \fB%\fR character -\&\fB%n\fR : rxvt name (as per the \fB\-name\fR command-line option) -\&\fB%v\fR : rxvt version -.IP "\fB[done]\fR" 4 -.IX Item "[done]" -set menuBar access as \fBreadonly\fR. -End-of-file tag for \fB[read:+\f(BIfile\fB]\fR operations. -.IP "\fB[read:+\f(BIfile\fB]\fR" 4 -.IX Item "[read:+file]" -read menu commands directly from \fIfile\fR (extension \*(L".menu\*(R" will be -appended if required.) Start reading at a line with \fB[menu]\fR or \fB[menu:+\f(BIname\fB\fR and continuing until \fB[done]\fR is encountered. -.Sp -Blank and comment lines (starting with \fB#\fR) are ignored. Actually, -since any invalid menu commands are also ignored, almost anything could -be construed as a comment line, but this may be tightened up in the -future ... so don't count on it!. -.IP "\fB[read:+\f(BIfile\fB;+\f(BIname\fB]\fR" 4 -.IX Item "[read:+file;+name]" -The same as \fB[read:+\f(BIfile\fB]\fR, but start reading at a line with -\&\fB[menu:+\f(BIname\fB]\fR and continuing until \fB[done:+\f(BIname\fB]\fR or -\&\fB[done]\fR is encountered. -.IP "\fB[dump]\fR" 4 -.IX Item "[dump]" -dump all menuBars to the file \fB/tmp/rxvt\-PID\fR in a format suitable for -later rereading. -.IP "\fB[rm:name]\fR" 4 -.IX Item "[rm:name]" -remove the named menuBar -.IP "\fB[rm] [rm:]\fR" 4 -.IX Item "[rm] [rm:]" -remove the current menuBar -.IP "\fB[rm*] [rm:*]\fR" 4 -.IX Item "[rm*] [rm:*]" -remove all menuBars -.IP "\fB[swap]\fR" 4 -.IX Item "[swap]" -swap the top two menuBars -.IP "\fB[prev]\fR" 4 -.IX Item "[prev]" -access the previous menuBar -.IP "\fB[next]\fR" 4 -.IX Item "[next]" -access the next menuBar -.IP "\fB[show]\fR" 4 -.IX Item "[show]" -Enable display of the menuBar -.IP "\fB[hide]\fR" 4 -.IX Item "[hide]" -Disable display of the menuBar -.IP "\fB[pixmap:+\f(BIname\fB]\fR" 4 -.IX Item "[pixmap:+name]" -.PD 0 -.IP "\fB[pixmap:+\f(BIname\fB;\f(BIscaling\fB]\fR" 4 -.IX Item "[pixmap:+name;scaling]" -.PD -(set the background pixmap globally -.Sp -\&\fBA Future implementation \f(BImay\fB make this local to the menubar\fR) -.IP "\fB[:+\f(BIcommand\fB:]\fR" 4 -.IX Item "[:+command:]" -ignore the menu readonly status and issue a \fIcommand\fR to or a menu or -menuitem or change the ; a useful shortcut for setting the quick arrows -from a menuBar. -.PP - -.IX Xref "menuBarAdd" -.Sh "Adding and accessing menus" -.IX Subsection "Adding and accessing menus" -The following commands may also be \fB+\fR prefixed. -.IP "\fB/+\fR" 4 -.IX Item "/+" -access menuBar top level -.IP "\fB./+\fR" 4 -.IX Item "./+" -access current menu level -.IP "\fB../+\fR" 4 -.IX Item "../+" -access parent menu (1 level up) -.IP "\fB../../\fR" 4 -.IX Item "../../" -access parent menu (multiple levels up) -.IP "\fB\f(BI/path/\fBmenu\fR" 4 -.IX Item "/path/menu" -add/access menu -.IP "\fB\f(BI/path/\fBmenu/*\fR" 4 -.IX Item "/path/menu/*" -add/access menu and clear it if it exists -.IP "\fB\f(BI/path/\fB{\-}\fR" 4 -.IX Item "/path/{-}" -add separator -.IP "\fB\f(BI/path/\fB{item}\fR" 4 -.IX Item "/path/{item}" -add \fBitem\fR as a label -.IP "\fB\f(BI/path/\fB{item} action\fR" 4 -.IX Item "/path/{item} action" -add/alter \fImenuitem\fR with an associated \fIaction\fR -.IP "\fB\f(BI/path/\fB{item}{right\-text}\fR" 4 -.IX Item "/path/{item}{right-text}" -add/alter \fImenuitem\fR with \fBright-text\fR as the right-justified text -and as the associated \fIaction\fR -.IP "\fB\f(BI/path/\fB{item}{rtext} action\fR" 4 -.IX Item "/path/{item}{rtext} action" -add/alter \fImenuitem\fR with an associated \fIaction\fR and with \fBrtext\fR as -the right-justified text. -.IP "Special characters in \fIaction\fR must be backslash\-escaped:" 4 -.IX Item "Special characters in action must be backslash-escaped:" -\&\fB\ea \eb \eE \ee \en \er \et \eoctal\fR -.IP "or in control-character notation:" 4 -.IX Item "or in control-character notation:" -\&\fB^@, ^A .. ^Z .. ^_, ^?\fR -.PP -To send a string starting with a \fB\s-1NUL\s0\fR (\fB^@\fR) character to the -program, start \fIaction\fR with a pair of \fB\s-1NUL\s0\fR characters (\fB^@^@\fR), -the first of which will be stripped off and the balance directed to the -program. Otherwise if \fIaction\fR begins with \fB\s-1NUL\s0\fR followed by -non\-+\fB\s-1NUL\s0\fR characters, the leading \fB\s-1NUL\s0\fR is stripped off and the -balance is sent back to rxvt. -.PP -As a convenience for the many Emacs-type editors, \fIaction\fR may start -with \fBM\-\fR (eg, \fBM\-$\fR is equivalent to \fB\eE$\fR) and a \fB\s-1CR\s0\fR will be -appended if missed from \fBM\-x\fR commands. -.PP -As a convenience for issuing XTerm \fB\s-1ESC\s0]\fR sequences from a menubar (or -quick arrow), a \fB\s-1BEL\s0\fR (\fB^G\fR) will be appended if needed. -.IP "For example," 4 -.IX Item "For example," -\&\fBM\-xapropos\fR is equivalent to \fB\eExapropos\er\fR -.IP "and" 4 -.IX Item "and" -\&\fB\eE]703;mona;100\fR is equivalent to \fB\eE]703;mona;100\ea\fR -.PP -The option \fB{\f(BIright-rtext\fB}\fR will be right\-justified. In the -absence of a specified action, this text will be used as the \fIaction\fR -as well. -.IP "For example," 4 -.IX Item "For example," -\&\fB/File/{Open}{^X^F}\fR is equivalent to \fB/File/{Open}{^X^F} ^X^F\fR -.PP -The left label \fIis\fR necessary, since it's used for matching, but -implicitly hiding the left label (by using same name for both left and -right labels), or explicitly hiding the left label (by preceeding it -with a dot), makes it possible to have right-justified text only. -.IP "For example," 4 -.IX Item "For example," -\&\fB/File/{Open}{Open} Open-File-Action\fR -.IP "or hiding it" 4 -.IX Item "or hiding it" -\&\fB/File/{.anylabel}{Open} Open-File-Action\fR -.PP - -.IX Xref "menuBarRemove" -.Sh "Removing menus" -.IX Subsection "Removing menus" -.IP "\fB\-/*+\fR" 4 -.IX Item "-/*+" -remove all menus from the menuBar, the same as \fB[clear]\fR -.IP "\fB\-+\f(BI/path\fBmenu+\fR" 4 -.IX Item "-+/pathmenu+" -remove menu -.IP "\fB\-+\f(BI/path\fB{item}+\fR" 4 -.IX Item "-+/path{item}+" -remove item -.IP "\fB\-+\f(BI/path\fB{\-}\fR" 4 -.IX Item "-+/path{-}" -remove separator) -.IP "\fB\-/path/menu/*\fR" 4 -.IX Item "-/path/menu/*" -remove all items, separators and submenus from menu -.PP - -.IX Xref "menuBarArrows" -.Sh "Quick Arrows" -.IX Subsection "Quick Arrows" -The menus also provide a hook for \fIquick arrows\fR to provide easier -user access. If nothing has been explicitly set, the default is to -emulate the curror keys. The syntax permits each arrow to be altered -individually or all four at once without re-entering their common -beginning/end text. For example, to explicitly associate cursor actions -with the arrows, any of the following forms could be used: -.IP "\fB+\f(BIRight\fB\fR" 4 -.IX Item "+Right" -.PD 0 -.IP "\fB+\f(BILeft\fB\fR" 4 -.IX Item "+Left" -.IP "\fB+\f(BIUp\fB\fR" 4 -.IX Item "+Up" -.IP "\fB+\f(BIDown\fB\fR" 4 -.IX Item "+Down" -.PD -Define actions for the respective arrow buttons -.IP "\fB+\f(BIBegin\fB\fR" 4 -.IX Item "+Begin" -.PD 0 -.IP "\fB+\f(BIEnd\fB\fR" 4 -.IX Item "+End" -.PD -Define common beginning/end parts for \fIquick arrows\fR which used in -conjunction with the above constructs -.IP "For example, define arrows individually," 4 -.IX Item "For example, define arrows individually," -.Vb 1 -\& \eE[A -.Ve -.Sp -.Vb 1 -\& \eE[B -.Ve -.Sp -.Vb 1 -\& \eE[C -.Ve -.Sp -.Vb 1 -\& \eE[D -.Ve -.IP "or all at once" 4 -.IX Item "or all at once" -.Vb 1 -\& \eE[AZ<>\eE[BZ<>\eE[CZ<>\eE[D -.Ve -.IP "or more compactly (factoring out common parts)" 4 -.IX Item "or more compactly (factoring out common parts)" -.Vb 1 -\& \eE[AZ<>BZ<>CZ<>D -.Ve -.PP - -.IX Xref "menuBarSummary" -.Sh "Command Summary" -.IX Subsection "Command Summary" -A short summary of the most \fIcommon\fR commands: -.IP "[menu:name]" 4 -.IX Item "[menu:name]" -use an existing named menuBar or start a new one -.IP "[menu]" 4 -.IX Item "[menu]" -use the current menuBar -.IP "[title:string]" 4 -.IX Item "[title:string]" -set menuBar title -.IP "[done]" 4 -.IX Item "[done]" -set menu access to readonly and, if reading from a file, signal \s-1EOF\s0 -.IP "[done:name]" 4 -.IX Item "[done:name]" -if reading from a file using [read:file;name] signal \s-1EOF\s0 -.IP "[rm:name]" 4 -.IX Item "[rm:name]" -remove named menuBar(s) -.IP "[rm] [rm:]" 4 -.IX Item "[rm] [rm:]" -remove current menuBar -.IP "[rm*] [rm:*]" 4 -.IX Item "[rm*] [rm:*]" -remove all menuBar(s) -.IP "[swap]" 4 -.IX Item "[swap]" -swap top two menuBars -.IP "[prev]" 4 -.IX Item "[prev]" -access the previous menuBar -.IP "[next]" 4 -.IX Item "[next]" -access the next menuBar -.IP "[show]" 4 -.IX Item "[show]" -map menuBar -.IP "[hide]" 4 -.IX Item "[hide]" -unmap menuBar -.IP "[pixmap;file]" 4 -.IX Item "[pixmap;file]" -.PD 0 -.IP "[pixmap;file;scaling]" 4 -.IX Item "[pixmap;file;scaling]" -.PD -set a background pixmap -.IP "[read:file]" 4 -.IX Item "[read:file]" -.PD 0 -.IP "[read:file;name]" 4 -.IX Item "[read:file;name]" -.PD -read in a menu from a file -.IP "[dump]" 4 -.IX Item "[dump]" -dump out all menuBars to /tmp/rxvt\-PID -.IP "/" 4 -access menuBar top level -.IP "./" 4 -.PD 0 -.IP "../" 4 -.IP "../../" 4 -.PD -access current or parent menu level -.IP "/path/menu" 4 -.IX Item "/path/menu" -add/access menu -.IP "/path/{\-}" 4 -.IX Item "/path/{-}" -add separator -.IP "/path/{item}{rtext} action" 4 -.IX Item "/path/{item}{rtext} action" -add/alter menu item -.IP "\-/*" 4 -remove all menus from the menuBar -.IP "\-/path/menu" 4 -.IX Item "-/path/menu" -remove menu items, separators and submenus from menu -.IP "\-/path/menu" 4 -.IX Item "-/path/menu" -remove menu -.IP "\-/path/{item}" 4 -.IX Item "-/path/{item}" -remove item -.IP "\-/path/{\-}" 4 -.IX Item "-/path/{-}" -remove separator -.IP "BeginRightLeftUpDownEnd" 4 -.IX Item "BeginRightLeftUpDownEnd" -menu quick arrows +.IX Xref "XPM" .SH "XPM" .IX Header "XPM" For the \s-1XPM\s0 XTerm escape sequence \fB\f(CB\*(C`ESC ] 20 ; Pt ST\*(C'\fB\fR then value @@ -1953,14 +1887,14 @@ the title .SH "Mouse Reporting" .IX Header "Mouse Reporting" -.ie n .IP "\fB\fB\*(C`ESC [ M \*(C'\fB\fR" 4 -.el .IP "\fB\f(CB\*(C`ESC [ M \*(C'\fB\fR" 4 +.ie n .IP "\fB\fB""ESC [ M ""\fB\fR" 4 +.el .IP "\fB\f(CBESC [ M \fB\fR" 4 .IX Item "ESC [ M " report mouse position .PP The lower 2 bits of \fB\f(CB\*(C`\*(C'\fB\fR indicate the button: -.ie n .IP "Button = \fB\fB\*(C`( \- SPACE) & 3\*(C'\fB\fR" 4 -.el .IP "Button = \fB\f(CB\*(C`( \- SPACE) & 3\*(C'\fB\fR" 4 +.ie n .IP "Button = \fB\fB""( \- SPACE) & 3""\fB\fR" 4 +.el .IP "Button = \fB\f(CB( \- SPACE) & 3\fB\fR" 4 .IX Item "Button = ( - SPACE) & 3" .TS l l . @@ -1973,8 +1907,8 @@ .PP The upper bits of \fB\f(CB\*(C`\*(C'\fB\fR indicate the modifiers when the button was pressed and are added together (X11 mouse report only): -.ie n .IP "State = \fB\fB\*(C`( \- SPACE) & 60\*(C'\fB\fR" 4 -.el .IP "State = \fB\f(CB\*(C`( \- SPACE) & 60\*(C'\fB\fR" 4 +.ie n .IP "State = \fB\fB""( \- SPACE) & 60""\fB\fR" 4 +.el .IP "State = \fB\f(CB( \- SPACE) & 60\fB\fR" 4 .IX Item "State = ( - SPACE) & 60" .TS l l . @@ -2061,34 +1995,41 @@ .SH "CONFIGURE OPTIONS" .IX Header "CONFIGURE OPTIONS" General hint: if you get compile errors, then likely your configuration -hasn't been tested well. Either try with \-\-enable\-everything or use the -\&./reconf script as a base for experiments. ./reconf is used by myself, -so it should generally be a working config. Of course, you should always -report when a combination doesn't work, so it can be fixed. Marc Lehmann -. +hasn't been tested well. Either try with \f(CW\*(C`\-\-enable\-everything\*(C'\fR or use +the \fI./reconf\fR script as a base for experiments. \fI./reconf\fR is used by +myself, so it should generally be a working config. Of course, you should +always report when a combination doesn't work, so it can be fixed. Marc +Lehmann . +.PP +All .IP "\-\-enable\-everything" 4 .IX Item "--enable-everything" -Add support for all non-multichoice options listed in \*(L"./configure -\&\-\-help\*(R". Note that unlike other enable options this is order dependant. -You can specify this and then disable options which this enables by -\&\fIfollowing\fR this with the appropriate commands. -.IP "\-\-enable\-xft" 4 -.IX Item "--enable-xft" +Add (or remove) support for all non-multichoice options listed in \*(L"./configure +\&\-\-help\*(R". +.Sp +You can specify this and then disable options you do not like by +\&\fIfollowing\fR this with the appropriate \f(CW\*(C`\-\-disable\-...\*(C'\fR arguments, +or you can start with a minimal configuration by specifying +\&\f(CW\*(C`\-\-disable\-everything\*(C'\fR and than adding just the \f(CW\*(C`\-\-enable\-...\*(C'\fR arguments +you want. +.IP "\-\-enable\-xft (default: enabled)" 4 +.IX Item "--enable-xft (default: enabled)" Add support for Xft (anti\-aliases, among others) fonts. Xft fonts are slower and require lots of memory, but as long as you don't use them, you don't pay for them. -.IP "\-\-enable\-font\-styles" 4 -.IX Item "--enable-font-styles" +.IP "\-\-enable\-font\-styles (default: on)" 4 +.IX Item "--enable-font-styles (default: on)" Add support for \fBbold\fR, \fIitalic\fR and \fB\f(BIbold italic\fB\fR font styles. The fonts can be set manually or automatically. -.IP "\-\-with\-codesets=NAME,..." 4 -.IX Item "--with-codesets=NAME,..." -Compile in support for additional codeset (encoding) groups (eu, vn are -always compiled in, which includes most 8\-bit character sets). These -codeset tables are currently only used for driving X11 core fonts, they -are not required for Xft fonts. Compiling them in will make your binary -bigger (together about 700kB), but it doesn't increase memory usage unless -you use an X11 font requiring one of these encodings. +.IP "\-\-with\-codesets=NAME,... (default: all)" 4 +.IX Item "--with-codesets=NAME,... (default: all)" +Compile in support for additional codeset (encoding) groups (\f(CW\*(C`eu\*(C'\fR, \f(CW\*(C`vn\*(C'\fR +are always compiled in, which includes most 8\-bit character sets). These +codeset tables are used for driving X11 core fonts, they are not required +for Xft fonts, although having them compiled in lets rxvt-unicode choose +replacement fonts more intelligently. Compiling them in will make your +binary bigger (all of together cost about 700kB), but it doesn't increase +memory usage unless you use a font requiring one of these encodings. .TS l l . all all available codeset groups @@ -2099,13 +2040,13 @@ kr korean encodings .TE -.IP "\-\-enable\-xim" 4 -.IX Item "--enable-xim" +.IP "\-\-enable\-xim (default: on)" 4 +.IX Item "--enable-xim (default: on)" Add support for \s-1XIM\s0 (X Input Method) protocol. This allows using alternative input methods (e.g. kinput2) and will also correctly set up the input for people using dead keys or compose keys. -.IP "\-\-enable\-unicode3" 4 -.IX Item "--enable-unicode3" +.IP "\-\-enable\-unicode3 (default: off)" 4 +.IX Item "--enable-unicode3 (default: off)" Enable direct support for displaying unicode codepoints above 65535 (the basic multilingual page). This increases storage requirements per character from 2 to 4 bytes. X11 fonts do not yet @@ -2116,116 +2057,101 @@ limited to a view thousand (shared with combining characters, see next switch), and right now rxvt-unicode cannot display them (input/output and cut&paste still work, though). -.IP "\-\-enable\-combining" 4 -.IX Item "--enable-combining" +.IP "\-\-enable\-combining (default: on)" 4 +.IX Item "--enable-combining (default: on)" Enable automatic composition of combining characters into composite characters. This is required for proper viewing of text where accents are encoded as seperate unicode characters. This is done by using precomposited characters when available or creating new pseudo-characters when no precomposed form exists. .Sp -Without \-\-enable\-unicode3, the number of additional precomposed -characters is rather limited (2048, if this is full, rxvt will use the +Without \-\-enable\-unicode3, the number of additional precomposed characters +is rather limited (2048, if this is full, rxvt-unicode will use the private use area, extending the number of combinations to 8448). With -\&\-\-enable\-unicode3, no practical limit exists. This will also enable -storage of characters >65535. +\&\-\-enable\-unicode3, no practical limit exists. +.Sp +This option will also enable storage (but not display) of characters +beyond plane 0 (>65535) when \-\-enable\-unicode3 was not specified. .Sp The combining table also contains entries for arabic presentation forms, -but these are not currently used. Bug me if you want these to be used. -.IP "\-\-enable\-fallback(=CLASS)" 4 -.IX Item "--enable-fallback(=CLASS)" -When reading resource settings, also read settings for class \s-1CLASS\s0 -(default: Rxvt). To disable resource fallback use \-\-disable\-fallback. -.IP "\-\-with\-res\-name=NAME" 4 -.IX Item "--with-res-name=NAME" -Use the given name (default: urxvt) as default application name when +but these are not currently used. Bug me if you want these to be used (and +tell me how these are to be used...). +.IP "\-\-enable\-fallback(=CLASS) (default: Rxvt)" 4 +.IX Item "--enable-fallback(=CLASS) (default: Rxvt)" +When reading resource settings, also read settings for class \s-1CLASS\s0. To disable resource fallback use \-\-disable\-fallback. +.IP "\-\-with\-res\-name=NAME (default: urxvt)" 4 +.IX Item "--with-res-name=NAME (default: urxvt)" +Use the given name as default application name when reading resources. Specify \-\-with\-res\-name=rxvt to replace rxvt. -.IP "\-\-with\-res\-class=CLASS" 4 -.IX Item "--with-res-class=CLASS" -Use the given class (default: URxvt) as default application class -when reading resources. Specify \-\-with\-res\-class=Rxvt to replace +.IP "\-\-with\-res\-class=CLASS /default: URxvt)" 4 +.IX Item "--with-res-class=CLASS /default: URxvt)" +Use the given class as default application class +when reading resources. Specify \-\-with\-res\-class=Rxvt to replace rxvt. -.IP "\-\-enable\-utmp" 4 -.IX Item "--enable-utmp" +.IP "\-\-enable\-utmp (default: on)" 4 +.IX Item "--enable-utmp (default: on)" Write user and tty to utmp file (used by programs like \fIw\fR) at start of rxvt execution and delete information when rxvt exits. -.IP "\-\-enable\-wtmp" 4 -.IX Item "--enable-wtmp" +.IP "\-\-enable\-wtmp (default: on)" 4 +.IX Item "--enable-wtmp (default: on)" Write user and tty to wtmp file (used by programs like \fIlast\fR) at start of rxvt execution and write logout when rxvt exits. This option requires \-\-enable\-utmp to also be specified. -.IP "\-\-enable\-lastlog" 4 -.IX Item "--enable-lastlog" +.IP "\-\-enable\-lastlog (default: on)" 4 +.IX Item "--enable-lastlog (default: on)" Write user and tty to lastlog file (used by programs like \&\fIlastlogin\fR) at start of rxvt execution. This option requires \&\-\-enable\-utmp to also be specified. -.IP "\-\-enable\-xpm\-background" 4 -.IX Item "--enable-xpm-background" +.IP "\-\-enable\-xpm\-background (default: on)" 4 +.IX Item "--enable-xpm-background (default: on)" Add support for \s-1XPM\s0 background pixmaps. -.IP "\-\-enable\-transparency" 4 -.IX Item "--enable-transparency" +.IP "\-\-enable\-transparency (default: on)" 4 +.IX Item "--enable-transparency (default: on)" Add support for inheriting parent backgrounds thus giving a fake transparency to the term. -.IP "\-\-enable\-fading" 4 -.IX Item "--enable-fading" -Add support for fading the text when focus is lost. -.IP "\-\-enable\-tinting" 4 -.IX Item "--enable-tinting" -Add support for tinting of transparent backgrounds. -.IP "\-\-enable\-menubar" 4 -.IX Item "--enable-menubar" -Add support for our menu bar system (this interacts badly with -dynamic locale switching currently). -.IP "\-\-enable\-rxvt\-scroll" 4 -.IX Item "--enable-rxvt-scroll" +.IP "\-\-enable\-fading (default: on)" 4 +.IX Item "--enable-fading (default: on)" +Add support for fading the text when focus is lost (requires \f(CW\*(C`\-\-enable\-transparency\*(C'\fR). +.IP "\-\-enable\-tinting (default: on)" 4 +.IX Item "--enable-tinting (default: on)" +Add support for tinting of transparent backgrounds (requires \f(CW\*(C`\-\-enable\-transparency\*(C'\fR). +.IP "\-\-enable\-rxvt\-scroll (default: on)" 4 +.IX Item "--enable-rxvt-scroll (default: on)" Add support for the original rxvt scrollbar. -.IP "\-\-enable\-next\-scroll" 4 -.IX Item "--enable-next-scroll" +.IP "\-\-enable\-next\-scroll (default: on)" 4 +.IX Item "--enable-next-scroll (default: on)" Add support for a NeXT-like scrollbar. -.IP "\-\-enable\-xterm\-scroll" 4 -.IX Item "--enable-xterm-scroll" +.IP "\-\-enable\-xterm\-scroll (default: on)" 4 +.IX Item "--enable-xterm-scroll (default: on)" Add support for an Xterm-like scrollbar. -.IP "\-\-enable\-plain\-scroll" 4 -.IX Item "--enable-plain-scroll" +.IP "\-\-enable\-plain\-scroll (default: on)" 4 +.IX Item "--enable-plain-scroll (default: on)" Add support for a very unobtrusive, plain-looking scrollbar that is the favourite of the rxvt-unicode author, having used it for many years. -.IP "\-\-enable\-half\-shadow" 4 -.IX Item "--enable-half-shadow" +.IP "\-\-enable\-half\-shadow (default: off)" 4 +.IX Item "--enable-half-shadow (default: off)" Make shadows on the scrollbar only half the normal width & height. only applicable to rxvt scrollbars. -.IP "\-\-enable\-ttygid" 4 -.IX Item "--enable-ttygid" +.IP "\-\-enable\-ttygid (default: off)" 4 +.IX Item "--enable-ttygid (default: off)" Change tty device setting to group \*(L"tty\*(R" \- only use this if your system uses this type of security. .IP "\-\-disable\-backspace\-key" 4 .IX Item "--disable-backspace-key" -Disable any handling of the backspace key by us \- let the X server -do it. +Removes any handling of the backspace key by us \- let the X server do it. .IP "\-\-disable\-delete\-key" 4 .IX Item "--disable-delete-key" -Disable any handling of the delete key by us \- let the X server +Removes any handling of the delete key by us \- let the X server do it. .IP "\-\-disable\-resources" 4 .IX Item "--disable-resources" -Remove all resources checking. -.IP "\-\-enable\-xgetdefault" 4 -.IX Item "--enable-xgetdefault" -Make resources checking via \fIXGetDefault()\fR instead of our small -version which only checks ~/.Xdefaults, or if that doesn't exist -then ~/.Xresources. -.IP "\-\-enable\-strings" 4 -.IX Item "--enable-strings" -Add support for our possibly faster \fImemset()\fR function and other -various routines, overriding your system's versions which may -have been hand-crafted in assembly or may require extra libraries -to link in. (this breaks ANSI-C rules and has problems on many -GNU/Linux systems). +Removes any support for resource checking. .IP "\-\-disable\-swapscreen" 4 .IX Item "--disable-swapscreen" -Remove support for swap screen. -.IP "\-\-enable\-frills" 4 -.IX Item "--enable-frills" +Remove support for secondary/swap screen. +.IP "\-\-enable\-frills (default: on)" 4 +.IX Item "--enable-frills (default: on)" Add support for many small features that are not essential but nice to have. Normally you want this, but for very small binaries you may want to disable this. @@ -2233,41 +2159,48 @@ A non-exhaustive list of features enabled by \f(CW\*(C`\-\-enable\-frills\*(C'\fR (possibly in combination with other switches) is: .Sp -.Vb 10 +.Vb 17 \& MWM-hints -\& seperate underline colour -\& settable border widths and borderless switch -\& settable extra linespacing -\& extra window properties (e.g. UTF-8 window names and PID) +\& EWMH-hints (pid, utf8 names) and protocols (ping) +\& seperate underline colour (-underlineColor) +\& settable border widths and borderless switch (-w, -b, -bl) +\& settable extra linespacing /-lsp) \& iso-14755-2 and -3, and visual feedback \& backindex and forwardindex escape sequence -\& window op and locale change escape sequences -\& tripleclickwords -\& settable insecure mode +\& window op and some xterm/OSC escape sequences +\& tripleclickwords (-tcw) +\& settable insecure mode (-insecure) +\& keysym remapping support +\& cursor blinking and underline cursor (-cb, -uc) +\& XEmbed support (-embed) +\& user-pty (-pty-fd) +\& hold on exit (-hold) +\& skip builtin block graphics (-sbg) +\& sgr modes 90..97 and 100..107 .Ve -.IP "\-\-enable\-iso14755" 4 -.IX Item "--enable-iso14755" +.IP "\-\-enable\-iso14755 (default: on)" 4 +.IX Item "--enable-iso14755 (default: on)" Enable extended \s-1ISO\s0 14755 support (see @@RXVT_NAME@@(1), or \&\fIdoc/rxvt.1.txt\fR). Basic support (section 5.1) is enabled by \&\f(CW\*(C`\-\-enable\-frills\*(C'\fR, while support for 5.2, 5.3 and 5.4 is enabled with this switch. -.IP "\-\-enable\-keepscrolling" 4 -.IX Item "--enable-keepscrolling" +.IP "\-\-enable\-keepscrolling (default: on)" 4 +.IX Item "--enable-keepscrolling (default: on)" Add support for continual scrolling of the display when you hold the mouse button down on a scrollbar arrow. -.IP "\-\-enable\-mousewheel" 4 -.IX Item "--enable-mousewheel" +.IP "\-\-enable\-mousewheel (default: on)" 4 +.IX Item "--enable-mousewheel (default: on)" Add support for scrolling via mouse wheel or buttons 4 & 5. -.IP "\-\-enable\-slipwheeling" 4 -.IX Item "--enable-slipwheeling" +.IP "\-\-enable\-slipwheeling (default: on)" 4 +.IX Item "--enable-slipwheeling (default: on)" Add support for continual scrolling (using the mouse wheel as an accelerator) while the control key is held down. This option requires \-\-enable\-mousewheel to also be specified. .IP "\-\-disable\-new\-selection" 4 .IX Item "--disable-new-selection" Remove support for mouse selection style like that of xterm. -.IP "\-\-enable\-dmalloc" 4 -.IX Item "--enable-dmalloc" +.IP "\-\-enable\-dmalloc (default: off)" 4 +.IX Item "--enable-dmalloc (default: off)" Use Gray Watson's malloc \- which is good for debugging See http://www.letters.com/dmalloc/ for details If you use either this or the next option, you may need to edit src/Makefile after compiling to point @@ -2275,29 +2208,33 @@ .Sp You can only use either this option and the following (should you use either) . -.IP "\-\-enable\-dlmalloc" 4 -.IX Item "--enable-dlmalloc" +.IP "\-\-enable\-dlmalloc (default: off)" 4 +.IX Item "--enable-dlmalloc (default: off)" Use Doug Lea's malloc \- which is good for a production version See for details. -.IP "\-\-enable\-smart\-resize" 4 -.IX Item "--enable-smart-resize" -Add smart growth/shrink behaviour when changing font size via from hot -keys. This should keep in a fixed position the rxvt corner which is -closest to a corner of the screen. -.IP "\-\-enable\-cursor\-blink" 4 -.IX Item "--enable-cursor-blink" -Add support for a blinking cursor. -.IP "\-\-enable\-pointer\-blank" 4 -.IX Item "--enable-pointer-blank" +.IP "\-\-enable\-smart\-resize (default: on)" 4 +.IX Item "--enable-smart-resize (default: on)" +Add smart growth/shrink behaviour when changing font size via hot +keys. This should keep the window corner which is closest to a corner of +the screen in a fixed position. +.IP "\-\-enable\-pointer\-blank (default: on)" 4 +.IX Item "--enable-pointer-blank (default: on)" Add support to have the pointer disappear when typing or inactive. -.IP "\-\-with\-name=NAME" 4 -.IX Item "--with-name=NAME" -Set the basename for the installed binaries (default: urxvt, resulting in -urxvt, urxvtd etc.). Specify \-\-with\-name=rxvt to replace rxvt. -.IP "\-\-with\-term=NAME" 4 -.IX Item "--with-term=NAME" -Change the environmental variable for the terminal to \s-1NAME\s0 (default -\&\*(L"rxvt\*(R") +.IP "\-\-enable\-perl (default: off)" 4 +.IX Item "--enable-perl (default: off)" +Enable an embedded perl interpreter. See the \fB@@RXVT_NAME@@\f(BIperl\fB\|(3)\fR +manpage (\fIdoc/rxvtperl.txt\fR) for more info on this feature, or the files +in \fIsrc/perl\-ext/\fR for the extensions that are installed by default. The +perl interpreter that is used can be specified via the \f(CW\*(C`PERL\*(C'\fR environment +variable when running configure. +.IP "\-\-with\-name=NAME (default: urxvt)" 4 +.IX Item "--with-name=NAME (default: urxvt)" +Set the basename for the installed binaries, resulting +in \f(CW\*(C`urxvt\*(C'\fR, \f(CW\*(C`urxvtd\*(C'\fR etc.). Specify \f(CW\*(C`\-\-with\-name=rxvt\*(C'\fR to replace with +\&\f(CW\*(C`rxvt\*(C'\fR. +.IP "\-\-with\-term=NAME (default: rxvt\-unicode)" 4 +.IX Item "--with-term=NAME (default: rxvt-unicode)" +Change the environmental variable for the terminal to \s-1NAME\s0. .IP "\-\-with\-terminfo=PATH" 4 .IX Item "--with-terminfo=PATH" Change the environmental variable for the path to the terminfo tree to