Go to file
Eyal Posener 0b5973aaac Add cover badge 2017-05-06 00:39:59 +03:00
gocomplete Roughly add all go commands 2017-05-06 00:25:27 +03:00
tests Add additional args 2017-05-05 23:07:18 +03:00
.gitignore Add go test script and travis file 2017-05-06 00:38:16 +03:00
.travis.yml Add go test script and travis file 2017-05-06 00:38:16 +03:00
command.go Roughly add all go commands 2017-05-06 00:25:27 +03:00
complete.go Roughly add all go commands 2017-05-06 00:25:27 +03:00
complete_test.go Add additional args 2017-05-05 23:07:18 +03:00
go.test.sh Add go test script and travis file 2017-05-06 00:38:16 +03:00
log.go Roughly add all go commands 2017-05-06 00:25:27 +03:00
option.go Roughly add all go commands 2017-05-06 00:25:27 +03:00
predicate.go Roughly add all go commands 2017-05-06 00:25:27 +03:00
readme.md Add cover badge 2017-05-06 00:39:59 +03:00

readme.md

complete

Build Status

WIP

a tool for bash writing bash completion in go.

example: go command bash completion

Install in you home directory:

go build -o ~/.bash_completion/go ./gocomplete
echo "complete -C ~/.bash_completion/go go" >> ~/.bashrc

Or, install in the root directory:

sudo go build -o /etc/bash_completion.d/go ./gocomplete