Go to file
Eyal Posener 88e59760ad Merge pull request #52 from thomshutt/master
Fixed grammar
2017-09-08 15:52:45 +03:00
cmd Fixed grammar 2017-09-08 13:40:26 +01:00
example/self Fix example/self 2017-05-23 07:33:38 +03:00
gocomplete Handle default gopath $HOME/go when env var $GOPATH is not set. 2017-07-30 19:41:18 +02:00
match Fix './' prefix for file completion 2017-05-18 23:29:55 +03:00
tests fix nested files 2017-05-13 00:40:26 +03:00
.gitignore Add go test script and travis file 2017-05-06 00:38:16 +03:00
.travis.yml travis: add gometalinter tests 2017-05-19 00:33:49 +03:00
LICENSE.txt change license to MIT 2017-05-20 23:22:26 +03:00
args.go Fix './' prefix for file completion 2017-05-18 23:29:55 +03:00
args_test.go Fix './' prefix for file completion 2017-05-18 23:29:55 +03:00
command.go lint: fix typo 2017-08-25 09:41:42 +03:00
common_test.go remove testing flags from complete command 2017-05-13 11:07:03 +03:00
complete.go Fix installation 2017-05-23 07:33:14 +03:00
complete_test.go Fix tests from rebase 2017-08-24 17:37:26 -07:00
log.go Roughly add all go commands 2017-05-06 00:25:27 +03:00
metalinter.json travis: add gometalinter tests 2017-05-19 00:33:49 +03:00
predict.go predict: split file 2017-05-11 22:02:05 +03:00
predict_files.go predict files: remove loop 2017-05-20 08:13:13 +03:00
predict_set.go predict: split file 2017-05-11 22:02:05 +03:00
predict_test.go Fix './' prefix for file completion 2017-05-18 23:29:55 +03:00
readme.md readme: fix example 2017-05-23 07:39:54 +03:00
test.sh [travis] test multiple packages 2017-05-08 06:30:01 +03:00
utils.go Fix './' prefix for file completion 2017-05-18 23:29:55 +03:00

readme.md

complete

Build Status codecov GoDoc Go Report Card

A tool for bash writing bash completion in go.

Writing bash completion scripts is a hard work. This package provides an easy way 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

In 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.

Install

  1. Type in your shell:
go get -u github.com/posener/complete/gocomplete
gocomplete -install
  1. Restart your shell

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

Supported shells:

  • bash
  • zsh

Usage

Assuming you have program called run and you want to have bash completion for it, meaning, if you type run then space, then press the Tab key, the shell will suggest relevant complete options.

In that case, we will create a program called runcomplete, a go program, with a func main() and so, that will make the completion of the run program. Once the runcomplete will be in a binary form, we could runcomplete -install and that will add to our shell all the bash completion options for run.

So here it is:

import "github.com/posener/complete"

func main() {

	// create a Command object, that represents the command we want
	// to complete.
	run := complete.Command{

		// Sub defines a list of sub commands of the program,
		// this is recursive, since every command is of type command also.
		Sub: complete.Commands{

			// add a build sub command
			"build": complete.Command {

				// define flags of the build sub command
				Flags: complete.Flags{
					// build sub command has a flag '-cpus', which
					// expects number of cpus after it. in that case
					// anything could complete this flag.
					"-cpus": complete.PredictAnything,
				},
			},
		},

		// define flags of the 'run' main command
		Flags: complete.Flags{
			// a flag -o, which expects a file ending with .out after
			// it, the tab completion will auto complete for files matching
			// the given pattern.
			"-o": complete.PredictFiles("*.out"),
		},

		// define global flags of the 'run' main command
		// those will show up also when a sub command was entered in the
		// command line
		GlobalFlags: complete.Flags{

			// a flag '-h' which does not expects anything after it
			"-h": complete.PredictNothing,
		},
	}

	// run the command completion, as part of the main() function.
	// this triggers the autocompletion when needed.
	// name must be exactly as the binary that we want to complete.
	complete.New("run", run).Run()
}

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