Autoformatting
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good

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 return cursorX
} }

View File

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

View File

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

View File

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

View File

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

View File

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