# HG changeset patch # User Augie Fackler # Date 2017-02-07 04:06:01 # Node ID 5b85ba3d7d779df27cfe244178e3e95d40e49da8 # Parent 77a252f2544d20ec60b253c8a17487be76dc1c0e paths: enable pager diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -3761,6 +3761,7 @@ def paths(ui, repo, search=None, **opts) Returns 0 on success. """ + ui.pager('paths') if search: pathitems = [(name, path) for name, path in ui.paths.iteritems() if name == search]