fix(readline): clear history filter on Readline, fixes filtering after ctrl-c

windows-fixes
TorchedSammy 2022-03-15 16:26:56 -04:00
parent b8e0874ab0
commit 0ee47cc6f0
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ func (rl *Instance) Readline() (string, error) {
rl.modeViMode = VimInsert
rl.pos = 0
rl.posY = 0
rl.tcPrefix = ""
// Completion && hints init
rl.resetHintText()