| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 # Histedit extension. Provides the `hg histedit` command that allows you to | 99 # Histedit extension. Provides the `hg histedit` command that allows you to |
| 100 # change and merge existing changesets, see: | 100 # change and merge existing changesets, see: |
| 101 # https://www.mercurial-scm.org/wiki/HisteditExtension | 101 # https://www.mercurial-scm.org/wiki/HisteditExtension |
| 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 |
| 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. |
| 112 review = /path/to/codereview/hgreview.py |
| 113 |
| 109 # 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 |
| 110 # you enable the pager extension above. | 115 # you enable the pager extension above. |
| 111 [pager] | 116 [pager] |
| 112 pager = LESS='FSRX' less | 117 pager = LESS='FSRX' less |
| OLD | NEW |