# HG changeset patch # User Augie Fackler # Date 2017-02-07 04:42:04 # Node ID 29a4a8d01bc9886eba24b9e7d778948b698c9f89 # Parent cc3c9b6f1e0987553fb7688239ae53bf3a641525 ui: respect historic pager.attend-$COMMAND=no I'm on the fence about this behavior, but the user's intent was pretty specific and it's not expensive to support this case. diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -852,6 +852,7 @@ class ui(object): if (self._neverpager or self.pageractive or command in self.configlist('pager', 'ignore') + or not self.configbool('pager', 'attend-' + command, True) # TODO: if we want to allow HGPLAINEXCEPT=pager, # formatted() will need some adjustment. or not self.formatted()