mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 18:36:41 +02:00
18 lines
269 B
Go
18 lines
269 B
Go
//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
|
|
}
|