From 1e899bf18e8341c21baef9b88692afb62239058e Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sat, 19 Mar 2022 13:24:12 -0400 Subject: [PATCH] chore: set name of history in menu to History instead of file --- rl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rl.go b/rl.go index edbef28..6c68428 100644 --- a/rl.go +++ b/rl.go @@ -21,7 +21,7 @@ func newLineReader(prompt string, noHist bool) *lineReader { // but it cant have shared history if !noHist { fileHist = newFileHistory() - rl.SetHistoryCtrlR("file", fileHist) + rl.SetHistoryCtrlR("History", fileHist) rl.HistoryAutoWrite = false } rl.ShowVimMode = false