I like the man command's status prompt to be customized. The default as picked from its own man page is like this,
Manual page name(sec) line x
But, having it show me the percentage of contents read is my preference. So I set the environment variable that controls the prompt, MANLESS
as,
export MANLESS='?pt%pt \%: '
The prompt is empty. I put -P in the front as,
export MANLESS='-P?pt%pt \%: '
No progress, now the prompt only contains -P
. So, I directly set it for every invocation using the -r
option,
man -r '?pt%pt \%: ' less
That too didn't help. But, this same prompt when set to LESS env. variable as
export LESS="-P?pt%pt \%"
Every direct invocation of less is showing the desired prompt as
x %
.
It is only when less pager is called through man, it does not work.