comparison mercurial/help/pager.txt @ 32084:091d6b9157da stable

help: apply bulk fixes for indentation and literal blocking issues There are some paragraphs, which aren't rendered in online help as expected because of indentation and literal blocking issues. - hgext/rebase.py - paragraph before example code ends with ":", which treats subsequent indented paragraphs as normal block => replace ":" with "::" to treat subsequent paragraphs as literal block - help/pager.txt - paragraph before a list of --pager option values ends with "::", which treats subsequent indented paragraphs as literal block => replace "::" with ":" to treat subsequent paragraphs as normal block - the second line of explanation for no/off --pager option value is indented incorrectly (this also causes failure of "make" in doc) => indent correctly - help/revisions.txt - explanation following example code of "[revsetalias]" section isn't suitable for literal block => un-indent explanation paragraph to treat it as normal block - indentation of "For example" before example of tag() revset predicate matching is meaningless - descriptive text for tag() revset predicate matching isn't suitable for literal block => un-indent concatenated two paragraphs to treat them as normal block
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Mon, 01 May 2017 05:52:32 +0900
parents a6865b35a10d
children f06d23af6cdf
comparison
equal deleted inserted replaced
32083:1c911adebf48 32084:091d6b9157da
18 18
19 To ignore global commands like :hg:`version` or :hg:`help`, you have 19 To ignore global commands like :hg:`version` or :hg:`help`, you have
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
32 [pager] 32 [pager]
33 enable = false 33 enable = false