1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-22 07:37:23 +00:00
This commit is contained in:
2019-10-15 09:54:10 -06:00
parent f61d212272
commit 60c55b69bc

View File

@ -350,7 +350,7 @@ func handleTab() error {
} else if rLen <= 5 {
newViewTitle = fmt.Sprintf("%s|| %s", originalViewTitle, strings.Join(resultSlice, " "))
} else if rLen > 5 {
newViewTitle = fmt.Sprintf("%s|| %s +%d more", originalViewTitle, strings.Join(resultSlice[:6], " "), rLen - 5)
newViewTitle = fmt.Sprintf("%s|| %s +%d more", originalViewTitle, strings.Join(resultSlice[:6], " "), rLen-5)
}
viewTitle("Input", newViewTitle)
remainder := stringRemainder(s, lcp)