Handle input errors while returning to correct terminal mode

This commit is contained in:
asdf 2020-09-08 13:41:52 +10:00
parent 97b74ea767
commit 2f8eedded7
1 changed files with 1 additions and 1 deletions

View File

@ -102,6 +102,7 @@ func Getch() rune {
func GetLine(prefix string) (string, error) {
termios.SetLineMode()
defer termios.SetCharMode()
reader := bufio.NewReader(os.Stdin)
fmt.Print(prefix)
@ -110,7 +111,6 @@ func GetLine(prefix string) (string, error) {
return "", err
}
termios.SetCharMode()
return text[:len(text)-1], nil
}