From 8c7c094558fa998ad41d68e5410e896da52a580f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Br=C3=B8nner?= Date: Mon, 8 Aug 2016 19:26:53 +0200 Subject: [PATCH] Autogenerated the easy parts --- src/_lsblk | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/_lsblk diff --git a/src/_lsblk b/src/_lsblk new file mode 100644 index 0000000..1e2b5b3 --- /dev/null +++ b/src/_lsblk @@ -0,0 +1,34 @@ +#compdef lsblk + +# zsh completions for 'lsblk' +# automatically generated with http://github.com/RobSis/zsh-completion-generator +local arguments + +arguments=( + {-a,--all}'[print all devices]' + {-b,--bytes}'[print SIZE in bytes rather than in human readable format]' + {-d,--nodeps}'[dont print slaves or holders]' + {-D,--discard}'[print discard capabilities]' + {-e,--exclude}'[exclude devices by major number (default: RAM disks)]' + {-f,--fs}'[output info about filesystems]' + {-i,--ascii}'[use ascii characters only]' + {-I,--include}'[show only devices with specified major numbers]' + {-J,--json}'[use JSON output format]' + {-l,--list}'[use list format output]' + {-m,--perms}'[output info about permissions]' + {-n,--noheadings}'[dont print headings]' + {-o,--output}'[output columns]' + {-O,--output-all}'[output all columns]' + {-p,--paths}'[print complete device path]' + {-P,--pairs}'[use key="value" output format]' + {-r,--raw}'[use raw output format]' + {-s,--inverse}'[inverse dependencies]' + {-S,--scsi}'[output info about SCSI devices]' + {-t,--topology}'[output info about topology]' + {-x,--sort}'[sort output by ]' + {-h,--help}'[display this help and exit]' + {-V,--version}'[output version information and exit]' + '*:filename:_files' +) + +_arguments -s $arguments