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

Comparing rxvt-unicode/doc/rxvt.7.man.in (file contents):
Revision 1.16 by root, Thu Feb 17 12:00:33 2005 UTC vs.
Revision 1.54 by root, Sat Jan 28 22:16:58 2006 UTC

127.\} 127.\}
128.rm #[ #] #H #V #F C 128.rm #[ #] #H #V #F C
129.\" ======================================================================== 129.\" ========================================================================
130.\" 130.\"
131.IX Title "rxvt 7" 131.IX Title "rxvt 7"
132.TH rxvt 7 "2005-02-17" "5.2" "RXVT-UNICODE" 132.TH rxvt 7 "2006-01-28" "7.4" "RXVT-UNICODE"
133.SH "NAME" 133.SH "NAME"
134RXVT REFERENCE \- FAQ, command sequences and other background information 134RXVT REFERENCE \- FAQ, command sequences and other background information
135.SH "SYNOPSIS" 135.SH "SYNOPSIS"
136.IX Header "SYNOPSIS" 136.IX Header "SYNOPSIS"
137.Vb 2 137.Vb 2
156The newest version of this document is 156The newest version of this document is
157also available on the World Wide Web at 157also available on the World Wide Web at
158<http://cvs.schmorp.de/browse/*checkout*/rxvt\-unicode/doc/rxvt.7.html>. 158<http://cvs.schmorp.de/browse/*checkout*/rxvt\-unicode/doc/rxvt.7.html>.
159.SH "FREQUENTLY ASKED QUESTIONS" 159.SH "FREQUENTLY ASKED QUESTIONS"
160.IX Header "FREQUENTLY ASKED QUESTIONS" 160.IX Header "FREQUENTLY ASKED QUESTIONS"
161.IP "The new selection selects pieces that are too big, how can I select single words?" 4
162.IX Item "The new selection selects pieces that are too big, how can I select single words?"
163Yes. For example, if you want to select alphanumeric words, you can use
164the following resource:
165.Sp
166.Vb 1
167\& URxvt.selection.pattern-0: ([[:word:]]+)
168.Ve
169.Sp
170If you click more than twice, the selection will be extended
171more and more.
172.Sp
173To get a selection that is very similar to the old code, try this pattern:
174.Sp
175.Vb 1
176\& URxvt.selection.pattern-0: ([^"&'()*,;<=>?@[\e\e\e\e]^`{|})]+)
177.Ve
178.Sp
179Please also note that the \fILeftClick Shift-LeftClik\fR combination also
180selects words like the old code.
181.IP "I don't like the new selection/popups/hotkeys/perl, how do I change/disable it?" 4
182.IX Item "I don't like the new selection/popups/hotkeys/perl, how do I change/disable it?"
183You can disable the perl extension completely by setting the
184\&\fBperl-ext-common\fR resource to the empty string, which also keeps
185rxvt-unicode from initialising perl, saving memory.
186.Sp
187If you only want to disable specific features, you first have to
188identify which perl extension is responsible. For this, read the section
189\&\fB\s-1PREPACKAGED\s0 \s-1EXTENSIONS\s0\fR in the @@RXVT_NAME@@\fIperl\fR\|(3) manpage. For
190example, to disable the \fBselection-popup\fR and \fBoption-popup\fR, specify
191this \fBperl-ext-common\fR resource:
192.Sp
193.Vb 1
194\& URxvt.perl-ext-common: default,-selection-popup,-option-popup
195.Ve
196.Sp
197This will keep the default extensions, but disable the two popup
198extensions. Some extensions can also be configured, for example,
199scrollback search mode is triggered by \fBM\-s\fR. You can move it to any
200other combination either by setting the \fBsearchable-scrollback\fR resource:
201.Sp
202.Vb 1
203\& URxvt.searchable-scrollback: CM-s
204.Ve
205.IP "Isn't rxvt supposed to be small? Don't all those features bloat?" 4
206.IX Item "Isn't rxvt supposed to be small? Don't all those features bloat?"
207I often get asked about this, and I think, no, they didn't cause extra
208bloat. If you compare a minimal rxvt and a minimal urxvt, you can see
209that the urxvt binary is larger (due to some encoding tables always being
210compiled in), but it actually uses less memory (\s-1RSS\s0) after startup. Even
211with \f(CW\*(C`\-\-disable\-everything\*(C'\fR, this comparison is a bit unfair, as many
212features unique to urxvt (locale, encoding conversion, iso14755 etc.) are
213already in use in this mode.
214.Sp
215.Vb 3
216\& text data bss drs rss filename
217\& 98398 1664 24 15695 1824 rxvt --disable-everything
218\& 188985 9048 66616 18222 1788 urxvt --disable-everything
219.Ve
220.Sp
221When you \f(CW\*(C`\-\-enable\-everything\*(C'\fR (which _is_ unfair, as this involves xft
222and full locale/XIM support which are quite bloaty inside libX11 and my
223libc), the two diverge, but not unreasnobaly so.
224.Sp
225.Vb 3
226\& text data bss drs rss filename
227\& 163431 2152 24 20123 2060 rxvt --enable-everything
228\& 1035683 49680 66648 29096 3680 urxvt --enable-everything
229.Ve
230.Sp
231The very large size of the text section is explained by the east-asian
232encoding tables, which, if unused, take up disk space but nothing else
233and can be compiled out unless you rely on X11 core fonts that use those
234encodings. The \s-1BSS\s0 size comes from the 64k emergency buffer that my c++
235compiler allocates (but of course doesn't use unless you are out of
236memory). Also, using an xft font instead of a core font immediately adds a
237few megabytes of \s-1RSS\s0. Xft indeed is responsible for a lot of \s-1RSS\s0 even when
238not used.
239.Sp
240Of course, due to every character using two or four bytes instead of one,
241a large scrollback buffer will ultimately make rxvt-unicode use more
242memory.
243.Sp
244Compared to e.g. Eterm (5112k), aterm (3132k) and xterm (4680k), this
245still fares rather well. And compared to some monsters like gnome-terminal
246(21152k + extra 4204k in separate processes) or konsole (22200k + extra
24743180k in daemons that stay around after exit, plus half a minute of
248startup time, including the hundreds of warnings it spits out), it fares
249extremely well *g*.
250.IP "Why \*(C+, isn't that unportable/bloated/uncool?" 4
251.IX Item "Why , isn't that unportable/bloated/uncool?"
252Is this a question? :) It comes up very often. The simple answer is: I had
253to write it, and \*(C+ allowed me to write and maintain it in a fraction
254of the time and effort (which is a scarce resource for me). Put even
255shorter: It simply wouldn't exist without \*(C+.
256.Sp
257My personal stance on this is that \*(C+ is less portable than C, but in
258the case of rxvt-unicode this hardly matters, as its portability limits
259are defined by things like X11, pseudo terminals, locale support and unix
260domain sockets, which are all less portable than \*(C+ itself.
261.Sp
262Regarding the bloat, see the above question: It's easy to write programs
263in C that use gobs of memory, an certainly possible to write programs in
264\&\*(C+ that don't. \*(C+ also often comes with large libraries, but this is
265not necessarily the case with \s-1GCC\s0. Here is what rxvt links against on my
266system with a minimal config:
267.Sp
268.Vb 4
269\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000)
270\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaadde000)
271\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab01d000)
272\& /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000)
273.Ve
274.Sp
275And here is rxvt\-unicode:
276.Sp
277.Vb 5
278\& libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x00002aaaaabc3000)
279\& libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00002aaaaada2000)
280\& libc.so.6 => /lib/libc.so.6 (0x00002aaaaaeb0000)
281\& libdl.so.2 => /lib/libdl.so.2 (0x00002aaaab0ee000)
282\& /lib64/ld-linux-x86-64.so.2 (0x00002aaaaaaab000)
283.Ve
284.Sp
285No large bloated libraries (of course, none were linked in statically),
286except maybe libX11 :)
287.IP "Does it support tabs, can I have a tabbed rxvt\-unicode?" 4
288.IX Item "Does it support tabs, can I have a tabbed rxvt-unicode?"
289Beginning with version 7.3, there is a perl extension that implements a
290simple tabbed terminal. It is installed by default, so any of these should
291give you tabs:
292.Sp
293.Vb 1
294\& @@RXVT_NAME@@ -pe tabbed
295.Ve
296.Sp
297.Vb 1
298\& URxvt.perl-ext-common: default,tabbed
299.Ve
300.Sp
301It will also work fine with tabbing functionality of many window managers
302or similar tabbing programs, and its embedding-features allow it to be
303embedded into other programs, as witnessed by \fIdoc/rxvt\-tabbed\fR or
304the upcoming \f(CW\*(C`Gtk2::URxvt\*(C'\fR perl module, which features a tabbed urxvt
305(murxvt) terminal as an example embedding application.
161.IP "How do I know which rxvt-unicode version I'm using?" 4 306.IP "How do I know which rxvt-unicode version I'm using?" 4
162.IX Item "How do I know which rxvt-unicode version I'm using?" 307.IX Item "How do I know which rxvt-unicode version I'm using?"
163The version number is displayed with the usage (\-h). Also the escape 308The version number is displayed with the usage (\-h). Also the escape
164sequence \f(CW\*(C`ESC [ 8 n\*(C'\fR sets the window title to the version number. 309sequence \f(CW\*(C`ESC [ 8 n\*(C'\fR sets the window title to the version number. When
310using the @@RXVT_NAME@@c client, the version displayed is that of the
311daemon.
165.IP "I am using Debian GNU/Linux and have a problem..." 4 312.IP "I am using Debian GNU/Linux and have a problem..." 4
166.IX Item "I am using Debian GNU/Linux and have a problem..." 313.IX Item "I am using Debian GNU/Linux and have a problem..."
167The Debian GNU/Linux package of rxvt-unicode contains large patches that 314The Debian GNU/Linux package of rxvt-unicode in sarge contains large
168considerably change the behaviour of rxvt\-unicode. Before reporting a 315patches that considerably change the behaviour of rxvt-unicode (but
316unfortunately this notice has been removed). Before reporting a bug to
169bug to the original rxvt-unicode author please download and install the 317the original rxvt-unicode author please download and install the genuine
170genuine version (<http://software.schmorp.de#rxvt\-unicode>) and try to 318version (<http://software.schmorp.de#rxvt\-unicode>) and try to reproduce
171reproduce the problem. If you cannot, chances are that the problems are 319the problem. If you cannot, chances are that the problems are specific to
172specific to Debian GNU/Linux, in which case it should be reported via the 320Debian GNU/Linux, in which case it should be reported via the Debian Bug
173Debian Bug Tracking System (use \f(CW\*(C`reportbug\*(C'\fR to report the bug). 321Tracking System (use \f(CW\*(C`reportbug\*(C'\fR to report the bug).
174.Sp 322.Sp
175For other problems that also affect the Debian package, you can and 323For other problems that also affect the Debian package, you can and
176probably should use the Debian \s-1BTS\s0, too, because, after all, it's also a 324probably should use the Debian \s-1BTS\s0, too, because, after all, it's also a
177bug in the Debian version and it serves as a reminder for other users that 325bug in the Debian version and it serves as a reminder for other users that
178might encounter the same issue. 326might encounter the same issue.
327.IP "I am maintaining rxvt-unicode for distribution/OS \s-1XXX\s0, any recommendation?" 4
328.IX Item "I am maintaining rxvt-unicode for distribution/OS XXX, any recommendation?"
329You should build one binary with the default options. \fIconfigure\fR
330now enables most useful options, and the trend goes to making them
331runtime\-switchable, too, so there is usually no drawback to enbaling them,
332except higher disk and possibly memory usage. The perl interpreter should
333be enabled, as important functionality (menus, selection, likely more in
334the future) depends on it.
335.Sp
336You should not overwrite the \f(CW\*(C`perl\-ext\-common\*(C'\fR snd \f(CW\*(C`perl\-ext\*(C'\fR resources
337system-wide (except maybe with \f(CW\*(C`defaults\*(C'\fR). This will result in useful
338behaviour. If your distribution aims at low memory, add an empty
339\&\f(CW\*(C`perl\-ext\-common\*(C'\fR resource to the app-defaults file. This will keep the
340perl interpreter disabled until the user enables it.
341.Sp
342If you can/want build more binaries, I recommend building a minimal
343one with \f(CW\*(C`\-\-disable\-everything\*(C'\fR (very useful) and a maximal one with
344\&\f(CW\*(C`\-\-enable\-everything\*(C'\fR (less useful, it will be very big due to a lot of
345encodings built-in that increase download times and are rarely used).
346.IP "I need to make it setuid/setgid to support utmp/ptys on my \s-1OS\s0, is this safe?" 4
347.IX Item "I need to make it setuid/setgid to support utmp/ptys on my OS, is this safe?"
348It should be, starting with release 7.1. You are encouraged to properly
349install urxvt with privileges necessary for your \s-1OS\s0 now.
350.Sp
351When rxvt-unicode detects that it runs setuid or setgid, it will fork
352into a helper process for privileged operations (pty handling on some
353systems, utmp/wtmp/lastlog handling on others) and drop privileges
354immediately. This is much safer than most other terminals that keep
355privileges while running (but is more relevant to urxvt, as it contains
356things as perl interpreters, which might be \*(L"helpful\*(R" to attackers).
357.Sp
358This forking is done as the very first within \fImain()\fR, which is very early
359and reduces possible bugs to initialisation code run before \fImain()\fR, or
360things like the dynamic loader of your system, which should result in very
361little risk.
179.IP "When I log-in to another system it tells me about missing terminfo data?" 4 362.IP "When I log-in to another system it tells me about missing terminfo data?" 4
180.IX Item "When I log-in to another system it tells me about missing terminfo data?" 363.IX Item "When I log-in to another system it tells me about missing terminfo data?"
181The terminal description used by rxvt-unicode is not as widely available 364The terminal description used by rxvt-unicode is not as widely available
182as that for xterm, or even rxvt (for which the same problem often arises). 365as that for xterm, or even rxvt (for which the same problem often arises).
183.Sp 366.Sp
205\& URxvt.termName: rxvt 388\& URxvt.termName: rxvt
206.Ve 389.Ve
207.Sp 390.Sp
208If you don't plan to use \fBrxvt\fR (quite common...) you could also replace 391If you don't plan to use \fBrxvt\fR (quite common...) you could also replace
209the rxvt terminfo file with the rxvt-unicode one. 392the rxvt terminfo file with the rxvt-unicode one.
393.ie n .IP """tic"" outputs some error when compiling the terminfo entry." 4
394.el .IP "\f(CWtic\fR outputs some error when compiling the terminfo entry." 4
395.IX Item "tic outputs some error when compiling the terminfo entry."
396Most likely it's the empty definition for \f(CW\*(C`enacs=\*(C'\fR. Just replace it by
397\&\f(CW\*(C`enacs=\eE[0@\*(C'\fR and try again.
210.ie n .IP """bash""'s readline does not work correctly under @@RXVT_NAME@@." 4 398.ie n .IP """bash""'s readline does not work correctly under @@RXVT_NAME@@." 4
211.el .IP "\f(CWbash\fR's readline does not work correctly under @@RXVT_NAME@@." 4 399.el .IP "\f(CWbash\fR's readline does not work correctly under @@RXVT_NAME@@." 4
212.IX Item "bash's readline does not work correctly under @@RXVT_NAME@@." 400.IX Item "bash's readline does not work correctly under @@RXVT_NAME@@."
213.PD 0 401.PD 0
214.IP "I need a termcap file entry." 4 402.IP "I need a termcap file entry." 4
406the \f(CW\*(C`\-lsp\*(C'\fR option to give the font more height. If that doesn't work, you 594the \f(CW\*(C`\-lsp\*(C'\fR option to give the font more height. If that doesn't work, you
407might be forced to use a different font. 595might be forced to use a different font.
408.Sp 596.Sp
409All of this is not a problem when using X11 core fonts, as their bounding 597All of this is not a problem when using X11 core fonts, as their bounding
410box data is correct. 598box data is correct.
599.IP "On Solaris 9, many line-drawing characters are too wide." 4
600.IX Item "On Solaris 9, many line-drawing characters are too wide."
601Seems to be a known bug, read
602<http://nixdoc.net/files/forum/about34198.html>. Some people use the
603following ugly workaround to get non-double-wide-characters working:
604.Sp
605.Vb 1
606\& #define wcwidth(x) wcwidth(x) > 1 ? 1 : wcwidth(x)
607.Ve
411.IP "My Compose (Multi_key) key is no longer working." 4 608.IP "My Compose (Multi_key) key is no longer working." 4
412.IX Item "My Compose (Multi_key) key is no longer working." 609.IX Item "My Compose (Multi_key) key is no longer working."
413The most common causes for this are that either your locale is not set 610The most common causes for this are that either your locale is not set
414correctly, or you specified a \fBpreeditStyle\fR that is not supported by 611correctly, or you specified a \fBpreeditStyle\fR that is not supported by
415your input method. For example, if you specified \fBOverTheSpot\fR and 612your input method. For example, if you specified \fBOverTheSpot\fR and
457.Sp 654.Sp
458As you might have guessed, FreeBSD does neither define this symobl nor 655As you might have guessed, FreeBSD does neither define this symobl nor
459does it support it. Instead, it uses it's own internal representation of 656does it support it. Instead, it uses it's own internal representation of
460\&\fBwchar_t\fR. This is, of course, completely fine with respect to standards. 657\&\fBwchar_t\fR. This is, of course, completely fine with respect to standards.
461.Sp 658.Sp
659However, that means rxvt-unicode only works in \f(CW\*(C`POSIX\*(C'\fR, \f(CW\*(C`ISO\-8859\-1\*(C'\fR and
660\&\f(CW\*(C`UTF\-8\*(C'\fR locales under FreeBSD (which all use Unicode as \fBwchar_t\fR.
661.Sp
462However, \f(CW\*(C`_\|_STDC_ISO_10646_\|_\*(C'\fR is the only sane way to support 662\&\f(CW\*(C`_\|_STDC_ISO_10646_\|_\*(C'\fR is the only sane way to support multi-language
463multi-language apps in an \s-1OS\s0, as using a locale-dependent (and 663apps in an \s-1OS\s0, as using a locale-dependent (and non\-standardized)
464non\-standardized) representation of \fBwchar_t\fR makes it impossible to 664representation of \fBwchar_t\fR makes it impossible to convert between
465convert between \fBwchar_t\fR (as used by X11 and your applications) and any 665\&\fBwchar_t\fR (as used by X11 and your applications) and any other encoding
466other encoding without implementing OS-specific-wrappers for each and 666without implementing OS-specific-wrappers for each and every locale. There
467every locale. There simply are no APIs to convert \fBwchar_t\fR into anything 667simply are no APIs to convert \fBwchar_t\fR into anything except the current
468except the current locale encoding. 668locale encoding.
469.Sp 669.Sp
470Some applications (such as the formidable \fBmlterm\fR) work around this 670Some applications (such as the formidable \fBmlterm\fR) work around this
471by carrying their own replacement functions for character set handling 671by carrying their own replacement functions for character set handling
472with them, and either implementing OS-dependent hacks or doing multiple 672with them, and either implementing OS-dependent hacks or doing multiple
473conversions (which is slow and unreliable in case the \s-1OS\s0 implements 673conversions (which is slow and unreliable in case the \s-1OS\s0 implements
474encodings slightly different than the terminal emulator). 674encodings slightly different than the terminal emulator).
475.Sp 675.Sp
476The rxvt-unicode author insists that the right way to fix this is in the 676The rxvt-unicode author insists that the right way to fix this is in the
477system libraries once and for all, instead of forcing every app to carry 677system libraries once and for all, instead of forcing every app to carry
478complete replacements for them :) 678complete replacements for them :)
679.IP "I use Solaris 9 and it doesn't compile/work/etc." 4
680.IX Item "I use Solaris 9 and it doesn't compile/work/etc."
681Try the diff in \fIdoc/solaris9.patch\fR as a base. It fixes the worst
682problems with \f(CW\*(C`wcwidth\*(C'\fR and a compile problem.
683.IP "How can I use rxvt-unicode under cygwin?" 4
684.IX Item "How can I use rxvt-unicode under cygwin?"
685rxvt-unicode should compile and run out of the box on cygwin, using
686the X11 libraries that come with cygwin. libW11 emulation is no
687longer supported (and makes no sense, either, as it only supported a
688single font). I recommend starting the X\-server in \f(CW\*(C`\-multiwindow\*(C'\fR or
689\&\f(CW\*(C`\-rootless\*(C'\fR mode instead, which will result in similar look&feel as the
690old libW11 emulation.
691.Sp
692At the time of this writing, cygwin didn't seem to support any multi-byte
693encodings (you might try \f(CW\*(C`LC_CTYPE=C\-UTF\-8\*(C'\fR), so you are likely limited
694to 8\-bit encodings.
479.IP "How does rxvt-unicode determine the encoding to use?" 4 695.IP "How does rxvt-unicode determine the encoding to use?" 4
480.IX Item "How does rxvt-unicode determine the encoding to use?" 696.IX Item "How does rxvt-unicode determine the encoding to use?"
481.PD 0 697.PD 0
482.IP "Is there an option to switch encodings?" 4 698.IP "Is there an option to switch encodings?" 4
483.IX Item "Is there an option to switch encodings?" 699.IX Item "Is there an option to switch encodings?"
568.IX Item "My input method wants <some encoding> but I want UTF-8, what can I do?" 784.IX Item "My input method wants <some encoding> but I want UTF-8, what can I do?"
569You can specify separate locales for the input method and the rest of the 785You can specify separate locales for the input method and the rest of the
570terminal, using the resource \f(CW\*(C`imlocale\*(C'\fR: 786terminal, using the resource \f(CW\*(C`imlocale\*(C'\fR:
571.Sp 787.Sp
572.Vb 1 788.Vb 1
573\& URxvt*imlocale: ja_JP.EUC-JP 789\& URxvt.imlocale: ja_JP.EUC-JP
574.Ve 790.Ve
575.Sp 791.Sp
576Now you can start your terminal with \f(CW\*(C`LC_CTYPE=ja_JP.UTF\-8\*(C'\fR and still 792Now you can start your terminal with \f(CW\*(C`LC_CTYPE=ja_JP.UTF\-8\*(C'\fR and still
577use your input method. Please note, however, that you will not be able to 793use your input method. Please note, however, that you will not be able to
578input characters outside \f(CW\*(C`EUC\-JP\*(C'\fR in a normal way then, as your input 794input characters outside \f(CW\*(C`EUC\-JP\*(C'\fR in a normal way then, as your input
603rxvt-unicode then uses 8 bytes per screen cell. 819rxvt-unicode then uses 8 bytes per screen cell.
604.IP "Can I speed up Xft rendering somehow?" 4 820.IP "Can I speed up Xft rendering somehow?" 4
605.IX Item "Can I speed up Xft rendering somehow?" 821.IX Item "Can I speed up Xft rendering somehow?"
606Yes, the most obvious way to speed it up is to avoid Xft entirely, as 822Yes, the most obvious way to speed it up is to avoid Xft entirely, as
607it is simply slow. If you still want Xft fonts you might try to disable 823it is simply slow. If you still want Xft fonts you might try to disable
608antialiasing (by appending \f(CW\*(C`:antialiasing=false\*(C'\fR), which saves lots of 824antialiasing (by appending \f(CW\*(C`:antialias=false\*(C'\fR), which saves lots of
609memory and also speeds up rendering considerably. 825memory and also speeds up rendering considerably.
610.IP "Rxvt-unicode doesn't seem to anti-alias its fonts, what is wrong?" 4 826.IP "Rxvt-unicode doesn't seem to anti-alias its fonts, what is wrong?" 4
611.IX Item "Rxvt-unicode doesn't seem to anti-alias its fonts, what is wrong?" 827.IX Item "Rxvt-unicode doesn't seem to anti-alias its fonts, what is wrong?"
612Rxvt-unicode will use whatever you specify as a font. If it needs to 828Rxvt-unicode will use whatever you specify as a font. If it needs to
613fall back to it's default font search list it will prefer X11 core 829fall back to it's default font search list it will prefer X11 core
620.IX Item "Mouse cut/paste suddenly no longer works." 836.IX Item "Mouse cut/paste suddenly no longer works."
621Make sure that mouse reporting is actually turned off since killing 837Make sure that mouse reporting is actually turned off since killing
622some editors prematurely may leave the mouse in mouse report mode. I've 838some editors prematurely may leave the mouse in mouse report mode. I've
623heard that tcsh may use mouse reporting unless it otherwise specified. A 839heard that tcsh may use mouse reporting unless it otherwise specified. A
624quick check is to see if cut/paste works when the Alt or Shift keys are 840quick check is to see if cut/paste works when the Alt or Shift keys are
625depressed. See @@RXVT_NAME@@(7) 841depressed.
626.IP "What's with this bold/blink stuff?" 4 842.IP "What's with this bold/blink stuff?" 4
627.IX Item "What's with this bold/blink stuff?" 843.IX Item "What's with this bold/blink stuff?"
628If no bold colour is set via \f(CW\*(C`colorBD:\*(C'\fR, bold will invert text using the 844If no bold colour is set via \f(CW\*(C`colorBD:\*(C'\fR, bold will invert text using the
629standard foreground colour. 845standard foreground colour.
630.Sp 846.Sp
692\& URxvt.color7: #e1dddd 908\& URxvt.color7: #e1dddd
693\& URxvt.color15: #e1dddd 909\& URxvt.color15: #e1dddd
694.Ve 910.Ve
695.IP "How can I start @@RXVT_NAME@@d in a race-free way?" 4 911.IP "How can I start @@RXVT_NAME@@d in a race-free way?" 4
696.IX Item "How can I start @@RXVT_NAME@@d in a race-free way?" 912.IX Item "How can I start @@RXVT_NAME@@d in a race-free way?"
697Despite it's name, @@RXVT_NAME@@d is not a real daemon, but more like a 913Try \f(CW\*(C`@@RXVT_NAME@@d \-f \-o\*(C'\fR, which tells @@RXVT_NAME@@d to open the
698server that answers @@RXVT_NAME@@c's requests, so it doesn't background 914display, create the listening socket and then fork.
699itself.
700.Sp
701To ensure @@RXVT_NAME@@d is listening on it's socket, you can use the
702following method to wait for the startup message before continuing:
703.Sp
704.Vb 1
705\& { @@RXVT_NAME@@d & } | read
706.Ve
707.IP "What's with the strange Backspace/Delete key behaviour?" 4 915.IP "What's with the strange Backspace/Delete key behaviour?" 4
708.IX Item "What's with the strange Backspace/Delete key behaviour?" 916.IX Item "What's with the strange Backspace/Delete key behaviour?"
709Assuming that the physical Backspace key corresponds to the 917Assuming that the physical Backspace key corresponds to the
710BackSpace keysym (not likely for Linux ... see the following 918BackSpace keysym (not likely for Linux ... see the following
711question) there are two standard values that can be used for 919question) there are two standard values that can be used for
733\& # use Backspace = ^? 941\& # use Backspace = ^?
734\& $ stty erase ^? 942\& $ stty erase ^?
735\& $ @@RXVT_NAME@@ 943\& $ @@RXVT_NAME@@
736.Ve 944.Ve
737.Sp 945.Sp
738Toggle with \f(CW\*(C`ESC [ 36 h\*(C'\fR / \f(CW\*(C`ESC [ 36 l\*(C'\fR as documented in @@RXVT_NAME@@(7). 946Toggle with \f(CW\*(C`ESC [ 36 h\*(C'\fR / \f(CW\*(C`ESC [ 36 l\*(C'\fR.
739.Sp 947.Sp
740For an existing rxvt\-unicode: 948For an existing rxvt\-unicode:
741.Sp 949.Sp
742.Vb 3 950.Vb 3
743\& # use Backspace = ^H 951\& # use Backspace = ^H
859.IX Header "RXVT TECHNICAL REFERENCE" 1067.IX Header "RXVT TECHNICAL REFERENCE"
860.SH "DESCRIPTION" 1068.SH "DESCRIPTION"
861.IX Header "DESCRIPTION" 1069.IX Header "DESCRIPTION"
862The rest of this document describes various technical aspects of 1070The rest of this document describes various technical aspects of
863\&\fBrxvt-unicode\fR. First the description of supported command sequences, 1071\&\fBrxvt-unicode\fR. First the description of supported command sequences,
864followed by menu and pixmap support and last by a description of all 1072followed by pixmap support and last by a description of all features
865features selectable at \f(CW\*(C`configure\*(C'\fR time. 1073selectable at \f(CW\*(C`configure\*(C'\fR time.
866.SH "Definitions" 1074.SH "Definitions"
867.IX Header "Definitions" 1075.IX Header "Definitions"
868.ie n .IP "\fB\fB""c""\fB\fR" 4 1076.ie n .IP "\fB\fB""c""\fB\fR" 4
869.el .IP "\fB\f(CBc\fB\fR" 4 1077.el .IP "\fB\f(CBc\fB\fR" 4
870.IX Item "c" 1078.IX Item "c"
1417l l . 1625l l .
1418h Send Mouse X & Y on button press. 1626h Send Mouse X & Y on button press.
1419l No mouse reporting. 1627l No mouse reporting.
1420.TE 1628.TE
1421 1629
1422.ie n .IP "\fB\fB""Ps = 10""\fB\fR (\fBrxvt\fR)" 4
1423.el .IP "\fB\f(CBPs = 10\fB\fR (\fBrxvt\fR)" 4
1424.IX Item "Ps = 10 (rxvt)"
1425.TS
1426l l .
1427h menuBar visible
1428l menuBar invisible
1429.TE
1430
1431.ie n .IP "\fB\fB""Ps = 25""\fB\fR" 4 1630.ie n .IP "\fB\fB""Ps = 25""\fB\fR" 4
1432.el .IP "\fB\f(CBPs = 25\fB\fR" 4 1631.el .IP "\fB\f(CBPs = 25\fB\fR" 4
1433.IX Item "Ps = 25" 1632.IX Item "Ps = 25"
1434.TS 1633.TS
1435l l . 1634l l .
1554.IX Item "Ps = 1011 (rxvt)" 1753.IX Item "Ps = 1011 (rxvt)"
1555.TS 1754.TS
1556l l . 1755l l .
1557h Scroll to bottom when a key is pressed 1756h Scroll to bottom when a key is pressed
1558l Don't scroll to bottom when a key is pressed 1757l Don't scroll to bottom when a key is pressed
1758.TE
1759
1760.ie n .IP "\fB\fB""Ps = 1021""\fB\fR (\fBrxvt\fR)" 4
1761.el .IP "\fB\f(CBPs = 1021\fB\fR (\fBrxvt\fR)" 4
1762.IX Item "Ps = 1021 (rxvt)"
1763.TS
1764l l .
1765h Bold/italic implies high intensity (see option -is)
1766l Font styles have no effect on intensity (Compile styles)
1559.TE 1767.TE
1560 1768
1561.ie n .IP "\fB\fB""Ps = 1047""\fB\fR" 4 1769.ie n .IP "\fB\fB""Ps = 1047""\fB\fR" 4
1562.el .IP "\fB\f(CBPs = 1047\fB\fR" 4 1770.el .IP "\fB\f(CBPs = 1047\fB\fR" 4
1563.IX Item "Ps = 1047" 1771.IX Item "Ps = 1047"
1610Ps = 10 Change colour of text foreground to Pt (NB: may change in future) 1818Ps = 10 Change colour of text foreground to Pt (NB: may change in future)
1611Ps = 11 Change colour of text background to Pt (NB: may change in future) 1819Ps = 11 Change colour of text background to Pt (NB: may change in future)
1612Ps = 12 Change colour of text cursor foreground to Pt 1820Ps = 12 Change colour of text cursor foreground to Pt
1613Ps = 13 Change colour of mouse foreground to Pt 1821Ps = 13 Change colour of mouse foreground to Pt
1614Ps = 17 Change colour of highlight characters to Pt 1822Ps = 17 Change colour of highlight characters to Pt
1615Ps = 18 Change colour of bold characters to Pt 1823Ps = 18 Change colour of bold characters to Pt [deprecated, see 706]
1616Ps = 19 Change colour of underlined characters to Pt 1824Ps = 19 Change colour of underlined characters to Pt [deprecated, see 707]
1617Ps = 20 Change default background to Pt 1825Ps = 20 Change background pixmap parameters (see section XPM) (Compile XPM).
1618Ps = 39 Change default foreground colour to Pt rxvt compile-time option 1826Ps = 39 Change default foreground colour to Pt.
1619Ps = 46 Change Log File to Pt unimplemented 1827Ps = 46 Change Log File to Pt unimplemented
1620Ps = 49 Change default background colour to Pt rxvt compile-time option 1828Ps = 49 Change default background colour to Pt.
1621Ps = 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 1829Ps = 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
1622Ps = 55 Log all scrollback buffer and all of screen to Pt 1830Ps = 55 Log all scrollback buffer and all of screen to Pt
1623Ps = 701 Change current locale to Pt, or, if Pt is ?, return the current locale (@@RXVT_NAME@@ extension) 1831Ps = 701 Change current locale to Pt, or, if Pt is ?, return the current locale (Compile frills).
1624Ps = 703 Menubar command Pt rxvt compile-time option (rxvt-unicode extension) 1832Ps = 702 Request version if Pt is ?, returning rxvt-unicode, the resource name, the major and minor version numbers, e.g. ESC ] 702 ; rxvt-unicode ; urxvt ; 7 ; 4 ST.
1625Ps = 704 Change colour of italic characters to Pt 1833Ps = 704 Change colour of italic characters to Pt
1626Ps = 705 Change background pixmap tint colour to Pt 1834Ps = 705 Change background pixmap tint colour to Pt (Compile transparency).
1835Ps = 706 Change colour of bold characters to Pt
1836Ps = 707 Change colour of underlined characters to Pt
1627Ps = 710 Set normal fontset to Pt. Same as Ps = 50. 1837Ps = 710 Set normal fontset to Pt. Same as Ps = 50.
1628Ps = 711 Set bold fontset to Pt. Similar to Ps = 50. 1838Ps = 711 Set bold fontset to Pt. Similar to Ps = 50 (Compile styles).
1629Ps = 712 Set italic fontset to Pt. Similar to Ps = 50. 1839Ps = 712 Set italic fontset to Pt. Similar to Ps = 50 (Compile styles).
1630Ps = 713 Set bold-italic fontset to Pt. Similar to Ps = 50. 1840Ps = 713 Set bold-italic fontset to Pt. Similar to Ps = 50 (Compile styles).
1841Ps = 720 Move viewing window up by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills).
1842Ps = 721 Move viewing window down by Pt lines, or clear scrollback buffer if Pt = 0 (Compile frills).
1843Ps = 777 Call the perl extension with the given string, which should be of the form extension:parameters (Compile perl).
1631.TE 1844.TE
1632 1845
1633.PP 1846.PP
1634 1847
1635.IX Xref "menuBar" 1848.IX Xref "XPM"
1636.SH "menuBar"
1637.IX Header "menuBar"
1638\&\fBThe exact syntax used is \f(BIalmost\fB solidified.\fR
1639In the menus, \fB\s-1DON\s0'T\fR try to use menuBar commands that add or remove a
1640menuBar.
1641.PP
1642Note that in all of the commands, the \fB\f(BI/path/\fB\fR \fIcannot\fR be
1643omitted: use \fB./\fR to specify a menu relative to the current menu.
1644.Sh "Overview of menuBar operation"
1645.IX Subsection "Overview of menuBar operation"
1646For the menuBar XTerm escape sequence \f(CW\*(C`ESC ] 703 ; Pt ST\*(C'\fR, the syntax
1647of \f(CW\*(C`Pt\*(C'\fR can be used for a variety of tasks:
1648.PP
1649At the top level is the current menuBar which is a member of a circular
1650linked-list of other such menuBars.
1651.PP
1652The menuBar acts as a parent for the various drop-down menus, which in
1653turn, may have labels, separator lines, menuItems and subMenus.
1654.PP
1655The menuItems are the useful bits: you can use them to mimic keyboard
1656input or even to send text or escape sequences back to rxvt.
1657.PP
1658The menuBar syntax is intended to provide a simple yet robust method of
1659constructing and manipulating menus and navigating through the
1660menuBars.
1661.PP
1662The first step is to use the tag \fB[menu:\f(BIname\fB]\fR which creates
1663the menuBar called \fIname\fR and allows access. You may now or menus,
1664subMenus, and menuItems. Finally, use the tag \fB[done]\fR to set the
1665menuBar access as \fBreadonly\fR to prevent accidental corruption of the
1666menus. To re-access the current menuBar for alterations, use the tag
1667\&\fB[menu]\fR, make the alterations and then use \fB[done]\fR
1668.PP
1669
1670.IX Xref "menuBarCommands"
1671.Sh "Commands"
1672.IX Subsection "Commands"
1673.IP "\fB[menu:+\f(BIname\fB]\fR" 4
1674.IX Item "[menu:+name]"
1675access the named menuBar for creation or alteration. If a new menuBar
1676is created, it is called \fIname\fR (max of 15 chars) and the current
1677menuBar is pushed onto the stack
1678.IP "\fB[menu]\fR" 4
1679.IX Item "[menu]"
1680access the current menuBar for alteration
1681.IP "\fB[title:+\f(BIstring\fB]\fR" 4
1682.IX Item "[title:+string]"
1683set the current menuBar's title to \fIstring\fR, which may contain the
1684following format specifiers:
1685.Sp
1686.Vb 3
1687\& B<%n> rxvt name (as per the B<-name> command-line option)
1688\& B<%v> rxvt version
1689\& B<%%> literal B<%> character
1690.Ve
1691.IP "\fB[done]\fR" 4
1692.IX Item "[done]"
1693set menuBar access as \fBreadonly\fR.
1694End-of-file tag for \fB[read:+\f(BIfile\fB]\fR operations.
1695.IP "\fB[read:+\f(BIfile\fB]\fR" 4
1696.IX Item "[read:+file]"
1697read menu commands directly from \fIfile\fR (extension \*(L".menu\*(R" will be
1698appended 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.
1699.Sp
1700Blank and comment lines (starting with \fB#\fR) are ignored. Actually,
1701since any invalid menu commands are also ignored, almost anything could
1702be construed as a comment line, but this may be tightened up in the
1703future ... so don't count on it!.
1704.IP "\fB[read:+\f(BIfile\fB;+\f(BIname\fB]\fR" 4
1705.IX Item "[read:+file;+name]"
1706The same as \fB[read:+\f(BIfile\fB]\fR, but start reading at a line with
1707\&\fB[menu:+\f(BIname\fB]\fR and continuing until \fB[done:+\f(BIname\fB]\fR or
1708\&\fB[done]\fR is encountered.
1709.IP "\fB[dump]\fR" 4
1710.IX Item "[dump]"
1711dump all menuBars to the file \fB/tmp/rxvt\-PID\fR in a format suitable for
1712later rereading.
1713.IP "\fB[rm:name]\fR" 4
1714.IX Item "[rm:name]"
1715remove the named menuBar
1716.IP "\fB[rm] [rm:]\fR" 4
1717.IX Item "[rm] [rm:]"
1718remove the current menuBar
1719.IP "\fB[rm*] [rm:*]\fR" 4
1720.IX Item "[rm*] [rm:*]"
1721remove all menuBars
1722.IP "\fB[swap]\fR" 4
1723.IX Item "[swap]"
1724swap the top two menuBars
1725.IP "\fB[prev]\fR" 4
1726.IX Item "[prev]"
1727access the previous menuBar
1728.IP "\fB[next]\fR" 4
1729.IX Item "[next]"
1730access the next menuBar
1731.IP "\fB[show]\fR" 4
1732.IX Item "[show]"
1733Enable display of the menuBar
1734.IP "\fB[hide]\fR" 4
1735.IX Item "[hide]"
1736Disable display of the menuBar
1737.IP "\fB[pixmap:+\f(BIname\fB]\fR" 4
1738.IX Item "[pixmap:+name]"
1739.PD 0
1740.IP "\fB[pixmap:+\f(BIname\fB;\f(BIscaling\fB]\fR" 4
1741.IX Item "[pixmap:+name;scaling]"
1742.PD
1743(set the background pixmap globally
1744.Sp
1745\&\fBA Future implementation \f(BImay\fB make this local to the menubar\fR)
1746.IP "\fB[:+\f(BIcommand\fB:]\fR" 4
1747.IX Item "[:+command:]"
1748ignore the menu readonly status and issue a \fIcommand\fR to or a menu or
1749menuitem or change the ; a useful shortcut for setting the quick arrows
1750from a menuBar.
1751.PP
1752
1753.IX Xref "menuBarAdd"
1754.Sh "Adding and accessing menus"
1755.IX Subsection "Adding and accessing menus"
1756The following commands may also be \fB+\fR prefixed.
1757.IP "\fB/+\fR" 4
1758.IX Item "/+"
1759access menuBar top level
1760.IP "\fB./+\fR" 4
1761.IX Item "./+"
1762access current menu level
1763.IP "\fB../+\fR" 4
1764.IX Item "../+"
1765access parent menu (1 level up)
1766.IP "\fB../../\fR" 4
1767.IX Item "../../"
1768access parent menu (multiple levels up)
1769.IP "\fB\f(BI/path/\fBmenu\fR" 4
1770.IX Item "/path/menu"
1771add/access menu
1772.IP "\fB\f(BI/path/\fBmenu/*\fR" 4
1773.IX Item "/path/menu/*"
1774add/access menu and clear it if it exists
1775.IP "\fB\f(BI/path/\fB{\-}\fR" 4
1776.IX Item "/path/{-}"
1777add separator
1778.IP "\fB\f(BI/path/\fB{item}\fR" 4
1779.IX Item "/path/{item}"
1780add \fBitem\fR as a label
1781.IP "\fB\f(BI/path/\fB{item} action\fR" 4
1782.IX Item "/path/{item} action"
1783add/alter \fImenuitem\fR with an associated \fIaction\fR
1784.IP "\fB\f(BI/path/\fB{item}{right\-text}\fR" 4
1785.IX Item "/path/{item}{right-text}"
1786add/alter \fImenuitem\fR with \fBright-text\fR as the right-justified text
1787and as the associated \fIaction\fR
1788.IP "\fB\f(BI/path/\fB{item}{rtext} action\fR" 4
1789.IX Item "/path/{item}{rtext} action"
1790add/alter \fImenuitem\fR with an associated \fIaction\fR and with \fBrtext\fR as
1791the right-justified text.
1792.IP "Special characters in \fIaction\fR must be backslash\-escaped:" 4
1793.IX Item "Special characters in action must be backslash-escaped:"
1794\&\fB\ea \eb \eE \ee \en \er \et \eoctal\fR
1795.IP "or in control-character notation:" 4
1796.IX Item "or in control-character notation:"
1797\&\fB^@, ^A .. ^Z .. ^_, ^?\fR
1798.PP
1799To send a string starting with a \fB\s-1NUL\s0\fR (\fB^@\fR) character to the
1800program, start \fIaction\fR with a pair of \fB\s-1NUL\s0\fR characters (\fB^@^@\fR),
1801the first of which will be stripped off and the balance directed to the
1802program. Otherwise if \fIaction\fR begins with \fB\s-1NUL\s0\fR followed by
1803non\-+\fB\s-1NUL\s0\fR characters, the leading \fB\s-1NUL\s0\fR is stripped off and the
1804balance is sent back to rxvt.
1805.PP
1806As a convenience for the many Emacs-type editors, \fIaction\fR may start
1807with \fBM\-\fR (eg, \fBM\-$\fR is equivalent to \fB\eE$\fR) and a \fB\s-1CR\s0\fR will be
1808appended if missed from \fBM\-x\fR commands.
1809.PP
1810As a convenience for issuing XTerm \fB\s-1ESC\s0 ]\fR sequences from a menubar (or
1811quick arrow), a \fB\s-1BEL\s0\fR (\fB^G\fR) will be appended if needed.
1812.IP "For example," 4
1813.IX Item "For example,"
1814\&\fBM\-xapropos\fR is equivalent to \fB\eExapropos\er\fR
1815.IP "and" 4
1816.IX Item "and"
1817\&\fB\eE]703;mona;100\fR is equivalent to \fB\eE]703;mona;100\ea\fR
1818.PP
1819The option \fB{\f(BIright-rtext\fB}\fR will be right\-justified. In the
1820absence of a specified action, this text will be used as the \fIaction\fR
1821as well.
1822.IP "For example," 4
1823.IX Item "For example,"
1824\&\fB/File/{Open}{^X^F}\fR is equivalent to \fB/File/{Open}{^X^F} ^X^F\fR
1825.PP
1826The left label \fIis\fR necessary, since it's used for matching, but
1827implicitly hiding the left label (by using same name for both left and
1828right labels), or explicitly hiding the left label (by preceeding it
1829with a dot), makes it possible to have right-justified text only.
1830.IP "For example," 4
1831.IX Item "For example,"
1832\&\fB/File/{Open}{Open} Open-File-Action\fR
1833.IP "or hiding it" 4
1834.IX Item "or hiding it"
1835\&\fB/File/{.anylabel}{Open} Open-File-Action\fR
1836.PP
1837
1838.IX Xref "menuBarRemove"
1839.Sh "Removing menus"
1840.IX Subsection "Removing menus"
1841.IP "\fB\-/*+\fR" 4
1842.IX Item "-/*+"
1843remove all menus from the menuBar, the same as \fB[clear]\fR
1844.IP "\fB\-+\f(BI/path\fBmenu+\fR" 4
1845.IX Item "-+/pathmenu+"
1846remove menu
1847.IP "\fB\-+\f(BI/path\fB{item}+\fR" 4
1848.IX Item "-+/path{item}+"
1849remove item
1850.IP "\fB\-+\f(BI/path\fB{\-}\fR" 4
1851.IX Item "-+/path{-}"
1852remove separator)
1853.IP "\fB\-/path/menu/*\fR" 4
1854.IX Item "-/path/menu/*"
1855remove all items, separators and submenus from menu
1856.PP
1857
1858.IX Xref "menuBarArrows"
1859.Sh "Quick Arrows"
1860.IX Subsection "Quick Arrows"
1861The menus also provide a hook for \fIquick arrows\fR to provide easier
1862user access. If nothing has been explicitly set, the default is to
1863emulate the curror keys. The syntax permits each arrow to be altered
1864individually or all four at once without re-entering their common
1865beginning/end text. For example, to explicitly associate cursor actions
1866with the arrows, any of the following forms could be used:
1867.IP "\fB<r>+\f(BIRight\fB\fR" 4
1868.IX Item "<r>+Right"
1869.PD 0
1870.IP "\fB<l>+\f(BILeft\fB\fR" 4
1871.IX Item "<l>+Left"
1872.IP "\fB<u>+\f(BIUp\fB\fR" 4
1873.IX Item "<u>+Up"
1874.IP "\fB<d>+\f(BIDown\fB\fR" 4
1875.IX Item "<d>+Down"
1876.PD
1877Define actions for the respective arrow buttons
1878.IP "\fB<b>+\f(BIBegin\fB\fR" 4
1879.IX Item "<b>+Begin"
1880.PD 0
1881.IP "\fB<e>+\f(BIEnd\fB\fR" 4
1882.IX Item "<e>+End"
1883.PD
1884Define common beginning/end parts for \fIquick arrows\fR which used in
1885conjunction with the above <r> <l> <u> <d> constructs
1886.IP "For example, define arrows individually," 4
1887.IX Item "For example, define arrows individually,"
1888.Vb 1
1889\& <u>\eE[A
1890.Ve
1891.Sp
1892.Vb 1
1893\& <d>\eE[B
1894.Ve
1895.Sp
1896.Vb 1
1897\& <r>\eE[C
1898.Ve
1899.Sp
1900.Vb 1
1901\& <l>\eE[D
1902.Ve
1903.IP "or all at once" 4
1904.IX Item "or all at once"
1905.Vb 1
1906\& <u>\eE[AZ<><d>\eE[BZ<><r>\eE[CZ<><l>\eE[D
1907.Ve
1908.IP "or more compactly (factoring out common parts)" 4
1909.IX Item "or more compactly (factoring out common parts)"
1910.Vb 1
1911\& <b>\eE[<u>AZ<><d>BZ<><r>CZ<><l>D
1912.Ve
1913.PP
1914
1915.IX Xref "menuBarSummary"
1916.Sh "Command Summary"
1917.IX Subsection "Command Summary"
1918A short summary of the most \fIcommon\fR commands:
1919.IP "[menu:name]" 4
1920.IX Item "[menu:name]"
1921use an existing named menuBar or start a new one
1922.IP "[menu]" 4
1923.IX Item "[menu]"
1924use the current menuBar
1925.IP "[title:string]" 4
1926.IX Item "[title:string]"
1927set menuBar title
1928.IP "[done]" 4
1929.IX Item "[done]"
1930set menu access to readonly and, if reading from a file, signal \s-1EOF\s0
1931.IP "[done:name]" 4
1932.IX Item "[done:name]"
1933if reading from a file using [read:file;name] signal \s-1EOF\s0
1934.IP "[rm:name]" 4
1935.IX Item "[rm:name]"
1936remove named menuBar(s)
1937.IP "[rm] [rm:]" 4
1938.IX Item "[rm] [rm:]"
1939remove current menuBar
1940.IP "[rm*] [rm:*]" 4
1941.IX Item "[rm*] [rm:*]"
1942remove all menuBar(s)
1943.IP "[swap]" 4
1944.IX Item "[swap]"
1945swap top two menuBars
1946.IP "[prev]" 4
1947.IX Item "[prev]"
1948access the previous menuBar
1949.IP "[next]" 4
1950.IX Item "[next]"
1951access the next menuBar
1952.IP "[show]" 4
1953.IX Item "[show]"
1954map menuBar
1955.IP "[hide]" 4
1956.IX Item "[hide]"
1957unmap menuBar
1958.IP "[pixmap;file]" 4
1959.IX Item "[pixmap;file]"
1960.PD 0
1961.IP "[pixmap;file;scaling]" 4
1962.IX Item "[pixmap;file;scaling]"
1963.PD
1964set a background pixmap
1965.IP "[read:file]" 4
1966.IX Item "[read:file]"
1967.PD 0
1968.IP "[read:file;name]" 4
1969.IX Item "[read:file;name]"
1970.PD
1971read in a menu from a file
1972.IP "[dump]" 4
1973.IX Item "[dump]"
1974dump out all menuBars to /tmp/rxvt\-PID
1975.IP "/" 4
1976access menuBar top level
1977.IP "./" 4
1978.PD 0
1979.IP "../" 4
1980.IP "../../" 4
1981.PD
1982access current or parent menu level
1983.IP "/path/menu" 4
1984.IX Item "/path/menu"
1985add/access menu
1986.IP "/path/{\-}" 4
1987.IX Item "/path/{-}"
1988add separator
1989.IP "/path/{item}{rtext} action" 4
1990.IX Item "/path/{item}{rtext} action"
1991add/alter menu item
1992.IP "\-/*" 4
1993remove all menus from the menuBar
1994.IP "\-/path/menu" 4
1995.IX Item "-/path/menu"
1996remove menu items, separators and submenus from menu
1997.IP "\-/path/menu" 4
1998.IX Item "-/path/menu"
1999remove menu
2000.IP "\-/path/{item}" 4
2001.IX Item "-/path/{item}"
2002remove item
2003.IP "\-/path/{\-}" 4
2004.IX Item "-/path/{-}"
2005remove separator
2006.IP "<b>Begin<r>Right<l>Left<u>Up<d>Down<e>End" 4
2007.IX Item "<b>Begin<r>Right<l>Left<u>Up<d>Down<e>End"
2008menu quick arrows
2009.SH "XPM" 1849.SH "XPM"
2010.IX Header "XPM" 1850.IX Header "XPM"
2011For the \s-1XPM\s0 XTerm escape sequence \fB\f(CB\*(C`ESC ] 20 ; Pt ST\*(C'\fB\fR then value 1851For the \s-1XPM\s0 XTerm escape sequence \fB\f(CB\*(C`ESC ] 20 ; Pt ST\*(C'\fB\fR then value
2012of \fB\f(CB\*(C`Pt\*(C'\fB\fR can be the name of the background pixmap followed by a 1852of \fB\f(CB\*(C`Pt\*(C'\fB\fR can be the name of the background pixmap followed by a
2013sequence of scaling/positioning commands separated by semi\-colons. The 1853sequence of scaling/positioning commands separated by semi\-colons. The
2163.TE 2003.TE
2164 2004
2165.SH "CONFIGURE OPTIONS" 2005.SH "CONFIGURE OPTIONS"
2166.IX Header "CONFIGURE OPTIONS" 2006.IX Header "CONFIGURE OPTIONS"
2167General hint: if you get compile errors, then likely your configuration 2007General hint: if you get compile errors, then likely your configuration
2168hasn't been tested well. Either try with \-\-enable\-everything or use the 2008hasn't been tested well. Either try with \f(CW\*(C`\-\-enable\-everything\*(C'\fR or use
2169\&./reconf script as a base for experiments. ./reconf is used by myself, 2009the \fI./reconf\fR script as a base for experiments. \fI./reconf\fR is used by
2170so it should generally be a working config. Of course, you should always 2010myself, so it should generally be a working config. Of course, you should
2171report when a combination doesn't work, so it can be fixed. Marc Lehmann 2011always report when a combination doesn't work, so it can be fixed. Marc
2172<rxvt@schmorp.de>. 2012Lehmann <rxvt@schmorp.de>.
2013.PP
2014All
2173.IP "\-\-enable\-everything" 4 2015.IP "\-\-enable\-everything" 4
2174.IX Item "--enable-everything" 2016.IX Item "--enable-everything"
2175Add support for all non-multichoice options listed in \*(L"./configure 2017Add (or remove) support for all non-multichoice options listed in \*(L"./configure
2176\&\-\-help\*(R". Note that unlike other enable options this is order dependant. 2018\&\-\-help\*(R".
2019.Sp
2177You can specify this and then disable options which this enables by 2020You can specify this and then disable options you do not like by
2178\&\fIfollowing\fR this with the appropriate commands. 2021\&\fIfollowing\fR this with the appropriate \f(CW\*(C`\-\-disable\-...\*(C'\fR arguments,
2179.IP "\-\-enable\-xft" 4 2022or you can start with a minimal configuration by specifying
2180.IX Item "--enable-xft" 2023\&\f(CW\*(C`\-\-disable\-everything\*(C'\fR and than adding just the \f(CW\*(C`\-\-enable\-...\*(C'\fR arguments
2024you want.
2025.IP "\-\-enable\-xft (default: enabled)" 4
2026.IX Item "--enable-xft (default: enabled)"
2181Add support for Xft (anti\-aliases, among others) fonts. Xft fonts are 2027Add support for Xft (anti\-aliases, among others) fonts. Xft fonts are
2182slower and require lots of memory, but as long as you don't use them, you 2028slower and require lots of memory, but as long as you don't use them, you
2183don't pay for them. 2029don't pay for them.
2184.IP "\-\-enable\-font\-styles" 4 2030.IP "\-\-enable\-font\-styles (default: on)" 4
2185.IX Item "--enable-font-styles" 2031.IX Item "--enable-font-styles (default: on)"
2186Add support for \fBbold\fR, \fIitalic\fR and \fB\f(BIbold italic\fB\fR font 2032Add support for \fBbold\fR, \fIitalic\fR and \fB\f(BIbold italic\fB\fR font
2187styles. The fonts can be set manually or automatically. 2033styles. The fonts can be set manually or automatically.
2188.IP "\-\-with\-codesets=NAME,..." 4 2034.IP "\-\-with\-codesets=NAME,... (default: all)" 4
2189.IX Item "--with-codesets=NAME,..." 2035.IX Item "--with-codesets=NAME,... (default: all)"
2190Compile in support for additional codeset (encoding) groups (eu, vn are 2036Compile in support for additional codeset (encoding) groups (\f(CW\*(C`eu\*(C'\fR, \f(CW\*(C`vn\*(C'\fR
2191always compiled in, which includes most 8\-bit character sets). These 2037are always compiled in, which includes most 8\-bit character sets). These
2192codeset tables are currently only used for driving X11 core fonts, they 2038codeset tables are used for driving X11 core fonts, they are not required
2193are not required for Xft fonts. Compiling them in will make your binary 2039for Xft fonts, although having them compiled in lets rxvt-unicode choose
2194bigger (together about 700kB), but it doesn't increase memory usage unless 2040replacement fonts more intelligently. Compiling them in will make your
2041binary bigger (all of together cost about 700kB), but it doesn't increase
2195you use an X11 font requiring one of these encodings. 2042memory usage unless you use a font requiring one of these encodings.
2196.TS 2043.TS
2197l l . 2044l l .
2198all all available codeset groups 2045all all available codeset groups
2199zh common chinese encodings 2046zh common chinese encodings
2200zh_ext rarely used but very big chinese encodigs 2047zh_ext rarely used but very big chinese encodigs
2201jp common japanese encodings 2048jp common japanese encodings
2202jp_ext rarely used but big japanese encodings 2049jp_ext rarely used but big japanese encodings
2203kr korean encodings 2050kr korean encodings
2204.TE 2051.TE
2205 2052
2206.IP "\-\-enable\-xim" 4 2053.IP "\-\-enable\-xim (default: on)" 4
2207.IX Item "--enable-xim" 2054.IX Item "--enable-xim (default: on)"
2208Add support for \s-1XIM\s0 (X Input Method) protocol. This allows using 2055Add support for \s-1XIM\s0 (X Input Method) protocol. This allows using
2209alternative input methods (e.g. kinput2) and will also correctly 2056alternative input methods (e.g. kinput2) and will also correctly
2210set up the input for people using dead keys or compose keys. 2057set up the input for people using dead keys or compose keys.
2211.IP "\-\-enable\-unicode3" 4 2058.IP "\-\-enable\-unicode3 (default: off)" 4
2212.IX Item "--enable-unicode3" 2059.IX Item "--enable-unicode3 (default: off)"
2060Recommended to stay off unless you really need non-BMP characters.
2061.Sp
2213Enable direct support for displaying unicode codepoints above 2062Enable direct support for displaying unicode codepoints above
221465535 (the basic multilingual page). This increases storage 206365535 (the basic multilingual page). This increases storage
2215requirements per character from 2 to 4 bytes. X11 fonts do not yet 2064requirements per character from 2 to 4 bytes. X11 fonts do not yet
2216support these extra characters, but Xft does. 2065support these extra characters, but Xft does.
2217.Sp 2066.Sp
2218Please note that rxvt-unicode can store unicode code points >65535 2067Please note that rxvt-unicode can store unicode code points >65535
2219even without this flag, but the number of such characters is 2068even without this flag, but the number of such characters is
2220limited to a view thousand (shared with combining characters, 2069limited to a view thousand (shared with combining characters,
2221see next switch), and right now rxvt-unicode cannot display them 2070see next switch), and right now rxvt-unicode cannot display them
2222(input/output and cut&paste still work, though). 2071(input/output and cut&paste still work, though).
2223.IP "\-\-enable\-combining" 4 2072.IP "\-\-enable\-combining (default: on)" 4
2224.IX Item "--enable-combining" 2073.IX Item "--enable-combining (default: on)"
2225Enable automatic composition of combining characters into 2074Enable automatic composition of combining characters into
2226composite characters. This is required for proper viewing of text 2075composite characters. This is required for proper viewing of text
2227where accents are encoded as seperate unicode characters. This is 2076where accents are encoded as seperate unicode characters. This is
2228done by using precomposited characters when available or creating 2077done by using precomposited characters when available or creating
2229new pseudo-characters when no precomposed form exists. 2078new pseudo-characters when no precomposed form exists.
2230.Sp 2079.Sp
2231Without \-\-enable\-unicode3, the number of additional precomposed characters 2080Without \-\-enable\-unicode3, the number of additional precomposed
2232is rather limited (2048, if this is full, rxvt-unicode will use the 2081characters is somewhat limited (the 6400 private use characters will be
2233private use area, extending the number of combinations to 8448). With
2234\&\-\-enable\-unicode3, no practical limit exists. 2082(ab\-)used). With \-\-enable\-unicode3, no practical limit exists.
2235.Sp 2083.Sp
2236This option will also enable storage (but not display) of characters 2084This option will also enable storage (but not display) of characters
2237beyond plane 0 (>65535) when \-\-enable\-unicode3 was not specified. 2085beyond plane 0 (>65535) when \-\-enable\-unicode3 was not specified.
2238.Sp 2086.Sp
2239The combining table also contains entries for arabic presentation forms, 2087The combining table also contains entries for arabic presentation forms,
2240but these are not currently used. Bug me if you want these to be used (and 2088but these are not currently used. Bug me if you want these to be used (and
2241tell me how these are to be used...). 2089tell me how these are to be used...).
2242.IP "\-\-enable\-fallback(=CLASS)" 4 2090.IP "\-\-enable\-fallback(=CLASS) (default: Rxvt)" 4
2243.IX Item "--enable-fallback(=CLASS)" 2091.IX Item "--enable-fallback(=CLASS) (default: Rxvt)"
2244When reading resource settings, also read settings for class \s-1CLASS\s0 2092When reading resource settings, also read settings for class \s-1CLASS\s0. To
2245(default: Rxvt). To disable resource fallback use \-\-disable\-fallback. 2093disable resource fallback use \-\-disable\-fallback.
2246.IP "\-\-with\-res\-name=NAME" 4 2094.IP "\-\-with\-res\-name=NAME (default: urxvt)" 4
2247.IX Item "--with-res-name=NAME" 2095.IX Item "--with-res-name=NAME (default: urxvt)"
2248Use the given name (default: urxvt) as default application name when 2096Use the given name as default application name when
2249reading resources. Specify \-\-with\-res\-name=rxvt to replace rxvt. 2097reading resources. Specify \-\-with\-res\-name=rxvt to replace rxvt.
2250.IP "\-\-with\-res\-class=CLASS" 4 2098.IP "\-\-with\-res\-class=CLASS /default: URxvt)" 4
2251.IX Item "--with-res-class=CLASS" 2099.IX Item "--with-res-class=CLASS /default: URxvt)"
2252Use the given class (default: URxvt) as default application class 2100Use the given class as default application class
2253when reading resources. Specify \-\-with\-res\-class=Rxvt to replace 2101when reading resources. Specify \-\-with\-res\-class=Rxvt to replace
2254rxvt. 2102rxvt.
2255.IP "\-\-enable\-utmp" 4 2103.IP "\-\-enable\-utmp (default: on)" 4
2256.IX Item "--enable-utmp" 2104.IX Item "--enable-utmp (default: on)"
2257Write user and tty to utmp file (used by programs like \fIw\fR) at 2105Write user and tty to utmp file (used by programs like \fIw\fR) at
2258start of rxvt execution and delete information when rxvt exits. 2106start of rxvt execution and delete information when rxvt exits.
2259.IP "\-\-enable\-wtmp" 4 2107.IP "\-\-enable\-wtmp (default: on)" 4
2260.IX Item "--enable-wtmp" 2108.IX Item "--enable-wtmp (default: on)"
2261Write user and tty to wtmp file (used by programs like \fIlast\fR) at 2109Write user and tty to wtmp file (used by programs like \fIlast\fR) at
2262start of rxvt execution and write logout when rxvt exits. This 2110start of rxvt execution and write logout when rxvt exits. This
2263option requires \-\-enable\-utmp to also be specified. 2111option requires \-\-enable\-utmp to also be specified.
2264.IP "\-\-enable\-lastlog" 4 2112.IP "\-\-enable\-lastlog (default: on)" 4
2265.IX Item "--enable-lastlog" 2113.IX Item "--enable-lastlog (default: on)"
2266Write user and tty to lastlog file (used by programs like 2114Write user and tty to lastlog file (used by programs like
2267\&\fIlastlogin\fR) at start of rxvt execution. This option requires 2115\&\fIlastlogin\fR) at start of rxvt execution. This option requires
2268\&\-\-enable\-utmp to also be specified. 2116\&\-\-enable\-utmp to also be specified.
2269.IP "\-\-enable\-xpm\-background" 4 2117.IP "\-\-enable\-xpm\-background (default: on)" 4
2270.IX Item "--enable-xpm-background" 2118.IX Item "--enable-xpm-background (default: on)"
2271Add support for \s-1XPM\s0 background pixmaps. 2119Add support for \s-1XPM\s0 background pixmaps.
2272.IP "\-\-enable\-transparency" 4 2120.IP "\-\-enable\-transparency (default: on)" 4
2273.IX Item "--enable-transparency" 2121.IX Item "--enable-transparency (default: on)"
2274Add support for inheriting parent backgrounds thus giving a fake 2122Add support for inheriting parent backgrounds thus giving a fake
2275transparency to the term. 2123transparency to the term.
2276.IP "\-\-enable\-fading" 4 2124.IP "\-\-enable\-fading (default: on)" 4
2277.IX Item "--enable-fading" 2125.IX Item "--enable-fading (default: on)"
2278Add support for fading the text when focus is lost. 2126Add support for fading the text when focus is lost (requires \f(CW\*(C`\-\-enable\-transparency\*(C'\fR).
2279.IP "\-\-enable\-tinting" 4 2127.IP "\-\-enable\-tinting (default: on)" 4
2280.IX Item "--enable-tinting" 2128.IX Item "--enable-tinting (default: on)"
2281Add support for tinting of transparent backgrounds. 2129Add support for tinting of transparent backgrounds (requires \f(CW\*(C`\-\-enable\-transparency\*(C'\fR).
2282.IP "\-\-enable\-menubar" 4
2283.IX Item "--enable-menubar"
2284Add support for our menu bar system (this interacts badly with
2285dynamic locale switching currently).
2286.IP "\-\-enable\-rxvt\-scroll" 4 2130.IP "\-\-enable\-rxvt\-scroll (default: on)" 4
2287.IX Item "--enable-rxvt-scroll" 2131.IX Item "--enable-rxvt-scroll (default: on)"
2288Add support for the original rxvt scrollbar. 2132Add support for the original rxvt scrollbar.
2289.IP "\-\-enable\-next\-scroll" 4 2133.IP "\-\-enable\-next\-scroll (default: on)" 4
2290.IX Item "--enable-next-scroll" 2134.IX Item "--enable-next-scroll (default: on)"
2291Add support for a NeXT-like scrollbar. 2135Add support for a NeXT-like scrollbar.
2292.IP "\-\-enable\-xterm\-scroll" 4 2136.IP "\-\-enable\-xterm\-scroll (default: on)" 4
2293.IX Item "--enable-xterm-scroll" 2137.IX Item "--enable-xterm-scroll (default: on)"
2294Add support for an Xterm-like scrollbar. 2138Add support for an Xterm-like scrollbar.
2295.IP "\-\-enable\-plain\-scroll" 4 2139.IP "\-\-enable\-plain\-scroll (default: on)" 4
2296.IX Item "--enable-plain-scroll" 2140.IX Item "--enable-plain-scroll (default: on)"
2297Add support for a very unobtrusive, plain-looking scrollbar that 2141Add support for a very unobtrusive, plain-looking scrollbar that
2298is the favourite of the rxvt-unicode author, having used it for 2142is the favourite of the rxvt-unicode author, having used it for
2299many years. 2143many years.
2300.IP "\-\-enable\-half\-shadow" 4
2301.IX Item "--enable-half-shadow"
2302Make shadows on the scrollbar only half the normal width & height.
2303only applicable to rxvt scrollbars.
2304.IP "\-\-enable\-ttygid" 4 2144.IP "\-\-enable\-ttygid (default: off)" 4
2305.IX Item "--enable-ttygid" 2145.IX Item "--enable-ttygid (default: off)"
2306Change tty device setting to group \*(L"tty\*(R" \- only use this if 2146Change tty device setting to group \*(L"tty\*(R" \- only use this if
2307your system uses this type of security. 2147your system uses this type of security.
2308.IP "\-\-disable\-backspace\-key" 4 2148.IP "\-\-disable\-backspace\-key" 4
2309.IX Item "--disable-backspace-key" 2149.IX Item "--disable-backspace-key"
2310Disable any handling of the backspace key by us \- let the X server 2150Removes any handling of the backspace key by us \- let the X server do it.
2311do it.
2312.IP "\-\-disable\-delete\-key" 4 2151.IP "\-\-disable\-delete\-key" 4
2313.IX Item "--disable-delete-key" 2152.IX Item "--disable-delete-key"
2314Disable any handling of the delete key by us \- let the X server 2153Removes any handling of the delete key by us \- let the X server
2315do it. 2154do it.
2316.IP "\-\-disable\-resources" 4 2155.IP "\-\-disable\-resources" 4
2317.IX Item "--disable-resources" 2156.IX Item "--disable-resources"
2318Remove all resources checking. 2157Removes any support for resource checking.
2319.IP "\-\-enable\-xgetdefault" 4
2320.IX Item "--enable-xgetdefault"
2321Make resources checking via \fIXGetDefault()\fR instead of our small
2322version which only checks ~/.Xdefaults, or if that doesn't exist then
2323~/.Xresources.
2324.Sp
2325Please note that nowadays, things like \s-1XIM\s0 will automatically pull in and
2326use the full X resource manager, so the overhead of using it might be very
2327small, if nonexistant.
2328.IP "\-\-enable\-strings" 4
2329.IX Item "--enable-strings"
2330Add support for our possibly faster \fImemset()\fR function and other
2331various routines, overriding your system's versions which may
2332have been hand-crafted in assembly or may require extra libraries
2333to link in. (this breaks ANSI-C rules and has problems on many
2334GNU/Linux systems).
2335.IP "\-\-disable\-swapscreen" 4 2158.IP "\-\-disable\-swapscreen" 4
2336.IX Item "--disable-swapscreen" 2159.IX Item "--disable-swapscreen"
2337Remove support for swap screen. 2160Remove support for secondary/swap screen.
2338.IP "\-\-enable\-frills" 4 2161.IP "\-\-enable\-frills (default: on)" 4
2339.IX Item "--enable-frills" 2162.IX Item "--enable-frills (default: on)"
2340Add support for many small features that are not essential but nice to 2163Add support for many small features that are not essential but nice to
2341have. Normally you want this, but for very small binaries you may want to 2164have. Normally you want this, but for very small binaries you may want to
2342disable this. 2165disable this.
2343.Sp 2166.Sp
2344A non-exhaustive list of features enabled by \f(CW\*(C`\-\-enable\-frills\*(C'\fR (possibly 2167A non-exhaustive list of features enabled by \f(CW\*(C`\-\-enable\-frills\*(C'\fR (possibly
2345in combination with other switches) is: 2168in combination with other switches) is:
2346.Sp 2169.Sp
2347.Vb 11 2170.Vb 18
2348\& MWM-hints 2171\& MWM-hints
2172\& EWMH-hints (pid, utf8 names) and protocols (ping)
2349\& seperate underline colour 2173\& seperate underline colour (-underlineColor)
2350\& settable border widths and borderless switch 2174\& settable border widths and borderless switch (-w, -b, -bl)
2175\& visual selection (-depth)
2351\& settable extra linespacing 2176\& settable extra linespacing /-lsp)
2352\& extra window properties (e.g. UTF-8 window names and PID)
2353\& iso-14755-2 and -3, and visual feedback 2177\& iso-14755-2 and -3, and visual feedback
2354\& backindex and forwardindex escape sequence 2178\& backindex and forwardindex escape sequence
2355\& window op and locale change escape sequences 2179\& window op and some xterm/OSC escape sequences
2356\& tripleclickwords 2180\& tripleclickwords (-tcw)
2357\& settable insecure mode 2181\& settable insecure mode (-insecure)
2358\& keysym remapping support 2182\& keysym remapping support
2183\& cursor blinking and underline cursor (-cb, -uc)
2184\& XEmbed support (-embed)
2185\& user-pty (-pty-fd)
2186\& hold on exit (-hold)
2187\& skip builtin block graphics (-sbg)
2188\& sgr modes 90..97 and 100..107
2359.Ve 2189.Ve
2360.IP "\-\-enable\-iso14755" 4 2190.IP "\-\-enable\-iso14755 (default: on)" 4
2361.IX Item "--enable-iso14755" 2191.IX Item "--enable-iso14755 (default: on)"
2362Enable extended \s-1ISO\s0 14755 support (see @@RXVT_NAME@@(1), or 2192Enable extended \s-1ISO\s0 14755 support (see @@RXVT_NAME@@(1), or
2363\&\fIdoc/rxvt.1.txt\fR). Basic support (section 5.1) is enabled by 2193\&\fIdoc/rxvt.1.txt\fR). Basic support (section 5.1) is enabled by
2364\&\f(CW\*(C`\-\-enable\-frills\*(C'\fR, while support for 5.2, 5.3 and 5.4 is enabled with 2194\&\f(CW\*(C`\-\-enable\-frills\*(C'\fR, while support for 5.2, 5.3 and 5.4 is enabled with
2365this switch. 2195this switch.
2366.IP "\-\-enable\-keepscrolling" 4 2196.IP "\-\-enable\-keepscrolling (default: on)" 4
2367.IX Item "--enable-keepscrolling" 2197.IX Item "--enable-keepscrolling (default: on)"
2368Add support for continual scrolling of the display when you hold 2198Add support for continual scrolling of the display when you hold
2369the mouse button down on a scrollbar arrow. 2199the mouse button down on a scrollbar arrow.
2370.IP "\-\-enable\-mousewheel" 4 2200.IP "\-\-enable\-mousewheel (default: on)" 4
2371.IX Item "--enable-mousewheel" 2201.IX Item "--enable-mousewheel (default: on)"
2372Add support for scrolling via mouse wheel or buttons 4 & 5. 2202Add support for scrolling via mouse wheel or buttons 4 & 5.
2373.IP "\-\-enable\-slipwheeling" 4 2203.IP "\-\-enable\-slipwheeling (default: on)" 4
2374.IX Item "--enable-slipwheeling" 2204.IX Item "--enable-slipwheeling (default: on)"
2375Add support for continual scrolling (using the mouse wheel as an 2205Add support for continual scrolling (using the mouse wheel as an
2376accelerator) while the control key is held down. This option 2206accelerator) while the control key is held down. This option
2377requires \-\-enable\-mousewheel to also be specified. 2207requires \-\-enable\-mousewheel to also be specified.
2378.IP "\-\-disable\-new\-selection" 4 2208.IP "\-\-disable\-new\-selection" 4
2379.IX Item "--disable-new-selection" 2209.IX Item "--disable-new-selection"
2380Remove support for mouse selection style like that of xterm. 2210Remove support for mouse selection style like that of xterm.
2381.IP "\-\-enable\-dmalloc" 4 2211.IP "\-\-enable\-dmalloc (default: off)" 4
2382.IX Item "--enable-dmalloc" 2212.IX Item "--enable-dmalloc (default: off)"
2383Use Gray Watson's malloc \- which is good for debugging See 2213Use Gray Watson's malloc \- which is good for debugging See
2384http://www.letters.com/dmalloc/ for details If you use either this or the 2214http://www.letters.com/dmalloc/ for details If you use either this or the
2385next option, you may need to edit src/Makefile after compiling to point 2215next option, you may need to edit src/Makefile after compiling to point
2386\&\s-1DINCLUDE\s0 and \s-1DLIB\s0 to the right places. 2216\&\s-1DINCLUDE\s0 and \s-1DLIB\s0 to the right places.
2387.Sp 2217.Sp
2388You can only use either this option and the following (should 2218You can only use either this option and the following (should
2389you use either) . 2219you use either) .
2390.IP "\-\-enable\-dlmalloc" 4 2220.IP "\-\-enable\-dlmalloc (default: off)" 4
2391.IX Item "--enable-dlmalloc" 2221.IX Item "--enable-dlmalloc (default: off)"
2392Use Doug Lea's malloc \- which is good for a production version 2222Use Doug Lea's malloc \- which is good for a production version
2393See <http://g.oswego.edu/dl/html/malloc.html> for details. 2223See <http://g.oswego.edu/dl/html/malloc.html> for details.
2394.IP "\-\-enable\-smart\-resize" 4 2224.IP "\-\-enable\-smart\-resize (default: on)" 4
2395.IX Item "--enable-smart-resize" 2225.IX Item "--enable-smart-resize (default: on)"
2396Add smart growth/shrink behaviour when changing font size via from hot 2226Add smart growth/shrink behaviour when changing font size via hot
2397keys. This should keep in a fixed position the rxvt corner which is 2227keys. This should keep the window corner which is closest to a corner of
2398closest to a corner of the screen. 2228the screen in a fixed position.
2399.IP "\-\-enable\-cursor\-blink" 4
2400.IX Item "--enable-cursor-blink"
2401Add support for a blinking cursor.
2402.IP "\-\-enable\-pointer\-blank" 4 2229.IP "\-\-enable\-pointer\-blank (default: on)" 4
2403.IX Item "--enable-pointer-blank" 2230.IX Item "--enable-pointer-blank (default: on)"
2404Add support to have the pointer disappear when typing or inactive. 2231Add support to have the pointer disappear when typing or inactive.
2232.IP "\-\-enable\-perl (default: on)" 4
2233.IX Item "--enable-perl (default: on)"
2234Enable an embedded perl interpreter. See the \fB@@RXVT_NAME@@\f(BIperl\fB\|(3)\fR
2235manpage (\fIdoc/rxvtperl.txt\fR) for more info on this feature, or the files
2236in \fIsrc/perl\-ext/\fR for the extensions that are installed by default. The
2237perl interpreter that is used can be specified via the \f(CW\*(C`PERL\*(C'\fR environment
2238variable when running configure.
2405.IP "\-\-with\-name=NAME" 4 2239.IP "\-\-with\-name=NAME (default: urxvt)" 4
2406.IX Item "--with-name=NAME" 2240.IX Item "--with-name=NAME (default: urxvt)"
2407Set the basename for the installed binaries (default: \f(CW\*(C`urxvt\*(C'\fR, resulting 2241Set the basename for the installed binaries, resulting
2408in \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 2242in \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
2409\&\f(CW\*(C`rxvt\*(C'\fR. 2243\&\f(CW\*(C`rxvt\*(C'\fR.
2410.IP "\-\-with\-term=NAME" 4 2244.IP "\-\-with\-term=NAME (default: rxvt\-unicode)" 4
2411.IX Item "--with-term=NAME" 2245.IX Item "--with-term=NAME (default: rxvt-unicode)"
2412Change the environmental variable for the terminal to \s-1NAME\s0 (default 2246Change the environmental variable for the terminal to \s-1NAME\s0.
2413\&\f(CW\*(C`rxvt\-unicode\*(C'\fR)
2414.IP "\-\-with\-terminfo=PATH" 4 2247.IP "\-\-with\-terminfo=PATH" 4
2415.IX Item "--with-terminfo=PATH" 2248.IX Item "--with-terminfo=PATH"
2416Change the environmental variable for the path to the terminfo tree to 2249Change the environmental variable for the path to the terminfo tree to
2417\&\s-1PATH\s0. 2250\&\s-1PATH\s0.
2418.IP "\-\-with\-x" 4 2251.IP "\-\-with\-x" 4

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines