浏览代码

Enable smooth horizontal scrolling with less option `--shift 1`

Matthew Wang 10 年前
父节点
当前提交
c95c027f3e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      cdiff.py

+ 1
- 1
cdiff.py 查看文件

@@ -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