| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-04-06 | gocomplete: suppress error output by default | Chris Nobody | |
| Prevent the Go command completion from jumbling up the shell prompt on errors by setting the Writer of the standard lib default log.Logger to ioutil.Discard unless the system environment variable `GOCOMP_VERBOSE` has been explicitly set to "1" (e.g. for debugging purposes). Fixes #139 | |||
| 2021-04-01 | gocomplete: do not suppress test failures | Chris Nobody | |
| Ensure that the components of the `testing` package that rely on calling `os.Exit` remain functional and any test failures are actually reported back after the `monkey.Patch` in the `gocomplete.Example` test. Fix #135 | |||
| 2021-01-30 | Fix failing go1.16 test | Eyal Posener | |
| Fixes #132 | |||
| 2019-11-18 | update module import path | Eyal Posener | |
| 2019-11-18 | V2 | Eyal Posener | |
| 2019-10-23 | Remove gocomplete module files | Eyal Posener | |
| Fixes #93 | |||
| 2019-07-05 | Deprecate Args.Directory() | Eyal Posener | |
| 2019-06-09 | gocomplete: Fix module name | Eyal Posener | |
| Fixes #88 | |||
| 2018-10-19 | Add support for CMP_POINT | Eyal Posener | |
| Fixes #72 | |||
| 2018-08-27 | feat(help,mod): Add completion for `go help` and `go mod` | Adam S Levy | |
| Go 1.11 introduces module support which adds a whole new set of commands. Add those commands for modules and also add the completion for the help commands and topics. | |||
| 2018-08-27 | fix(go clean): Added missing flags | Adam S Levy | |
| Added missing flags go clean -cache -testcache -modcache | |||
| 2018-08-27 | build(go111): Add go module support | Adam S Levy | |
| 2018-04-13 | Merge pull request #63 from linux4life798/optionsadd | Eyal Posener | |
| gocomplete - adding go tool link and pack | |||
| 2018-04-10 | gocomplete - Attempted to add go tool link | Craig Hesling | |
| 2018-04-10 | gocomplete - Attempted to add go tool pack | Craig Hesling | |
| 2018-04-10 | gocomplete - Added missing -V option for go tool asm | Craig Hesling | |
| 2018-04-10 | gocomplete - Added missing -S option for go tool objdump | Craig Hesling | |
| 2017-11-04 | Merge branch 'master' into split-last-equal | Eyal Posener | |
| 2017-11-04 | Add logic to complete when last flag uses the equal sign | Eyal Posener | |
| If the last flag is of the form -flag=value, complete the value according to -flag. | |||
| 2017-11-04 | Filter matches as a final stage | Eyal Posener | |
| This simplifies the prediction logic writing, the predictor doesn't need to filter our according to line matching, instead it returns everything and the filtering is done at the end. This does not break current behavior. | |||
| 2017-07-30 | Handle default gopath $HOME/go when env var $GOPATH is not set. | Deleplace | |
| 2017-07-28 | gocomplete: Add support for system GOPATH packages | Eyal Posener | |
| fixes #41 | |||
| 2017-05-27 | gocomplete: add go tool subcommands | Eyal Posener | |
| Fixes #39 | |||
| 2017-05-19 | gocomplete: improve package completion | Eyal Posener | |
| 2017-05-19 | gocomplete: better pakcages listing | Eyal Posener | |
| use go/build package only read one level of packages, and not all packages | |||
| 2017-05-18 | gocomplete: go run should also predict non-main functions | Eyal Posener | |
| 2017-05-18 | Fix './' prefix for file completion | Eyal Posener | |
| 2017-05-15 | Merge pull request #26 from posener/runnable | Eyal Posener | |
| gocomplete: run only runnable go files | |||
| 2017-05-15 | Add example test to increase coverate | Eyal Posener | |
| 2017-05-15 | gocomplete: run only runnable go files | Eyal Posener | |
| when typing 'go run', the completion will complete only go files which are in main package and have a main function. | |||
| 2017-05-15 | Add global flags for command | Eyal Posener | |
| Fixes #24 | |||
| 2017-05-15 | gocomplete: add build flags to get command | Eyal Posener | |
| 2017-05-13 | cmd/install: add support for zsh | Eyal Posener | |
| Fixes: #9 | |||
| 2017-05-13 | fix nested files | Eyal Posener | |
| 2017-05-13 | gocomplete: complete by packages | Eyal Posener | |
| 2017-05-11 | Change Match to be a function | Eyal Posener | |
| 2017-05-11 | Add Predictor interface | Eyal Posener | |
| 2017-05-11 | Improve files and directories completion | Eyal Posener | |
| 2017-05-10 | Enable completion and executable be the same command | Eyal Posener | |
| Fixes #6 | |||
| 2017-05-08 | [gocomplete] fix test name completion | Eyal Posener | |
| 2017-05-07 | Move match to a separate package | Eyal Posener | |
| 2017-05-07 | Remove Name from Command struct | Eyal Posener | |
| 2017-05-06 | improve docs | Eyal Posener | |
| 2017-05-06 | Change Predicate to be of function type | Eyal Posener | |
| 2017-05-06 | Use local completion files and directories according to typed command | Eyal Posener | |
| 2017-05-06 | fmt | Eyal Posener | |
| 2017-05-06 | Use pointers to predicates | Eyal Posener | |
| 2017-05-06 | Add easy way to install the bash completion | Eyal Posener | |
| 2017-05-06 | Remove Complete struct | Eyal Posener | |
| 2017-05-06 | nicer signature for PredictSet | Eyal Posener | |
