# HG changeset patch # User Thomas Arendsen Hein # Date 2012-07-31 13:50:44 # Node ID e66fa4d587dcba60f322537ebbcd95237d28fc67 # Parent 0368fc55d572ee888b23ce5dc1038a003a564072 pager: drop -S option for less in example for pager configuration Using less -S will hide possibly important information when reviewing a changeset, e.g. something wrong/dangerous after the 80th column, because "less" will not give an indication that following characters are hidden. diff --git a/hgext/pager.py b/hgext/pager.py --- a/hgext/pager.py +++ b/hgext/pager.py @@ -17,7 +17,7 @@ To set the pager that should be used, set the application variable:: [pager] - pager = less -FRSX + pager = less -FRX If no pager is set, the pager extensions uses the environment variable $PAGER. If neither pager.pager, nor $PAGER is set, no pager is used.