From d43a82d2c748d00307338d5840bf3f6bbcfd5a07 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 20 Oct 2024 01:51:41 +1300 Subject: Put all of LESS= setting on one line Looks like recent versions of less still don't support the += syntax. --- less/lesskey | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'less') diff --git a/less/lesskey b/less/lesskey index 239df7b8..6a9a210f 100644 --- a/less/lesskey +++ b/less/lesskey @@ -1,16 +1,16 @@ #env -# Search case-insensitively -LESS += --ignore-case - -# Don't ring terminal bells -LESS += --QUIET - -# Support mouse scrolling -LESS += --mouse - -# Show ANSI colors -LESS += --RAW-CONTROL-CHARS +# +# --ignore-case: +# Search case-insensitively +# --QUIET: +# Don't ring terminal bells +# --mouse: +# Support mouse scrolling +# --RAW-CONTROL-CHARS: +# Show ANSI colors +# +LESS = --ignore-case --QUIET --mouse --RAW-CONTROL-CHARS # Don't keep history LESSHISTFILE = - -- cgit v1.2.3