repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 39d34e1186fafbe71f96b066ea37fd5370c7ed9d: path_to: revision_to:
commit 39d34e1186fafbe71f96b066ea37fd5370c7ed9d Author: Marc LehmannDate: Sun Jan 8 06:35:38 2006 +0000 *** empty log message *** diff --git a/doc/rxvtperl.3.html b/doc/rxvtperl.3.html
--- a/doc/rxvtperl.3.html +++ b/doc/rxvtperl.3.html @@ -23,6 +23,7 @@
urxvt Packageurxvt Packageurxvt::anyevent Classurxvt::term Classurxvt::popup Classurxvt::timer Classrxvt -pe <extensionname>
-
-
- selection
+- selection (enabled by default)
- selection (enabled by default)
- Intelligent selection. This extension tries to be more intelligent when @@ -101,6 +102,13 @@ Rot-13 the selection when activated. Used via keyboard trigger: URxvt.keysym.C-M-r: perl:selection:rot13
+
@@ -506,6 +514,14 @@ Change the custom value.
+
The urxvt::anyevent Class
+The sole purpose of this class is to deliver an interface to the
+AnyEvent module - any module using it will work inside urxvt without
+further work. The only exception is that you cannot wait on condition
+variables, but non-blocking condvar use is ok. What this means is that you
+cannot use blocking APIs, but the non-blocking variant should work.
+
The urxvt::term Class
- $term->destroy
@@ -679,7 +695,7 @@ If visible, hide the overlay, but do not destroy it. If hidden, display the overlay again.
+
urxvt::popup object that implements a popup menu. The
diff --git a/doc/rxvtperl.3.man.in b/doc/rxvtperl.3.man.in
--- a/doc/rxvtperl.3.man.in +++ b/doc/rxvtperl.3.man.in @@ -172,8 +172,8 @@ You can activate them like this: .Vb 1 \& @@RXVT_NAME@@ -pe.Ve -.IP "selection" 4 -.IX Item "selection" +.IP "selection (enabled by default)" 4 +.IX Item "selection (enabled by default)" Intelligent selection. This extension tries to be more intelligent when the user extends selections (double\-click). Right now, it tries to select urls and complete shell-quoted arguments, which is very convenient, too, @@ -191,6 +191,10 @@ Rot\-13 the selection when activated. Used via keyboard trigger: .RE .RS 4 .RE +.IP "option-popup (enabled by default)" 4 +.IX Item "option-popup (enabled by default)" +Binds a popup menu to Ctrl\-Button3 that lets you toggle (some) options at +runtime. .IP "digital-clock" 4 .IX Item "digital-clock" Displays a digital clock using the built-in overlay. @@ -454,7 +458,7 @@ Returns the \*(L"current time\*(R" (as per the event loop). .IP "urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask, Button4Mask, Button5Mask, AnyModifier" 4 .IX Item "urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask, Button4Mask, Button5Mask, AnyModifier" .PD -Various constants for use in X events. +Various constants for use in X calls and event processing. .Sh "\s-1RENDITION\s0" .IX Subsection "RENDITION" Rendition bitsets contain information about colour, font, font styles and @@ -504,6 +508,14 @@ zero. .el .IP "$rend = urxvt::SET_CUSTOM ($rend, \f(CW$new_value\fR)" 4 .IX Item "$rend = urxvt::SET_CUSTOM ($rend, $new_value)" Change the custom value. +.ie n .Sh "The ""urxvt::anyevent"" Class" +.el .Sh "The \f(CWurxvt::anyevent\fP Class" +.IX Subsection "The urxvt::anyevent Class" +The sole purpose of this class is to deliver an interface to the +\&\f(CW\*(C`AnyEvent\*(C'\fR module \- any module using it will work inside urxvt without +further work. The only exception is that you cannot wait on condition +variables, but non-blocking condvar use is ok. What this means is that you +cannot use blocking APIs, but the non-blocking variant should work. .ie n .Sh "The ""urxvt::term"" Class" .el .Sh "The \f(CWurxvt::term\fP Class" .IX Subsection "The urxvt::term Class" diff --git a/doc/rxvtperl.3.txt b/doc/rxvtperl.3.txt
--- a/doc/rxvtperl.3.txt
+++ b/doc/rxvtperl.3.txt
@@ -31,7 +31,7 @@ DESCRIPTION
rxvt -pe
- selection
+ selection (enabled by default)
Intelligent selection. This extension tries to be more intelligent
when the user extends selections (double-click). Right now, it tries
to select urls and complete shell-quoted arguments, which is very
@@ -44,6 +44,10 @@ DESCRIPTION
URxvt.keysym.C-M-r: perl:selection:rot13
+ option-popup (enabled by default)
+ Binds a popup menu to Ctrl-Button3 that lets you toggle (some)
+ options at runtime.
+
digital-clock
Displays a digital clock using the built-in overlay.
@@ -277,7 +281,7 @@ DESCRIPTION
urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask, Mod3Mask,
Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask, Button4Mask,
Button5Mask, AnyModifier
- Various constants for use in X events.
+ Various constants for use in X calls and event processing.
RENDITION
Rendition bitsets contain information about colour, font, font styles
@@ -318,6 +322,13 @@ DESCRIPTION
$rend = urxvt::SET_CUSTOM ($rend, $new_value)
Change the custom value.
+ The "urxvt::anyevent" Class
+ The sole purpose of this class is to deliver an interface to the
+ "AnyEvent" module - any module using it will work inside urxvt without
+ further work. The only exception is that you cannot wait on condition
+ variables, but non-blocking condvar use is ok. What this means is that
+ you cannot use blocking APIs, but the non-blocking variant should work.
+
The "urxvt::term" Class
$term->destroy
Destroy the terminal object (close the window, free resources etc.).
-----END OF PAGE-----