1
0
Fork 0

Autoformatting
timw4mail/gilo/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2021-04-07 12:32:57 -04:00
parent c18181c064
commit 6f51f441e3
6 changed files with 5 additions and 8 deletions

View File

@ -150,4 +150,4 @@ func (r *Row) RenderXtoCursorX(renderX int) (cursorX int) {
}
return cursorX
}
}

View File

@ -6,4 +6,4 @@ package highlight
const (
Normal = iota
Number
)
)

View File

@ -9,4 +9,3 @@ const (
TabSize = 4
QuitTimes = 3
)

View File

@ -16,4 +16,3 @@ func NewPoint(x, y int) *Point {
func (p *Point) Clone() *Point {
return &Point{p.X, p.Y}
}

View File

@ -32,9 +32,9 @@ const (
// Color sequences
const (
DefaultFGColor = EscPrefix + "39m"
FGRed = EscPrefix + "31m"
InvertColor = EscPrefix + "7m"
ResetColor = EscPrefix + "m"
FGRed = EscPrefix + "31m"
InvertColor = EscPrefix + "7m"
ResetColor = EscPrefix + "m"
)
// ----------------------------------------------------------------------------

View File

@ -21,4 +21,3 @@ func ReadKey() (rune, int) {
func Write(s string) {
fmt.Print(s)
}