OLD | NEW |
1 # This .hgrc is recommended for working on the Adblock Plus project. | 1 # This .hgrc is recommended for working on the Adblock Plus project. |
2 # | 2 # |
3 # When using this as your .hgrc as-is, it provides a nicer user interface and | 3 # When using this as your .hgrc as-is, it provides a nicer user interface and |
4 # enables some extensions that are useful for working on pretty much any | 4 # enables some extensions that are useful for working on pretty much any |
5 # project. | 5 # project. |
6 # | 6 # |
7 # The commented parts either do not work on all systems, are a matter of taste, | 7 # The commented parts either do not work on all systems, are a matter of taste, |
8 # or specific to the Adblock Plus project and might not make sense for everyone. | 8 # or specific to the Adblock Plus project and might not make sense for everyone. |
9 # Have a good look and decide for yourself what you want to enable. | 9 # Have a good look and decide for yourself what you want to enable. |
10 | 10 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 histedit = | 102 histedit = |
103 | 103 |
104 # Shelve extension, provides the `hg shelve` command that allows you to set | 104 # Shelve extension, provides the `hg shelve` command that allows you to set |
105 # pending changes aside, see: | 105 # pending changes aside, see: |
106 # https://www.mercurial-scm.org/wiki/ShelveExtension | 106 # https://www.mercurial-scm.org/wiki/ShelveExtension |
107 shelve = | 107 shelve = |
108 | 108 |
109 # Review extension, provides the `hg review` command that makes it easier to | 109 # Review extension, provides the `hg review` command that makes it easier to |
110 # upload reviews to codereview.adblockplus.org. You need to adjust the path | 110 # upload reviews to codereview.adblockplus.org. You need to adjust the path |
111 # so that it points to hgreview.py file in this repository. | 111 # so that it points to hgreview.py file in this repository. |
112 review = /path/to/codereview/hgreview.py | 112 #review = /path/to/codereview/hgreview.py |
113 | 113 |
114 # Configuration for the pager extension. This doesn't have any effect unless | 114 # Configuration for the pager extension. This doesn't have any effect unless |
115 # you enable the pager extension above. | 115 # you enable the pager extension above. |
116 [pager] | 116 [pager] |
117 pager = LESS='FSRX' less | 117 pager = LESS='FSRX' less |
OLD | NEW |