*** empty log message ***
authorroot <root>
Sat, 21 Jan 2006 14:49:18 +0000 (14:49 +0000)
committerroot <root>
Sat, 21 Jan 2006 14:49:18 +0000 (14:49 +0000)
src/urxvt.pm

index 500ab70cc29ed61916cd104c8870fa5479567861..98356b1f8323a9466f6ecafa4ccf957fb361cf2b 100644 (file)
@@ -129,6 +129,29 @@ was started, while C<Enter> or C<Return> stay at the current position and
 additionally stores the first match in the current line into the primary
 selection.
 
+=item readline (enabled by default)
+
+A support package that tries to make editing with readline easier. At the
+moment, it reacts to clicking with the left mouse button by trying to
+move the text cursor to this position. It does so by generating as many
+cursor-left or cursor-right keypresses as required (the this only works
+for programs that correctly support wide characters).
+
+To avoid too many false positives, this is only done when:
+
+=over 4
+
+=item - the mouse is on the same (multi-row-) line as the text cursor.
+
+=item - the primary screen is currently being displayed.
+
+=item - the text cursor is visible.
+
+=back
+
+The normal selection mechanism isn't disabled, so quick successive clicks
+might interfere with selection creation in harmless ways.
+
 =item selection-autotransform
 
 This selection allows you to do automatic transforms on a selection
@@ -164,29 +187,6 @@ The first line tells the selection code to treat the unchanging part of
 every error message as a selection pattern, and the second line transforms
 the message into vi commands to load the file.
 
-=item readline
-
-A support package that tries to make editing with readline easier. At the
-moment, it reacts to clicking with the left mouse button by trying to
-move the text cursor to this position. It does so by generating as many
-cursor-left or cursor-right keypresses as required (the this only works
-for programs that correctly support wide characters).
-
-To avoid too many false positives, this is only done when:
-
-=over 4
-
-=item - the mouse is on the same (multi-row-) line as the text cursor.
-
-=item - the primary screen is currently being displayed.
-
-=item - the text cursor is visible.
-
-=back
-
-The normal selection mechanism isn't disabled, so quick successive clicks
-might interfere with selection creation in harmless ways.
-
 =item tabbed
 
 This transforms the terminal into a tabbar with additional terminals, that
@@ -780,7 +780,7 @@ sub invoke {
 
       for (grep $_, map { split /,/, $TERM->resource ("perl_ext_$_") } 1, 2) {
          if ($_ eq "default") {
-            $ext_arg{$_} ||= [] for qw(selection option-popup selection-popup searchable-scrollback);
+            $ext_arg{$_} ||= [] for qw(selection option-popup selection-popup searchable-scrollback readline);
          } elsif (/^-(.*)$/) {
             delete $ext_arg{$1};
          } elsif (/^([^<]+)<(.*)>$/) {