Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Zsh Autosuggestions | 25,190 | a month ago | 1 | March 03, 2021 | 135 | mit | Shell | |||
Fish-like autosuggestions for zsh | ||||||||||
Kubectx | 14,910 | 9 days ago | 26 | January 11, 2022 | 46 | apache-2.0 | Go | |||
Faster way to switch between clusters and namespaces in kubectl | ||||||||||
Zsh Completions | 5,849 | a month ago | 1 | March 03, 2021 | 35 | other | Shell | |||
Additional completion definitions for Zsh. | ||||||||||
Fasd | 5,027 | 3 years ago | 1 | February 27, 2018 | 109 | mit | Shell | |||
Command-line productivity booster, offers quick access to files and directories, inspired by autojump, z and v. | ||||||||||
Zsh Autocomplete | 3,109 | 3 days ago | 27 | mit | Shell | |||||
🤖 Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion. | ||||||||||
Git Flow Completion | 2,588 | 5 years ago | 16 | mit | Shell | |||||
Bash, Zsh and fish completion support for git-flow. | ||||||||||
Dotfiles | 2,154 | 3 years ago | 7 | mit | VimL | |||||
config files for zsh, bash, completions, gem, git, irb, rails | ||||||||||
Fzf Tab | 2,025 | 6 days ago | 56 | mit | Shell | |||||
Replace zsh's default completion selection menu with fzf! | ||||||||||
Gibo | 1,814 | 7 months ago | 1 | February 27, 2018 | 1 | unlicense | Shell | |||
Easy access to gitignore boilerplates | ||||||||||
Omelette | 1,260 | 155 | 101 | a year ago | 21 | September 21, 2021 | 15 | mit | CoffeeScript | |
Omelette is a simple, template based autocompletion tool for Node and Deno projects with super easy API. (For Bash, Zsh and Fish) |
Bash, Zsh and fish completion support for git-flow.
The contained completion routines provide support for completing:
To achieve git-flow completion nirvana:
Install git-flow-completion.bash
. Either:
Place it in your bash_completion.d
folder, usually something like /etc/bash_completion.d
,
/usr/local/etc/bash_completion.d
or ~/bash_completion.d
.
Or, copy it somewhere (e.g. ~/git-flow-completion.bash
) and put the following line in the .profile
or
.bashrc
file in your home directory:
source ~/git-flow-completion.bash
If you are using Git < 1.7.1, you will need to edit git completion (usually /etc/bash_completion.d/git
or
git-completion.sh
) and add the following line to the $command
case in _git
:
_git ()
{
[...]
case "$command" in
[...]
flow) _git_flow ;;
*) COMPREPLY=() ;;
esac
}
To achieve git-flow completion nirvana:
Update your zsh's git-completion module to the newest version -- available here. Optional if you have an up-to-date version of zsh.
Install git-flow-completion.zsh
. Either:
Place it in your .zshrc
.
Or, copy it somewhere (e.g. ~/.git-flow-completion.zsh
) and put the following line in
your .zshrc
:
source ~/.git-flow-completion.zsh
Or, use this file as an oh-my-zsh plugin.
git clone https://github.com/bobthecow/git-flow-completion ~/.oh-my-zsh/custom/plugins/git-flow-completion
After doing that, your file tree ought to look like this:
Turn the plugin on by updating your zsh configuration file, ~/.zshrc
open ~/.zshrc
Find the plugins section. It'll look like this:
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(<some-plugin> <another-plugin> <third-plugin>)
Add git-flow-completion
to the list of plugins within the parentheses.
Save
Reload Terminal
To achieve git-flow completion nirvana:
git.fish
in your ~/.config/fish/completions
folder.Copyright (c) 2010-2015 Justin Hileman
Distributed under the MIT License