Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
posener committed Mar 8, 2019
1 parent 82e658e commit eb60014
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 5 additions & 6 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ Writing bash completion scripts is a hard work. This package provides an easy wa
to create bash completion scripts for any command, and also an easy way to install/uninstall
the completion of the command.
go command bash completion
Go Command Bash Completion
In [gocomplete](./cmd/gocomplete) there is an example for bash completion for the `go` command line.
In ./cmd/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).
can also be used to implement any completions, see #usage.
Install
Expand All @@ -23,14 +23,13 @@ Install
Uninstall by `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.
complete package
Complete package
Supported shells:
Expand Down Expand Up @@ -105,7 +104,7 @@ Self completing program
In case that the program that we want to complete is written in go we
can make it self completing.
Here is an [example](./example/self/main.go)
Here is an example: ./example/self/main.go .
*/
package complete
1 change: 1 addition & 0 deletions match/match.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package match contains matchers that decide if to apply completion.
package match

// Match matches two strings
Expand Down

0 comments on commit eb60014

Please sign in to comment.