From 8fa1f10d887360108e15a825c448412aa1e85175 Mon Sep 17 00:00:00 2001 From: sloum Date: Thu, 1 Apr 2021 14:43:48 -0700 Subject: [PATCH] Updates project name and cleans things up --- .gitignore | 2 +- main.go | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7f5b8a3..f2772d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -lines +qline diff --git a/main.go b/main.go index 3eb5a76..9a2f3e4 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( "os" "strings" - "tildegit.org/sloum/lines/termios" + "tildegit.org/sloum/qline/termios" ) const ( @@ -221,9 +221,12 @@ func PrintKey(k rune) { } func main() { + // This main func is just for testing and will + // be removed with the intention that this just + // gets used as a lib termios.SetCharMode() defer termios.Restore() - str := "Hi" + str := "" for { fmt.Print("\n")