This repository contains a Bash completion script for the Go programming language command-line tools. It provides intelligent auto-completion for Go commands and their various options, making it easier and faster to work with Go from the command line.
- Comprehensive completion for main Go commands (
build,run,test, etc.) - Subcommand-specific completions (e.g.,
go mod init,go tool pprof, etc.) - Intelligent package name suggestions based on your current workspace
- Workspace-aware completions that adapt to the presence of
go.workfiles - Caching of package lists for improved performance
curl -so- https://raw.githubusercontent.com/Watchdog0x/goComplete/main/install.sh | sudo bashwget -qO- https://raw.githubusercontent.com/Watchdog0x/goComplete/main/install.sh | sudo bashOnce installed, you can start using the Go completion script immediately. Simply start typing a Go command and press Tab to see available completions. For example:
go bu<Tab> # Completes to: go build
go run -<Tab> # Shows available flags for 'go run'
go mod i<Tab> # Completes to: go mod initThis completion script supports all major Go commands and their subcommands, including:
buildcleandocenvfixfmtgenerategetinstalllistmodruntesttoolversionvetwork
Each command has tailored completions for its specific flags and options.
Contributions to improve this completion script are welcome! Please feel free to submit issues or pull requests if you find any bugs or have suggestions for enhancements.
This project is licensed under the MIT License - see the LICENSE file for details.
- The Go team for creating such an amazing language and toolset: cmd go doc | tools doc
- The Bash completion community for their excellent documentation and examples