├── .github ├── FUNDING.yml └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── autocomplete.go ├── autocomplete_test.go ├── docs └── example.gif ├── generator.go ├── go.mod ├── go.sum ├── main.go ├── manager.go ├── manager_test.go ├── parser.go ├── parser_test.go ├── scripts ├── fetcher.go └── visiter.go └── template.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/README.md -------------------------------------------------------------------------------- /autocomplete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/autocomplete.go -------------------------------------------------------------------------------- /autocomplete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/autocomplete_test.go -------------------------------------------------------------------------------- /docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/docs/example.gif -------------------------------------------------------------------------------- /generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/generator.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/main.go -------------------------------------------------------------------------------- /manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/manager.go -------------------------------------------------------------------------------- /manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/manager_test.go -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/parser.go -------------------------------------------------------------------------------- /parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/parser_test.go -------------------------------------------------------------------------------- /scripts/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/scripts/fetcher.go -------------------------------------------------------------------------------- /scripts/visiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/scripts/visiter.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedakef/goshell/HEAD/template.go --------------------------------------------------------------------------------