mirror of
https://github.com/Rudi9719/kbtui.git
synced 2026-03-22 06:27:24 +00:00
Merge branch 'tab-fix-01' into dev
This commit is contained in:
8
main.go
8
main.go
@ -545,6 +545,10 @@ func deleteEmpty(s []string) []string {
|
||||
func handleInput(viewName string) error {
|
||||
clearView(viewName)
|
||||
inputString, _ := getInputString(viewName)
|
||||
if newViewTitle := getViewTitle(viewName); newViewTitle != "" {
|
||||
// restore any tab completion view titles on input commit
|
||||
setViewTitle(viewName, newViewTitle)
|
||||
}
|
||||
if inputString == "" {
|
||||
return nil
|
||||
}
|
||||
@ -571,10 +575,6 @@ func handleInput(viewName string) error {
|
||||
inputString = resolveRootEmojis(inputString)
|
||||
go sendChat(inputString)
|
||||
}
|
||||
// restore any tab completion view titles on input commit
|
||||
if newViewTitle := getViewTitle(viewName); newViewTitle != "" {
|
||||
setViewTitle(viewName, newViewTitle)
|
||||
}
|
||||
|
||||
go populateList()
|
||||
return nil
|
||||
|
||||
Reference in New Issue
Block a user