##// END OF EJS Templates
pager: wrap docstrings at 70 characters
Martin Geisler -
r9267:bd9e5d20 default
parent child Browse files
Show More
@@ -19,10 +19,11 b' To set the pager that should be used, se'
19 [pager]
19 [pager]
20 pager = LESS='FSRX' less
20 pager = LESS='FSRX' less
21
21
22 If no pager is set, the pager extensions uses the environment variable $PAGER.
22 If no pager is set, the pager extensions uses the environment variable
23 If neither pager.pager, nor $PAGER is set, no pager is used.
23 $PAGER. If neither pager.pager, nor $PAGER is set, no pager is used.
24
24
25 If you notice "BROKEN PIPE" error messages, you can disable them by setting::
25 If you notice "BROKEN PIPE" error messages, you can disable them by
26 setting::
26
27
27 [pager]
28 [pager]
28 quiet = True
29 quiet = True
@@ -33,15 +34,16 b' pager.ignore list::'
33 [pager]
34 [pager]
34 ignore = version, help, update
35 ignore = version, help, update
35
36
36 You can also enable the pager only for certain commands using pager.attend::
37 You can also enable the pager only for certain commands using
38 pager.attend::
37
39
38 [pager]
40 [pager]
39 attend = log
41 attend = log
40
42
41 If pager.attend is present, pager.ignore will be ignored.
43 If pager.attend is present, pager.ignore will be ignored.
42
44
43 To ignore global commands like "hg version" or "hg help", you have to specify
45 To ignore global commands like "hg version" or "hg help", you have to
44 them in the global .hgrc
46 specify them in the global .hgrc
45 '''
47 '''
46
48
47 import sys, os, signal
49 import sys, os, signal
General Comments 0
You need to be logged in to leave comments. Login now