From a75ef58cc211e765f8dbfc56671c87e102f4c53d Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Thu, 20 Dec 2012 17:19:39 +0100 Subject: [PATCH] lesskey: Don't use --search-skip-screen. --- lesskey | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lesskey b/lesskey index 3a4e402..a89aeb0 100644 --- a/lesskey +++ b/lesskey @@ -38,14 +38,16 @@ l right-scroll # # no-init: Disable initialization termcap as it sometimes causes the screen to # get cleared. -# search-skip-screen: Start searching at the bottom of the screen. # quit-if-one-screen: If the output fits on the current screen quit less. # RAW-CONTROL-CHARS: Display ANSI "color" escape sequences to allow colored # output. Other escape sequences are drawn in caret # notation. # ignore-case: Ignore case if the search string doesn't contain any uppercase # letters. -LESS = --no-init --search-skip-screen --quit-if-one-screen --RAW-CONTROL-CHARS --ignore-case +# +# Don't use search-skip-screen or it's easy to miss matches on the current +# page. +LESS = --no-init --quit-if-one-screen --RAW-CONTROL-CHARS --ignore-case # Store less' history file in this directory. HISTORY_PATH is replaced by # setup.sh because lesskey doesn't expand ~/. -- 2.44.1