summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2017-05-13 00:54:00 +0300
committerGitHub <[email protected]>2017-05-13 00:54:00 +0300
commitcc2d0e6974a8644191666e9e1e466b06c8bd6cde (patch)
treeb9ddd9c8591005ae8d9331bda5f89d5e2f157bc8
parent9123548bc5f7725948b6096be4ef490af71194b3 (diff)
parentc7377ba2de5df7097776c07f1ca68ca0fc8ee90e (diff)
Merge pull request #17 from posener/readme
more to read in readme
-rw-r--r--readme.md13
1 files changed, 9 insertions, 4 deletions
diff --git a/readme.md b/readme.md
index 0010098..c507cda 100644
--- a/readme.md
+++ b/readme.md
@@ -15,6 +15,9 @@ the completion of the command.
In [gocomplete](./gocomplete) there is an example for bash completion for the `go` command line.
+This is an example that uses the `complete` package on the `go` command - the `complete` package
+can also be used to implement any completions, see [Usage](#usage).
+
### Install
1. Type in your shell:
@@ -25,11 +28,13 @@ gocomplete -install
2. Restart your shell
-### Uninstall
+Uninstall by `gocomplete -uninstall`
-```
-gocomplete -uninstall
-```
+### Features
+
+- Complete `go` command, including sub commands and all flags.
+- Complete packages names or `.go` files when necessary.
+- Complete test names after `-run` flag.
## Usage