Re: [fossil-users] [PROPOSED FEATURE] Fossil commands output sent through a pager

2017-03-25 Thread Andy Bradford
Thus said Roy Keene on Thu, 23 Mar 2017 17:36:37 -0500: > I vote that the pagination be off by default to preserve the existing > behaviour -- terminals have been able to scroll for decades now so I > don't know why systemd/git like to do this by default but it is REALLY > annoying having to

Re: [fossil-users] [PROPOSED FEATURE] Fossil commands output sent through a pager

2017-03-25 Thread Reimer Behrends
Sergei Gavrikov wrote: My 2 cents. Many of us use f-alias to deal with fossil in a terminal, right? Then why not f-function? That won't work with commands that need to take input from the terminal, especially if an editor is invoked (e.g. "fossil commit"). There's the "fsl" script that

Re: [fossil-users] [PROPOSED FEATURE] Fossil commands output sent through a pager

2017-03-25 Thread Sergei Gavrikov
My 2 cents. Many of us use f-alias to deal with fossil in a terminal, right? Then why not f-function? SYNOPSIS unalias f f(){ fossil "$@" | more ; } or f(){ fossil "$@" | less -FRSXQ ; } if you like more 'less' then 'more' :) Then try f help commit f