ollama/readline/readline_unix.go

19 lines
269 B
Go
Raw Normal View History

2023-12-11 15:48:14 +00:00
//go:build !windows
package readline
import (
"syscall"
)
func handleCharCtrlZ(fd int, termios *Termios) (string, error) {
if err := UnsetRawMode(fd, termios); err != nil {
return "", err
}
syscall.Kill(0, syscall.SIGSTOP)
// on resume...
return "", nil
}