Click Completion

Add or enhance bash, fish, zsh and powershell completion in Click
Alternatives To Click Completion
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Zsh Autosuggestions26,292
3 days ago1March 03, 2021144mitShell
Fish-like autosuggestions for zsh
Kubectx14,910
2 months ago26January 11, 202246apache-2.0Go
Faster way to switch between clusters and namespaces in kubectl
Zsh Completions6,018
6 days ago1March 03, 202136otherShell
Additional completion definitions for Zsh.
Fasd5,027
3 years ago1February 27, 2018109mitShell
Command-line productivity booster, offers quick access to files and directories, inspired by autojump, z and v.
Zsh Autocomplete3,331
2 days ago6mitShell
🤖 Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion.
Git Flow Completion2,588
5 years ago16mitShell
Bash, Zsh and fish completion support for git-flow.
Dotfiles2,154
4 years ago7mitVimL
config files for zsh, bash, completions, gem, git, irb, rails
Fzf Tab2,055
2 months ago57mitShell
Replace zsh's default completion selection menu with fzf!
Gibo1,814
9 months ago1February 27, 20181unlicenseShell
Easy access to gitignore boilerplates
Omelette1,260155101a year ago21September 21, 202115mitCoffeeScript
Omelette is a simple, template based autocompletion tool for Node and Deno projects with super easy API. (For Bash, Zsh and Fish)
Alternatives To Click Completion
Select To Compare


Alternative Project Comparisons
Readme

click-completion

Enhanced completion for Click

Add automatic completion support for fish, Zsh, Bash and PowerShell to Click.

All the supported shells are able to complete all the command line arguments and options defined with click. In addition, fish and Zsh are also displaying the options and commands help during the completion.

asciicast

Activation

In order to activate the completion, you need to:

  • initialize the click_completion module;
  • inform your shell that completion is available for your script, and how.

click_completion initialization

click_completion monkey-patches click in order to enhance the native completion capabilities. This is done very simply:

import click_completion
click_completion.init()

Once done, your click application is ready for completion.

Inform your shell

click_completion has some functions to produce the code to be executed by the shell during the completion, and to permanently install this code in a place that is automatically loaded by the shell.

The key functions are:

  • get_code
  • install

An example of usage can be found in examples/click-completion-command and in examples/click-completion-callback

Dependencies

click-completion obviously depends on click. Jinja2 is used to generate the shell specific code.

And of course to make it useful, you'll need to use fish, Bash, Zsh or PowerShell.

Customizing completion

Application level

click_complete has a startswith function that can be replaced by a custom one in order to customize the completion. Some extra environment variable to be used during the completion can be passed to get_code and install. An example is available in examples/click-completion-command.

Parameter type level

The custom parameter type may reimplement the complete method in order to customize the completion result. The complete method takes the current context and the incomplete argument to be completed. It can return either a list of argument value that match the incomplete argument, or a list of tuples (arg, help). This last form is preferred because it allows to display the help during the completion for the shells that supports it.

An example can be found in the class DocumentedChoice in click_completion/init.py.

How it works

As click, the general way click_completion works is through a magic environment variable called _<PROG_NAME>_COMPLETE, where <PROG_NAME> is your application executable name in uppercase with dashes replaced by underscores.

If your tool is called foo-bar, then the magic variable is called _FOO_BAR_COMPLETE. By exporting it with the source value it will spit out the activation script which can be trivially activated.

For instance, to enable fish completion for your foo-bar script, this is what you would need to put into your ~/.config/fish/completions/foo-bar.fish

eval (env _FOO_BAR_COMPLETE=source-fish foo-bar)

From this point onwards, your script will have fish completion enabled.

The above activation example will always invoke your application on startup. This might be slowing down the shell activation time significantly if you have many applications. Alternatively, you could also ship a file with the contents of that, which is what Git and other systems are doing.

This can be easily accomplished:

_FOO_BAR_COMPLETE=source-fish foo-bar > ~/.config/fish/completions/foo-bar.fish

License

Licensed under the MIT, see LICENSE.

Contributing

Contributions are all very welcome!

This may be in the form of bug reports, pull requests, …

A few subjects need some attention currently:

  • documentation
  • tests
  • argument parsing
Popular Completion Projects
Popular Zsh Projects
Popular Text Processing Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Shell
Powershell
Bash
Zsh
Completion
Fish Shell