diff --git a/hgext/rebase.py b/hgext/rebase.py index 1c911adebf488246c720d98f77be349c8c82d708_aGdleHQvcmViYXNlLnB5..091d6b9157da08a36f65102fca85dc6017294a4c_aGdleHQvcmViYXNlLnB5 100644 --- a/hgext/rebase.py +++ b/hgext/rebase.py @@ -665,7 +665,7 @@ Configuration Options: You can make rebase require a destination if you set the following config - option: + option:: [commands] rebase.requiredest = True diff --git a/mercurial/help/pager.txt b/mercurial/help/pager.txt index 1c911adebf488246c720d98f77be349c8c82d708_bWVyY3VyaWFsL2hlbHAvcGFnZXIudHh0..091d6b9157da08a36f65102fca85dc6017294a4c_bWVyY3VyaWFsL2hlbHAvcGFnZXIudHh0 100644 --- a/mercurial/help/pager.txt +++ b/mercurial/help/pager.txt @@ -20,8 +20,8 @@ to specify them in your user configuration file. To control whether the pager is used at all for an individual command, -you can use --pager=<value>:: +you can use --pager=<value>: - use as needed: `auto`. - require the pager: `yes` or `on`. - suppress the pager: `no` or `off` (any unrecognized value @@ -24,8 +24,8 @@ - use as needed: `auto`. - require the pager: `yes` or `on`. - suppress the pager: `no` or `off` (any unrecognized value - will also work). + will also work). To globally turn off all attempts to use a pager, set:: diff --git a/mercurial/help/revisions.txt b/mercurial/help/revisions.txt index 1c911adebf488246c720d98f77be349c8c82d708_bWVyY3VyaWFsL2hlbHAvcmV2aXNpb25zLnR4dA==..091d6b9157da08a36f65102fca85dc6017294a4c_bWVyY3VyaWFsL2hlbHAvcmV2aXNpb25zLnR4dA== 100644 --- a/mercurial/help/revisions.txt +++ b/mercurial/help/revisions.txt @@ -109,10 +109,10 @@ [revsetalias] issue(a1) = grep(r'\bissue[ :]?' ## a1 ## r'\b|\bbug\(' ## a1 ## r'\)') - ``issue(1234)`` is equivalent to - ``grep(r'\bissue[ :]?1234\b|\bbug\(1234\)')`` - in this case. This matches against all of "issue 1234", "issue:1234", - "issue1234" and "bug(1234)". + ``issue(1234)`` is equivalent to + ``grep(r'\bissue[ :]?1234\b|\bbug\(1234\)')`` + in this case. This matches against all of "issue 1234", "issue:1234", + "issue1234" and "bug(1234)". There is a single postfix operator: @@ -132,9 +132,8 @@ insensitive match on a case-sensitive predicate, use a regular expression, prefixed with ``(?i)``. - For example:: - - ``tag(r're:(?i)release')`` matches "release" or "RELEASE" or "Release", etc +For example, ``tag(r're:(?i)release')`` matches "release" or "RELEASE" +or "Release", etc Predicates ==========