├── .github └── workflows │ └── ci.yml ├── Makefile ├── README.adoc ├── git-completion.plugin.zsh ├── src ├── _git ├── git-completion.bash └── git-prompt.sh ├── t ├── .gitignore ├── Makefile ├── completion-zsh.t ├── completion.t ├── lib-bash.sh ├── prompt.t ├── sharness.sh ├── test-lib.sh └── zsh │ ├── .gitignore │ └── .zshrc └── tools ├── converts.json ├── transplant └── update /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/README.adoc -------------------------------------------------------------------------------- /git-completion.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/git-completion.plugin.zsh -------------------------------------------------------------------------------- /src/_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/src/_git -------------------------------------------------------------------------------- /src/git-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/src/git-completion.bash -------------------------------------------------------------------------------- /src/git-prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/src/git-prompt.sh -------------------------------------------------------------------------------- /t/.gitignore: -------------------------------------------------------------------------------- 1 | /test-results/ 2 | /trash directory.*/ 3 | /.prove 4 | -------------------------------------------------------------------------------- /t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/Makefile -------------------------------------------------------------------------------- /t/completion-zsh.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/completion-zsh.t -------------------------------------------------------------------------------- /t/completion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/completion.t -------------------------------------------------------------------------------- /t/lib-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/lib-bash.sh -------------------------------------------------------------------------------- /t/prompt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/prompt.t -------------------------------------------------------------------------------- /t/sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/sharness.sh -------------------------------------------------------------------------------- /t/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/test-lib.sh -------------------------------------------------------------------------------- /t/zsh/.gitignore: -------------------------------------------------------------------------------- 1 | /.zcompdump 2 | -------------------------------------------------------------------------------- /t/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/t/zsh/.zshrc -------------------------------------------------------------------------------- /tools/converts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/tools/converts.json -------------------------------------------------------------------------------- /tools/transplant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/tools/transplant -------------------------------------------------------------------------------- /tools/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipec/git-completion/HEAD/tools/update --------------------------------------------------------------------------------