├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── internal ├── converter │ ├── converter.go │ ├── converter_test.go │ └── testdata │ │ └── compfile │ │ ├── 1_long │ │ ├── 1_long.fish │ │ └── _1_long │ │ ├── 2_short_long │ │ ├── 2_short_long.fish │ │ └── _2_short_long │ │ ├── 3_old │ │ ├── 3_old.fish │ │ └── _3_old │ │ └── 4_shorts │ │ ├── 4_shorts.fish │ │ └── _4_shorts └── util │ └── util.go └── main.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | go test -v -cover ./... 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/go.sum -------------------------------------------------------------------------------- /internal/converter/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/converter.go -------------------------------------------------------------------------------- /internal/converter/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/converter_test.go -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/1_long/1_long.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/1_long/1_long.fish -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/1_long/_1_long: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/1_long/_1_long -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/2_short_long/2_short_long.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/2_short_long/2_short_long.fish -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/2_short_long/_2_short_long: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/2_short_long/_2_short_long -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/3_old/3_old.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/3_old/3_old.fish -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/3_old/_3_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/3_old/_3_old -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/4_shorts/4_shorts.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/4_shorts/4_shorts.fish -------------------------------------------------------------------------------- /internal/converter/testdata/compfile/4_shorts/_4_shorts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/converter/testdata/compfile/4_shorts/_4_shorts -------------------------------------------------------------------------------- /internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/internal/util/util.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umlx5h/zsh-manpage-completion-generator/HEAD/main.go --------------------------------------------------------------------------------