Add gitignore function
This commit is contained in:
parent
87308cbce9
commit
1684aaa50f
2 changed files with 61 additions and 0 deletions
15
git/.config/zsh/completions/_gitignore
Executable file
15
git/.config/zsh/completions/_gitignore
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#compdef _gitignore gitignore
|
||||
#
|
||||
# Requires gitignore script in path
|
||||
#
|
||||
# Enables completion for zsh of gitignore function.
|
||||
|
||||
_gitignore_get_command_list() {
|
||||
curl -sL https://www.gitignore.io/api/list | tr ',' '\n'
|
||||
}
|
||||
|
||||
_gitignore() {
|
||||
_arguments \
|
||||
'1::flags:((-f\:"Save output to .gitignore file in current directory"))' \
|
||||
":listopts: _values -s, 'modules' $(_gitignore_get_command_list)"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue