From 207f022b43960aa62b8b8c5ce823d1c65c07d080 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Mon, 8 Oct 2018 21:18:43 -0700 Subject: [PATCH] Added zsh completion for dlaudio --- .gitignore | 5 ++++- zsh-completions/_dlaudio | 15 +++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 zsh-completions/_dlaudio 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