ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/README.FAQ
(Generate patch)

Comparing rxvt-unicode/README.FAQ (file contents):
Revision 1.26 by root, Thu Jan 12 23:11:23 2006 UTC vs.
Revision 1.30 by root, Mon Jan 16 15:07:27 2006 UTC

1FREQUENTLY ASKED QUESTIONS 1FREQUENTLY ASKED QUESTIONS
2 The new selection selects pieces that are too big/too small, can I 2 The new selection selects pieces that are too big, how can I select
3 change this? 3 single words?
4 Yes. For example, if you want to select smaller pieces ("words") you 4 Yes. For example, if you want to select alphanumeric words, you can
5 can use the following resource: 5 use the following resource:
6 6
7 URxvt.selection.pattern-0: ([[:word:]]+) 7 URxvt.selection.pattern-0: ([[:word:]]+)
8 8
9 If you click more than twice, the selection will be extended more 9 If you click more than twice, the selection will be extended more
10 and more. 10 and more.
11 11
12 To get a selection that is very similar to the old code, try this 12 To get a selection that is very similar to the old code, try this
13 pattern: 13 pattern:
14 14
15 URxvt.selection.pattern-0: ([^"&'()*,;<=>?@[\\\\]^`{|})]+) 15 URxvt.selection.pattern-0: ([^"&'()*,;<=>?@[\\\\]^`{|})]+)
16
17 Please also note that the *LeftClick Shift-LeftClik* combination
18 also selects words like the old code.
16 19
17 I don't like the new selection/popups/hotkeys/perl, how do I 20 I don't like the new selection/popups/hotkeys/perl, how do I
18 change/disable it? 21 change/disable it?
19 You can disable the perl extension completely by setting the 22 You can disable the perl extension completely by setting the
20 perl-ext-common resource to the empty string, which also keeps 23 perl-ext-common resource to the empty string, which also keeps
577 580
578 My input method wants <some encoding> but I want UTF-8, what can I do? 581 My input method wants <some encoding> but I want UTF-8, what can I do?
579 You can specify separate locales for the input method and the rest 582 You can specify separate locales for the input method and the rest
580 of the terminal, using the resource "imlocale": 583 of the terminal, using the resource "imlocale":
581 584
582 URxvt*imlocale: ja_JP.EUC-JP 585 URxvt.imlocale: ja_JP.EUC-JP
583 586
584 Now you can start your terminal with "LC_CTYPE=ja_JP.UTF-8" and 587 Now you can start your terminal with "LC_CTYPE=ja_JP.UTF-8" and
585 still use your input method. Please note, however, that you will not 588 still use your input method. Please note, however, that you will not
586 be able to input characters outside "EUC-JP" in a normal way then, 589 be able to input characters outside "EUC-JP" in a normal way then,
587 as your input method limits you. 590 as your input method limits you.
630 Mouse cut/paste suddenly no longer works. 633 Mouse cut/paste suddenly no longer works.
631 Make sure that mouse reporting is actually turned off since killing 634 Make sure that mouse reporting is actually turned off since killing
632 some editors prematurely may leave the mouse in mouse report mode. 635 some editors prematurely may leave the mouse in mouse report mode.
633 I've heard that tcsh may use mouse reporting unless it otherwise 636 I've heard that tcsh may use mouse reporting unless it otherwise
634 specified. A quick check is to see if cut/paste works when the Alt 637 specified. A quick check is to see if cut/paste works when the Alt
635 or Shift keys are depressed. See rxvt(7) 638 or Shift keys are depressed.
636 639
637 What's with this bold/blink stuff? 640 What's with this bold/blink stuff?
638 If no bold colour is set via "colorBD:", bold will invert text using 641 If no bold colour is set via "colorBD:", bold will invert text using
639 the standard foreground colour. 642 the standard foreground colour.
640 643
726 729
727 # use Backspace = ^? 730 # use Backspace = ^?
728 $ stty erase ^? 731 $ stty erase ^?
729 $ rxvt 732 $ rxvt
730 733
731 Toggle with "ESC [ 36 h" / "ESC [ 36 l" as documented in rxvt(7). 734 Toggle with "ESC [ 36 h" / "ESC [ 36 l".
732 735
733 For an existing rxvt-unicode: 736 For an existing rxvt-unicode:
734 737
735 # use Backspace = ^H 738 # use Backspace = ^H
736 $ stty erase ^H 739 $ stty erase ^H

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines