1
0
Fork 0

check for valid terminal

This commit is contained in:
Timothy Warren 2021-03-19 17:08:19 -04:00
parent 64b7a51f69
commit eb474ddad2
1 changed files with 12 additions and 2 deletions

View File

@ -2,12 +2,22 @@ package terminal
import (
"fmt"
"golang.org/x/term"
"os"
"golang.org/x/term"
)
// Is this a valid interactive terminal?
func check() {
if !term.IsTerminal(int(os.Stdin.Fd())) {
panic("An interactive terminal is required to use a text editor!")
}
}
// Put the terminal in raw mode
func RawOn() *term.State {
check()
oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
if err != nil {
panic(err)
@ -29,4 +39,4 @@ func OutLn(format string, a ...interface{}) {
formatted := fmt.Sprintf(format, a...)
fmt.Printf("%s\r\n", formatted)
}
}