summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_metaflac
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2018-04-07 15:12:57 +0200
committerAxel Beckert <abe@deuxchevaux.org>2018-04-07 15:12:57 +0200
commit6e1ab9aa550695ee7e3d467b4173c0b83ba7f759 (patch)
tree8fb7faa4364a7cbf1cba48296a5f537e13f2a8d9 /Completion/Unix/Command/_metaflac
parent5ad56a41f1ee2e61abca079f5ea8909f895ac2dd (diff)
parentf027f1d6e876708bc75d4217e1ca26898658d8d3 (diff)
downloadzsh-6e1ab9aa550695ee7e3d467b4173c0b83ba7f759.tar.gz
zsh-6e1ab9aa550695ee7e3d467b4173c0b83ba7f759.zip
Merge tag 'zsh-5.4.2-test-2' / 'upstream' branch into 'debian' branch
Test version 2 prior to zsh 5.5.
Diffstat (limited to 'Completion/Unix/Command/_metaflac')
-rw-r--r--Completion/Unix/Command/_metaflac54
1 files changed, 0 insertions, 54 deletions
diff --git a/Completion/Unix/Command/_metaflac b/Completion/Unix/Command/_metaflac
deleted file mode 100644
index 65b9eb292..000000000
--- a/Completion/Unix/Command/_metaflac
+++ /dev/null
@@ -1,54 +0,0 @@
-#compdef metaflac
-
-local _metaflac_opts _metaflac_shorts _metaflac_opers
-
-_metaflac_opts=(
- '--preserve-modtime'
- '--with-filename[prefix output with filename]'
- '--no-filename'
- '--no-utf8-convert'
- '--dont-use-padding[always rewrite the file]'
-)
-_metaflac_shorts=(
- '--show-md5sum'
- '--show-min-blocksize'
- '--show-max-blocksize'
- '--show-min-framesize'
- '--show-max-framesize'
- '--show-sample-rate'
- '--show-channels'
- '--show-bps'
- '--show-total-samples'
- '--show-vendor-tag'
- '--show-tag=:FLAC tags'
- '--remove-tag=:FLAC tags: '
- '--remove-first-tag=:FLAC tags: '
- '--remove-all-tags'
- '--set-tag=:FLAC tag and value: '
- '--import-tags-from=:flat file:_files'
- '--export-tags-to=:new file: '
- '--import-cuesheet-from=:file:_files'
- '--export-cuesheet-to=:new file: '
- '--add-replay-gain'
- '--add-seekpoint=:: '
- '--add-padding=length'
-
-)
-_metaflac_opers=(
- '--block-number=:: '
- '--block-type=:: '
- '--except-block-type=:: '
- '--application-data-format=:: '
- '--list'
- '--remove'
- '--remove-all'
- '--merge-padding'
- '--sort-padding'
-)
-
-_arguments "$_metaflac_opts[@]" \
- "*:FLAC file:_files -g \*.flac\(-.\)" \
- - "shortcuts" \
- "$_metaflac_shorts[@]" \
- - "(operations)" \
- "$_metaflac_opers[@]"