complete icon indicating copy to clipboard operation
complete copied to clipboard

bash completion written in go + bash completion for go command

Results 28 complete issues
Sort by recently updated
recently updated
newest added

Thanks for making this lib it's quite useful. Please see the error and potential problem outlined below. ``` 10:21:07 chrome@Beast src → bit complete install completion for bit? y installing......

bug
help wanted

Hi, I really like how easily `complete` allows to add completion to CLI tools using `flag` but since I use it, I have lost the classic bash completion on filenames...

enhancement
question

I have a setup like so: ``` Flags: map[string]complete.Predictor{ "o": predict.Nothing, "upload-pack": predict.Nothing, ... } ``` Now when I type a command like ` --` [TAB] I see the below...

enhancement

The instruction is quite confusing for me. Here is what I did. I wrote a piece of code very similar to the example code on the doc page, which generated...

question

I would prefer to use a completely different approach to exposing the install/uninstall than with the `flags` package. I'm using a completely different package for building CLI apps, and would...

Hey. Currently, using posener/complete does not automatically escape spaces in bash. I think the best solution of this is to add a new API which pass options to complete command,...

enhancement
help wanted

When install shell completion scripts it's more accurate to use os.UserHomeDir(). Program can be run with sudo and will use root's homeDir instead of original user.

I use this package's go completion daily and I really appreciate it. However the completion suggestions for packages is both limited and now outdated as it relies on GOPATH, which...

When writing completion function in bash you can use `compopt -o nospace` to omit the trailing space from completed arguments. How could something like this be achieved using this library?...

This replaces #99. I didn't like that you had to change the filter for all arguments or nothing there. This allows the custom prefix filter to be set in the...