Handle input errors while returning to correct terminal mode #186

Merged
sloum merged 1 commits from handle_input_errors into release2.3.3 2020-09-08 04:18:08 +00:00
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
}