##// END OF EJS Templates
help: apply bulk fixes for indentation and literal blocking issues...
FUJIWARA Katsunori -
r32085:091d6b91 stable
parent child Browse files
Show More
@@ -665,7 +665,7 b' def rebase(ui, repo, **opts):'
665 Configuration Options:
665 Configuration Options:
666
666
667 You can make rebase require a destination if you set the following config
667 You can make rebase require a destination if you set the following config
668 option:
668 option::
669
669
670 [commands]
670 [commands]
671 rebase.requiredest = True
671 rebase.requiredest = True
@@ -20,12 +20,12 b' To ignore global commands like :hg:`vers'
20 to specify them in your user configuration file.
20 to specify them in your user configuration file.
21
21
22 To control whether the pager is used at all for an individual command,
22 To control whether the pager is used at all for an individual command,
23 you can use --pager=<value>::
23 you can use --pager=<value>:
24
24
25 - use as needed: `auto`.
25 - use as needed: `auto`.
26 - require the pager: `yes` or `on`.
26 - require the pager: `yes` or `on`.
27 - suppress the pager: `no` or `off` (any unrecognized value
27 - suppress the pager: `no` or `off` (any unrecognized value
28 will also work).
28 will also work).
29
29
30 To globally turn off all attempts to use a pager, set::
30 To globally turn off all attempts to use a pager, set::
31
31
@@ -109,10 +109,10 b' These are the supported infix operators:'
109 [revsetalias]
109 [revsetalias]
110 issue(a1) = grep(r'\bissue[ :]?' ## a1 ## r'\b|\bbug\(' ## a1 ## r'\)')
110 issue(a1) = grep(r'\bissue[ :]?' ## a1 ## r'\b|\bbug\(' ## a1 ## r'\)')
111
111
112 ``issue(1234)`` is equivalent to
112 ``issue(1234)`` is equivalent to
113 ``grep(r'\bissue[ :]?1234\b|\bbug\(1234\)')``
113 ``grep(r'\bissue[ :]?1234\b|\bbug\(1234\)')``
114 in this case. This matches against all of "issue 1234", "issue:1234",
114 in this case. This matches against all of "issue 1234", "issue:1234",
115 "issue1234" and "bug(1234)".
115 "issue1234" and "bug(1234)".
116
116
117 There is a single postfix operator:
117 There is a single postfix operator:
118
118
@@ -132,9 +132,8 b' Matching is case-sensitive, unless other'
132 insensitive match on a case-sensitive predicate, use a regular expression,
132 insensitive match on a case-sensitive predicate, use a regular expression,
133 prefixed with ``(?i)``.
133 prefixed with ``(?i)``.
134
134
135 For example::
135 For example, ``tag(r're:(?i)release')`` matches "release" or "RELEASE"
136
136 or "Release", etc
137 ``tag(r're:(?i)release')`` matches "release" or "RELEASE" or "Release", etc
138
137
139 Predicates
138 Predicates
140 ==========
139 ==========
General Comments 0
You need to be logged in to leave comments. Login now