diff --git a/.gitignore b/.gitignore index 375ca8b..3d79a79 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ -helper-scripts +*.pkg.tar.xz* +helper-scripts-* PKGBUILD +pkg +src diff --git a/zsh-completions/_dlaudio b/zsh-completions/_dlaudio new file mode 100644 index 0000000..71ed5d1 --- /dev/null +++ b/zsh-completions/_dlaudio @@ -0,0 +1,15 @@ +#compdef dlaudio + +# zsh completions for 'dlaudio' +# automatically generated with http://github.com/RobSis/zsh-completion-generator +local arguments + +arguments=( + {-h,--help}'[show this help message and exit]' + {-b,--batch-dl}'[provide the links from a text file]' + {-f,--format}'[the format to use (default:flac)]' + {-n,--filename}'[the name of the downloaded file (without extension)]' + '*:filename:_files' +) + +_arguments -s $arguments