From 8d532fd9b718a1f340c8a375383835d4e501397b Mon Sep 17 00:00:00 2001 From: "Luke I. Wilson" Date: Wed, 24 Mar 2021 18:37:12 -0500 Subject: [PATCH] Renamed diesel to qedit --- .gitignore | 2 +- go.mod | 2 +- main.go | 2 +- ui/textedit.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 02be482..3a56504 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ # Block executable -diesel* +qedit* diff --git a/go.mod b/go.mod index fbc32e1..fd6e28f 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/fivemoreminix/diesel +module github.com/fivemoreminix/qedit go 1.12 diff --git a/main.go b/main.go index 42b67fa..c6be316 100644 --- a/main.go +++ b/main.go @@ -7,7 +7,7 @@ import ( "io/ioutil" "os" - "github.com/fivemoreminix/diesel/ui" + "github.com/fivemoreminix/qedit/ui" "github.com/gdamore/tcell/v2" ) diff --git a/ui/textedit.go b/ui/textedit.go index 050b6a1..867b9d3 100644 --- a/ui/textedit.go +++ b/ui/textedit.go @@ -7,7 +7,7 @@ import ( "strings" "unicode/utf8" - "github.com/fivemoreminix/diesel/ui/buffer" + "github.com/fivemoreminix/qedit/ui/buffer" "github.com/gdamore/tcell/v2" )