delve/vendor/github.com/peterh/liner/input_solaris.go
Alessandro Arzilli 5862e40192
go.mod: bump liner version (#2874)
Bump versio of github.com/peterh/liner to 1.2.2 that contains a fix for
a bug on windows.

Fixes #2869
2022-01-18 09:02:30 -08:00

27 lines
368 B
Go

package liner
import (
"golang.org/x/sys/unix"
)
const (
getTermios = unix.TCGETS
setTermios = unix.TCSETS
)
const (
icrnl = unix.ICRNL
inpck = unix.INPCK
istrip = unix.ISTRIP
ixon = unix.IXON
opost = unix.OPOST
cs8 = unix.CS8
isig = unix.ISIG
icanon = unix.ICANON
iexten = unix.IEXTEN
)
type termios unix.Termios
const cursorColumn = false