1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-22 21:27:24 +00:00

Merge branch 'tab-fix-01' of https://github.com/haukened/kbtui into dev

This commit is contained in:
Gregory 'Rudi' Rudolph
2019-10-28 16:47:18 -04:00

View File

@ -545,6 +545,10 @@ func deleteEmpty(s []string) []string {
func handleInput(viewName string) error { func handleInput(viewName string) error {
clearView(viewName) clearView(viewName)
inputString, _ := getInputString(viewName) inputString, _ := getInputString(viewName)
if newViewTitle := getViewTitle(viewName); newViewTitle != "" {
// restore any tab completion view titles on input commit
setViewTitle(viewName, newViewTitle)
}
if inputString == "" { if inputString == "" {
return nil return nil
} }
@ -570,10 +574,6 @@ func handleInput(viewName string) error {
} else { } else {
go sendChat(inputString) go sendChat(inputString)
} }
// restore any tab completion view titles on input commit
if newViewTitle := getViewTitle(viewName); newViewTitle != "" {
setViewTitle(viewName, newViewTitle)
}
go populateList() go populateList()
return nil return nil