Summary: This diff adds line-editing to llgoi, by vendoring and using github.com/peterh/liner. I have only implemented the basics here; follow-ups will come later to add persisted history, and completion, Reviewers: pcc Reviewed By: pcc Subscribers: axw, llvm-commits Differential Revision: http://reviews.llvm.org/D9811 llvm-svn: 238100
27 lines
386 B
Go
27 lines
386 B
Go
// +build linux
|
|
|
|
package liner
|
|
|
|
import "syscall"
|
|
|
|
const (
|
|
getTermios = syscall.TCGETS
|
|
setTermios = syscall.TCSETS
|
|
)
|
|
|
|
const (
|
|
icrnl = syscall.ICRNL
|
|
inpck = syscall.INPCK
|
|
istrip = syscall.ISTRIP
|
|
ixon = syscall.IXON
|
|
opost = syscall.OPOST
|
|
cs8 = syscall.CS8
|
|
isig = syscall.ISIG
|
|
icanon = syscall.ICANON
|
|
iexten = syscall.IEXTEN
|
|
)
|
|
|
|
type termios struct {
|
|
syscall.Termios
|
|
}
|