From 1187cb1f16e60c926571cb094ad2a2c1b3c7eaa4 Mon Sep 17 00:00:00 2001 From: Marc Richter Date: Tue, 4 Apr 2023 13:15:10 +0200 Subject: [PATCH] lib/history: Fix broken link in comments (#425) --- lib/history.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/history.sh b/lib/history.sh index 0d71a0e..40286c1 100644 --- a/lib/history.sh +++ b/lib/history.sh @@ -39,7 +39,7 @@ HISTCONTROL="erasedups:ignoreboth" export HISTIGNORE="exit:ls:bg:fg:history:clear" # Enable incremental history search with up/down arrows (also Readline goodness) -# Learn more about this here: http://codeinthehole.com/writing/the-most-important-command-line-tip-incremental-hi +# Learn more about this here: https://codeinthehole.com/tips/the-most-important-command-line-tip-incremental-history-searching-with-inputrc/ # bash4 specific ?? bind '"\e[A": history-search-backward' bind '"\e[B": history-search-forward'