|
@@ -619,7 +619,7 @@ def markup_to_pager(stream, opts):
|
619
|
619
|
pager_cmd = ['less']
|
620
|
620
|
if not os.getenv('LESS'):
|
621
|
621
|
# Args stolen from git source: github.com/git/git/blob/master/pager.c
|
622
|
|
- pager_cmd.extend(['-FRSX'])
|
|
622
|
+ pager_cmd.extend(['-FRSX', '--shift 1'])
|
623
|
623
|
pager = subprocess.Popen(
|
624
|
624
|
pager_cmd, stdin=subprocess.PIPE, stdout=sys.stdout)
|
625
|
625
|
|