# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1507854969 -19800 # Node ID 512827b1a24a9f49dc6831bcb23cd2413e710712 # Parent fdd0b6c26597fc1c96d7cdc128d3b2a47232b469 pager: add support to `hg topic` diff -r fdd0b6c26597 -r 512827b1a24a hgext3rd/topic/__init__.py --- a/hgext3rd/topic/__init__.py Fri Oct 13 06:02:56 2017 +0530 +++ b/hgext3rd/topic/__init__.py Fri Oct 13 06:06:09 2017 +0530 @@ -445,6 +445,8 @@ # Have some restrictions on the topic name just like bookmark name scmutil.checknewlabel(repo, topic, 'topic') + compat.startpager(ui, 'topics') + if list: if clear or rev: raise error.Abort(_("cannot use --clear or --rev with --list"))