22 lines
355 B
Go
22 lines
355 B
Go
package main
|
|
|
|
import (
|
|
"timshome.page/gilo/internal/editor"
|
|
"timshome.page/gilo/internal/terminal"
|
|
)
|
|
|
|
func main() {
|
|
// Go to proper raw mode, but restore canonical mode at exit
|
|
oldState := terminal.RawOn()
|
|
defer terminal.RawOff(oldState)
|
|
|
|
// The input loop
|
|
for {
|
|
editor.RefreshScreen()
|
|
|
|
if editor.ProcessKeypress() == false {
|
|
break
|
|
}
|
|
}
|
|
}
|