This commit is contained in:
parent
c18181c064
commit
6f51f441e3
@ -150,4 +150,4 @@ func (r *Row) RenderXtoCursorX(renderX int) (cursorX int) {
|
||||
}
|
||||
|
||||
return cursorX
|
||||
}
|
||||
}
|
||||
|
@ -6,4 +6,4 @@ package highlight
|
||||
const (
|
||||
Normal = iota
|
||||
Number
|
||||
)
|
||||
)
|
||||
|
@ -9,4 +9,3 @@ const (
|
||||
TabSize = 4
|
||||
QuitTimes = 3
|
||||
)
|
||||
|
||||
|
@ -16,4 +16,3 @@ func NewPoint(x, y int) *Point {
|
||||
func (p *Point) Clone() *Point {
|
||||
return &Point{p.X, p.Y}
|
||||
}
|
||||
|
||||
|
@ -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"
|
||||
)
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@ -21,4 +21,3 @@ func ReadKey() (rune, int) {
|
||||
func Write(s string) {
|
||||
fmt.Print(s)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user