├── .gitignore ├── A Bird, came down the Walk.txt ├── LICENSE ├── README.md ├── cmd └── noter │ └── main.go ├── editor.go ├── editor_test.go ├── go.mod ├── go.sum └── preview.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/.gitignore -------------------------------------------------------------------------------- /A Bird, came down the Walk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/A Bird, came down the Walk.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/README.md -------------------------------------------------------------------------------- /cmd/noter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/cmd/noter/main.go -------------------------------------------------------------------------------- /editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/editor.go -------------------------------------------------------------------------------- /editor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/editor_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/go.sum -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/healeycodes/noter/HEAD/preview.png --------------------------------------------------------------------------------