Files
zyedidia.micro/cmd/micro/info/gutter.go
Zachary Yedidia f79d45aafb Add infobar
2018-12-31 22:07:01 -05:00

19 lines
397 B
Go

package info
// A GutterMessage is a message displayed on the side of the editor
type GutterMessage struct {
lineNum int
msg string
kind int
}
// These are the different types of messages
const (
// GutterInfo represents a simple info message
GutterInfo = iota
// GutterWarning represents a compiler warning
GutterWarning
// GutterError represents a compiler error
GutterError
)