Дана 25/11/07 11:32PM, Jon Tibble написа: > I've been having issues with less -F not working in xterm. The command > just returns without displaying anything. This can be worked around by > adding -X to not initialise the terminal. This works fine, without -X, > in the console.
OpenBSD equivalent of
less -FR
is
less -FRcX
You can set those in LESS environment variable, or (for git)
core.pager=/usr/bin/less -FRcX
in .gitconfig. Works For Me™.

