Compare commits

..

2 Commits

Author SHA1 Message Date
sammyette b70f02e43e
Merge a24bca3258 into 4c61c551aa 2024-05-15 12:00:32 -04:00
sammyette 4c61c551aa
fix: menu refreshes
now there's no flicker *and* its not bugged with
leaving the text on exit
2024-05-13 22:10:28 -04:00
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ func (rl *Instance) updateTabFind(r []rune) {
rl.search = string(rl.tfLine)
// We update and print
rl.clearHelpers()
//rl.clearHelpers()
rl.getTabCompletion()
rl.renderHelpers()
}

View File

@ -121,7 +121,7 @@ func (rl *Instance) clearHelpers() {
moveCursorForwards(rl.fullX)
// Clear everything below
//print(seqClearScreenBelow)
print(seqClearScreenBelow)
// Go back to current cursor position
moveCursorBackwards(GetTermWidth())