summaryrefslogblamecommitdiffstats
path: root/bashrc/common/pager.sh
blob: 454d37e3929caf76f69a8bff48c70ff2f9b1737c (plain) (tree)
1
2
3
4
5
6
7
8
9


                         
                                    




                                                    
                                    


                            
# pager options

# use less by default ...
if hash less 2>&1 > /dev/null ; then
	export PAGER=less
	export LESS="-R --ignore-case --long-prompt"
fi

# but user most, if available
if hash most 2>&1 > /dev/null ; then
	export PAGER=most
	export MANPAGER=most
fi