diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2024-10-20 01:51:41 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2024-10-20 12:45:37 +1300 |
commit | d43a82d2c748d00307338d5840bf3f6bbcfd5a07 (patch) | |
tree | 931398953ee92c491ec4a38fcd8600289d6c9fa8 /less | |
parent | Configure mouse usage with Vim (diff) | |
download | dotfiles-d43a82d2c748d00307338d5840bf3f6bbcfd5a07.tar.gz dotfiles-d43a82d2c748d00307338d5840bf3f6bbcfd5a07.zip |
Put all of LESS= setting on one line
Looks like recent versions of less still don't support the += syntax.
Diffstat (limited to 'less')
-rw-r--r-- | less/lesskey | 22 |
1 files changed, 11 insertions, 11 deletions
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 = - |