Compare commits

...

16 Commits

Author SHA1 Message Date
Mikael Magnusson d4d30592c2 _tmuxp: typo expl 2026-05-03 04:19:53 +02:00
Mikael Magnusson 7a2db2fe49 _yarn: return values and _wanted 2026-05-03 04:19:53 +02:00
Mikael Magnusson 21621f3458 _tsc: remove stray backslash 2026-05-03 04:19:53 +02:00
Mikael Magnusson 8dd06dfaaf _sbt: add missing ret=0 2026-05-03 04:19:53 +02:00
Mikael Magnusson 96420d8c73 _pm2: consistent capitalization 2026-05-03 04:19:53 +02:00
Mikael Magnusson 32cff31cca _nano: set ret=0 for all the state stuff 2026-05-03 04:19:53 +02:00
Mikael Magnusson 41d22dc6e4 _mcookie: more useful heading for -m 2026-05-03 04:19:53 +02:00
Mikael Magnusson 4be40305ba _kitchen: don't use bare compadd 2026-05-03 04:19:53 +02:00
Mikael Magnusson 9a94ecb9c9 _hledger: fix bogus -A option placement
It got offered as a completion instead
2026-05-03 04:19:53 +02:00
Mikael Magnusson f916eeb8a3 _fallocate: mutually exclusive options
-n is disallowed with -c, and implied with -d/-p, so there's no point passing it there
2026-05-03 04:19:53 +02:00
Mikael Magnusson ef53598cbd _bundle: remove nonsensical -A options 2026-05-03 04:19:53 +02:00
Mikael Magnusson c4d76587ae Remove the 'this' from 'show this help and exit' in completers 2026-05-03 04:19:41 +02:00
Mikael Magnusson 5879b07714 _chmem: update with new options 2026-05-03 04:18:54 +02:00
Mikael Magnusson d5bf7ae200 _chcpu: improve help text for cpu list 2026-05-03 04:18:54 +02:00
Mikael Magnusson cf98cc27ba _cask: update a bit
It's unclear to me what arguments link actually takes from the
documentation so no attempt there.
2026-05-03 04:18:54 +02:00
Mikael Magnusson 8d536db182 _bower: fix completing options
the (--foo)--foo is harmless but redundant and makes things hard to
read, we only need that syntax when we want to prevent an option being
completed together with *another* option, such as the instance with
(-t --token){-t,--token} where _arguments doesn't know those do the same
thing.
2026-05-03 04:18:21 +02:00
43 changed files with 156 additions and 133 deletions

View File

@ -91,7 +91,7 @@ case $service in
;;
(mp4dash)
options+=(
'(- *)'{-h,--help}'[Show this help message and exit]'
'(- *)'{-h,--help}'[Show help message and exit]'
'(-v --verbose)'{-v,--verbose}'[Be verbose]'
'(-d --debug)'{-d,--debug}'[Print out debugging information]'
'(-o --output-dir)'{-o,--output-dir=}'[Output directory]:dir:_files -/'
@ -148,7 +148,7 @@ case $service in
;;
(mp4dashclone)
options+=(
'(- *)'{-h,--help}'[Show this help message and exit]'
'(- *)'{-h,--help}'[Show help message and exit]'
'--quiet[Be quiet]'
'--encrypt=[Encrypt the media with KID and KEY specified in HEX(32 characters each)]:key'
'--exec-dir=[Directory where the Bento4 executables are located]:dir:_files -/'
@ -226,7 +226,7 @@ case $service in
;;
(mp4hls)
options+=(
'(- *)'{-h,--help}'[Show this help message and exit]'
'(- *)'{-h,--help}'[Show help message and exit]'
'(-v --verbose)'{-v,--verbose}'[Be verbose]'
'(-d --debug)'{-d,--debug}'[Print out debugging information]'
'(-o --output-dir)'{-o,--output-dir=}'[Output directory]:dir:_files -/'

View File

@ -43,7 +43,7 @@ _bitcoin-cli() {
local ret=1
_arguments -C \
-?'[This help message]' \
-?'[Show help message]' \
-addrinfo'[Get the number of addresses known to the node, per network and total]' \
-chain='[Use the chain <chain> (default: main). Allowed values: main, test, signet, regtest]:chain:(main test signet regtest)' \
-color='[Color setting for CLI output (default: auto)]:when:(always auto never)' \

View File

@ -43,6 +43,15 @@ local curcontext="$curcontext" state line _opts ret=1
_arguments -C \
'(- 1 *)'{-v,--version}'[display version information]' \
'--force[make various commands more forceful]' \
'--json[output consumable JSON]' \
'--log-level[what level of logs to report]:log level:(error conflict warn action info debug)' \
"--offline[don't hit the network]" \
'--quiet[only output important information]' \
"--silent[don't output anything, besides errors]" \
'--verbose[make output more verbose]' \
'--allow-root[allow running commands as root]' \
'--no-color[disable colors]' \
'1: :->cmds' \
'*:: :->args' && ret=0
@ -66,17 +75,6 @@ case $state in
"uninstall[remove a local package]" \
"unregister[remove a package from the registry]" \
"version[bump a package version]" && ret=0
_arguments \
'(--force)--force[make various commands more forceful]' \
'(--json)--json[output consumable JSON]' \
'(--log-level)--log-level[what level of logs to report]' \
"(--offline)--offline[don't hit the network]" \
'(--quiet)--quiet[only output important information]' \
"(--silent)--silent[don't output anything, besides errors]" \
'(--verbose)--verbose[make output more verbose]' \
'(--allow-root)--allow-root[allow running commands as root]' \
'(--version)--version[output Bower version]' \
'(--no-color)--no-color[disable colors]' && ret=0
;;
args)
case $line[1] in
@ -101,42 +99,42 @@ case $state in
;;
(home|info|init|link|lookup|prune|register|search|unregister)
_arguments \
'(--help)--help[show help message]' && ret=0
'--help[show help message]' && ret=0
;;
install)
_arguments \
'(--force-latest)--force-latest[force latest version on conflict]' \
'(--help)--help[show help message]' \
"(--production)--production[don't install project devDependencies]" \
"(--save)--save[save installed packages into the project's bower.json dependencies]" \
"(--save-dev)--save-dev[save installed packages into the project's bower.json devDependencies]" && ret=0
'--force-latest[force latest version on conflict]' \
'--help[show help message]' \
"--production[don't install project devDependencies]" \
"--save[save installed packages into the project's bower.json dependencies]" \
"--save-dev[save installed packages into the project's bower.json devDependencies]" && ret=0
;;
list)
_arguments \
'(--help)--help[show help message]' \
'(--paths)--paths[generate a simple JSON source mapping]' \
'(--relative)--relative[make paths relative to the directory config property, which defaults to bower_components]' && ret=0
'--help[show help message]' \
'--paths[generate a simple JSON source mapping]' \
'--relative[make paths relative to the directory config property, which defaults to bower_components]' && ret=0
;;
login)
_arguments \
'(--help)--help[show help message]' \
'--help[show help message]' \
'(-t --token)'{-t,--token}'[Pass GitHub auth token (will not prompt for username/password)]' && ret=0
;;
uninstall)
_arguments \
'(--help)--help[show help message]' \
"(--save)--save[save installed packages into the project's bower.json dependencies]" \
"(--save-dev)--save-dev[save installed packages into the project's bower.json devDependencies]" && ret=0
'--help[show help message]' \
"--save[save installed packages into the project's bower.json dependencies]" \
"--save-dev[save installed packages into the project's bower.json devDependencies]" && ret=0
;;
update)
_arguments \
'(--force-latest)--force-latest[force latest version on conflict]' \
'(--help)--help[show help message]' \
"(--production)--production[don't install project devDependencies]" && ret=0
'--force-latest[force latest version on conflict]' \
'--help[show help message]' \
"--production[don't install project devDependencies]" && ret=0
;;
version)
_arguments \
'(--message)--message[custom git commit and tag message]' && ret=0
'--message[custom git commit and tag message]' && ret=0
;;
exec)
_normal && ret=0

View File

@ -46,7 +46,7 @@ _bundle() {
local ret=1
_arguments -C -A "-v" -A "--version" \
_arguments -C \
'(- 1 *)'{-v,--version}'[display version information]' \
'(-r --retry)'{-r,--retry}'[specify the number of times you with to attempt network commands]:number:' \
'(-V --verbose)'{-V,--verbose}'[print out additional logging information]' \

View File

@ -46,17 +46,16 @@ function _cask() {
local curcontext="$curcontext"
_arguments -C \
'(--proxy --http-proxy --https-proxy)--proxy[Set emacs proxy for HTTPS and HTTPS]:host:_hosts' \
'(--proxy --http-proxy)--http-proxy[Set emacs proxy for HTTP]:host:_hosts' \
'(--proxy --https-proxy)--https-proxy[Set emacs proxy for HTTPS]:host:_hosts' \
'(--proxy --http-proxy --https-proxy)--proxy[Set emacs proxy for HTTPS and HTTPS]:host:_hosts' \
'--no-proxy[Set Emacs no-proxy to HOST]:host:_hosts' \
'(--proxy --http-proxy )--http-proxy[Set emacs proxy for HTTP]:host:_hosts' \
'(--proxy --https-proxy)--https-proxy[Set emacs proxy for HTTPS]:host:_hosts' \
'( --http-proxy --https-proxy)--proxy[Set emacs proxy for HTTPS and HTTPS]:host:_hosts' \
'--no-proxy[Set Emacs no-proxy to HOST (emacs pattern of hosts to not use proxy for)]:pattern:_hosts' \
'(- *)--version[Print Cask version and exit]' \
'(- *)'{-h,--help}'[Display usage or information for command]::command:->subcommand' \
'--debug[Turn on debug output]' \
'--path[Run command in this PATH instead of default-directory]:dir:_files -/' \
'(--verbose --silent)--verbose[Be verbose and show debug output]' \
'(--verbose --silent)--verbose[Be slient and do not show anything]' \
'(--verbose --silent)--silent[Be silent and do not show anything]' \
':subcommand:->subcommand' \
'*:: :->subcmds' \
&& ret=0
@ -66,6 +65,8 @@ function _cask() {
local -a subcommands=(
"build:build all Elisp files in the files directive"
"clean-elc:remove all byte compiled Elisp files in the files directive"
"emacs:run emacs"
"eval:evaluate FORM as a lisp form"
"exec:execute command with correct 'exec-path' and 'load-path'"
"exec-path:print 'exec-path' for all packages and dependencies"
"files:print list of files specified in the files directive"
@ -99,6 +100,19 @@ function _cask() {
(exec)
_generic
;;
(emacs)
_as_if emacs && ret=0
;;
(help)
_as_if cask --help && ret=0
;;
(link)
_message "completion unimplemented"
ret=0
;;
(package)
_wanted package-dir expl 'package directory' _files -/ && ret=0
;;
esac
;;
esac

View File

@ -19,7 +19,7 @@ _chatblade() {
typeset -A opt_args
args+=(
'(- *)'{-h,--help}'[show this help message and exit]'
'(- *)'{-h,--help}'[show help message and exit]'
'(- *)--version[display the chatblade version]'
'--openai-api-key[the OpenAI API key can also be set as env variable OPENAI_API_KEY]:key'
'--openai-base-url[a custom URL to use the openAI against a local or custom model]:key'

View File

@ -35,12 +35,12 @@
# ------------------------------------------------------------------------------
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-c --configure)'{-c,--configure}'[configure the specified CPUs]:cpu_list' \
'(-d --disable)'{-d,--disable}'[disable the specified CPUs]:cpu_list' \
'(-e --enable)'{-e,--enable}'[enable the specified CPUs]:cpu_list' \
'(-g --deconfigure)'{-g,--deconfigure}'[deconfigure the specified CPUs]:cpu_list' \
'(-c --configure)'{-c,--configure}'[configure the specified CPUs]:cpu list (0,5,7,9-11)' \
'(-d --disable)'{-d,--disable}'[disable the specified CPUs]:cpu list (0,5,7,9-11)' \
'(-e --enable)'{-e,--enable}'[enable the specified CPUs]:cpu list (0,5,7,9-11)' \
'(-g --deconfigure)'{-g,--deconfigure}'[deconfigure the specified CPUs]:cpu_list (0,5,7,9-11)' \
'(-p --dispatch)'{-p,--dispatch}'[set the CPU dispatching mode]:mode:(horizontal vertical)' \
'(-r --rescan)'{-r,--rescan}'[trigger a rescan of CPUs]'

View File

@ -35,14 +35,29 @@
# *Aditi Sharma (https://github.com/Aditi76117)
# ------------------------------------------------------------------------------
local arg
if (( ${words[(I)(-b|--blocks)]} )); then
arg=blockrange
else
arg='size or range'
fi
if (( ${words[(I)(-e|-d|-c|-m|--disable|--enable|--deconfigure|--configure)]} )); then
arg="1:${arg}"
else
unset arg
fi
_arguments -s \
'(-b --blocks)'{-b,--blocks}'[Use a BLOCKRANGE parameter instead of RANGE or SIZE]' \
'(-d --disable)'{-d,--disable}'[Set the specified RANGE, SIZE, or BLOCKRANGE of memory offline]' \
'(-e --enable)'{-e,--enable}'[Set the specified RANGE, SIZE, or BLOCKRANGE of memory online]' \
'(-z --zone)'{-z,--zone}'[Select the memory ZONE where to set the specified RANGE, SIZE, or BLOCKRANGE of memory online or offline]' \
'(-e --enable -d --disable -c --configure -g --deconfigure -m --memmap-on-memory)'{-d,--disable}'[Set the specified RANGE, SIZE, or BLOCKRANGE of memory offline]' \
'(-e --enable -d --disable -c --configure -g --deconfigure -m --memmap-on-memory)'{-e,--enable}'[Set the specified RANGE, SIZE, or BLOCKRANGE of memory online]' \
'(-e --enable -d --disable -c --configure -g --deconfigure -m --memmap-on-memory)'{-g,--deconfigure}'[Deconfigure the specified RANGE, SIZE, or BLOCKRANGE of memory]' \
'(-e --enable -d --disable -c --configure -g --deconfigure )'{-c,--configure}'[Configure the specified RANGE, SIZE, or BLOCKRANGE of memory]' \
'(-e --enable -d --disable -g --deconfigure -m --memmap-on-memory)'{-m,--memmap-on-memory}'[Select memmap-on-memory for the specified memory]:memmap-on-memory' \
'(-z --zone)'{-z,--zone}'[Select the memory ZONE where to set the specified RANGE, SIZE, or BLOCKRANGE of memory online or offline]:zone' \
'(-v --verbose)'{-v,--verbose}'[Verbose mode]' \
'(- *)'{-h,--help}'[Display help text and exit]' \
'(- *)'{-V,--version}'[Print version and exit]'
'(- *)'{-V,--version}'[Print version and exit]' \
${arg}
# Local Variables:
# mode: Shell-Script

View File

@ -35,7 +35,7 @@
# ------------------------------------------------------------------------------
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(-c --crypt-method)'{-c,--crypt-method}'[use the specified method to encrypt the passwords]:method:(DES MD5 SHA256 SHA512 YESCRYPT NONE)' \
'(-e --encrypted)'{-e,--encrypted}'[supplied passwords are in encrypted form]' \
'(-m --md5)'{-m,--md5}'[use MD5 encryption instead of DES]' \

View File

@ -47,7 +47,7 @@ _arguments -s -S \
'(-b --bare)'{-b,--bare}'[compile without a top-level function wrapper]' \
'(-c --compile)'{-c,--compile}'[compile to JavaScript and save as .js files]' \
'(-e --eval)'{-e,--eval}'[pass a string from the command line as input]:Inline Script' \
'(- *)'{-h,--help}'[display this help message]' \
'(- *)'{-h,--help}'[display help message]' \
'(-i --interactive)'{-i,--interactive}'[run an interactive CoffeeScript REPL]' \
'(-j --join)'{-j,--join}'[concatenate the source CoffeeScript before compiling]: :_files -g "*.coffee"' \
'(-l --literate)'{-l,--literate}'[treat stdio as literate style coffeescript]' \

View File

@ -78,7 +78,7 @@ _cppcheck() {
"(-f --force)"{-f,--force}"[Force checking of all configurations in files]" \
"(--fsigned-char --funsigned-char)--fsigned-char[Treat char type as signed]" \
"(--fsigned-char --funsigned-char)--funsigned-char[Treat char type as unsigned]" \
"(- 1 *)"{-h,--help}"[Print this help]" \
"(- 1 *)"{-h,--help}"[Print help]" \
"-I[A file that contains a list of config-excludes]:directory:_files -/" \
"--include-file=[Specify directory paths to search for included header files in a text file]:file:_files" \
"--include=[Force inclusion of a file before the checked file]:file:_files" \

View File

@ -49,7 +49,7 @@ _direnv_commands() {
'exec:Executes a command after loading the first .envrc or .env found in DIR'
'export:Loads an .envrc or .env and prints the diff in terms of exports'
"fetchurl:Fetches a given URL into direnv's CAS"
'help:shows this help'
'help:shows help'
'hook:Used to setup the shell hook'
'prune:removes old allowed files'
'reload:triggers an env reload'

View File

@ -35,7 +35,7 @@
# ------------------------------------------------------------------------------
_arguments \
'(- *)'{-h,--help}'[Show this help message and exit]' \
'(- *)'{-h,--help}'[Show help message and exit]' \
'(- *)'{-v,--version}'[Show version and exit]' \
'(-d --devel-release)'{-d,--devel-release}'[Upgrade to the development release]' \
'--data-dir=[Directory that contains the data files]:dir:_files -/' \

View File

@ -40,7 +40,7 @@
# ------------------------------------------------------------------------------
local -a args=(
'(-h --help)'{-h+,--help}'[show this help message and exit]'
'(-h --help)'{-h+,--help}'[show help message and exit]'
'(-)'--version'[display version information and exit]'
'(-)1:directory: _path_files -/'
'(-)2:command: _command_names -e'

View File

@ -54,7 +54,7 @@ _fail2ban_client() {
'-b[start server in background]' \
'-f[start server in foreground]' \
'--str2sec[convert time abbreviation format to seconds]:_message str2sec' \
'(-h --help)'{-h,--help}'[display this help message]' \
'(-h --help)'{-h,--help}'[display help message]' \
'(-V --version)'{-V,--version}'[print the version]' \
'1:fail2ban command:_fail2ban_client_commands' \
'*:fail2ban command argument:_fail2ban_client_command_arguments'

View File

@ -38,16 +38,16 @@
# ------------------------------------------------------------------------------
_arguments \
'(-c --collapse-range)'{-c,--collapse-range}'[Removes a byte range from a file without leaving a hole]' \
'(-d --dig-holes)'{-d,--dig-holes}'[Detect and dig holes]' \
'(-c --collapse-range -d --dig-holes -p --punch-hole -z --zero-range -n --keep-size)'{-c,--collapse-range}'[Removes a byte range from a file without leaving a hole]' \
'(-c --collapse-range -d --dig-holes -p --punch-hole -z --zero-range -n --keep-size)'{-d,--dig-holes}'[Detect and dig holes]' \
'(-c --collapse-range -d --dig-holes -p --punch-hole -z --zero-range -n --keep-size)'{-p,--punch-hole}'[Deallocates space in the byte range starting at offset and continuing for length bytes]' \
'(-c --collapse-range -d --dig-holes -p --punch-hole -z --zero-range )'{-z,--zero-range}'[Zeroes space in the byte range starting at offset and continuing for length bytes]' \
'(-c --collapse-range -d --dig-holes -p --punch-hole -n --keep-size)'{-n,--keep-size}'[Do not modify the apparent length of the file]' \
'(-i --insert-range)'{-i,--insert-range}'[Insert a hole of length bytes from offset]' \
'(-l --length)'{-l+,--length}'[Specifies the length of the range, in bytes]:bytes' \
'(-n --keep-size)'{-n,--keep-size}'[Do not modify the apparent length of the file]' \
'(-o --offset)'{-o+,--offset}'[Specifies the beginning offset of the range, in bytes]:offset' \
'(-p --punch-hole)'{-p,--punch-hole}'[Deallocates space in the byte range starting at offset and continuing for length bytes]' \
'(-v --verbose)'{-v,--verbose}'[Enable verbose mode]' \
'(-x --posix)'{-x,--posix}'[Enable POSIX operation mode]' \
'(-z --zero-range)'{-z,--zero-range}'[Zeroes space in the byte range starting at offset and continuing for length bytes]' \
'(- *)'{-h,--help}'[Display help text and exit]' \
'(- *)'{-V,--version}'[Print version and exit]' \
'*:filename:_files'

View File

@ -922,7 +922,7 @@ _ghc_pkg() {
'--expand-env-vars[expand environment variables in input package descriptions]'
'(--expand-pkgroot --no-expand-pkgroot)--expand-pkgroot[expand pkgroot-relative paths in output package descriptions]'
'(--expand-pkgroot --no-expand-pkgroot)--no-expand-pkgroot[preserve pkgroot-relative paths in output package descriptions]'
'(- *)'{-?,--help}'[display this help and exit]'
'(- *)'{-?,--help}'[display help and exit]'
'(- *)'{-V,--version}'[output version information and exit]'
'--simple-output[print output in easy-to-parse format for some commands]'
'--show-unit-ids[print unit-ids instead of package identifiers]'

View File

@ -41,7 +41,7 @@
_glances() {
_arguments \
'(- *)'{-h,--help}'[show this help message and exit]' \
'(- *)'{-h,--help}'[show help message and exit]' \
'--print-completion[print shell completion script]:shell:(bash zsh tcsh)' \
'(- *)'{-V,--version}"[show program's version number and exit]" \
'(-d --debug)'{-d,--debug}'[enable debug mode]' \

View File

@ -14,7 +14,7 @@
# ------------------------------------------------------------------------------
_arguments -s \
'(- *)'{-h,--help}'[display this help and exit]' \
'(- *)'{-h,--help}'[display help and exit]' \
'(- *)'{-v,--version}'[display version information and exit]' \
{-t,--traditional}'[use traditional greeting]' \
{-g,--greeting=}'[use TEXT as the greeting message]:TEXT'

View File

@ -64,7 +64,7 @@ args=(
'--forecast=[apply periodic transaction rules to generate future transactions]'
)
_arguments -C "$args[@]" -A "-*" \
_arguments -C -A "-*" "$args[@]" \
'(- *)--version[print version information]' \
'--debug[show debug output]' \
'1: :->cmds' \

View File

@ -54,7 +54,7 @@ _kitchen() {
args)
case $line[1] in
converge|create|destroy|diagnose|list|setup|test|verify)
compadd 'all'
_wanted all-instances expl 'all instances' compadd 'all'
_kitchen_instances
;;
login)

View File

@ -90,7 +90,7 @@ case $state in
'gs-load-lily-fonts[load only LilyPond fonts via Ghostscript]:gs-load-lily-fonts:(\#t \#f)' \
'gs-never-embed-fonts[make Ghostscript embed only TrueType fonts and no other font format]:gs-never-embed-fonts:(\#t \#f)' \
'gui[run LilyPond from a GUI and redirect stderr to a log file]:gui:(\#t \#f)' \
'help[show this help]:help:(\#t \#f)' \
'help[show help]:help:(\#t \#f)' \
'include-book-title-preview[include book titles in preview images]:include-book-title-preview:(\#t \#f)' \
'include-eps-fonts[include fonts in separate-system EPS files]:include-eps-fonts:(\#t \#f)' \
'include-settings[included file before the score is processed]:include-settings:_files -g "*.(#i)ly(-.)"' \

View File

@ -80,7 +80,7 @@ _lscpu_cache() {
}
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-a --all)'{-a,--all}'[print both online and offline CPUs(default for -e)]' \
'(-b --online)'{-b,--online}'[print online CPUs only]' \

View File

@ -91,7 +91,7 @@ _lsipc_output_columns() {
}
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-m --shmems)'{-m,--shmems}'[shared memory segments]' \
'(-M --posix-shmems)'{-M,--posix-shmems}'[POSIX shared memory segments]' \

View File

@ -56,7 +56,7 @@ _lslocks_output_columns() {
}
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-b --bytes)'{-b,--bytes}'[print SIZE in bytes rather]' \
'(-J --json)'{-J,--json}'[use the JSON output format]' \

View File

@ -70,7 +70,7 @@ _lslogins_output_columns() {
}
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-a --acc-expiration)'{-a,--acc-expiration}'[display info about passwords expiration]' \
'(-c --colon-separate)'{-c,--colon-separate}'[display data in a format similar to /etc/passwd]' \

View File

@ -50,7 +50,7 @@ _lsmem_output_columns() {
}
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-J --json)'{-J,--json}'[use the JSON output format]' \
'(-P --pairs)'{-P,--pairs}'[use key=value output format]' \

View File

@ -37,7 +37,7 @@
_arguments \
{-f,--file}'[Use file as as cookie seed]:file:_files' \
{-m,--max-size}'[Set maximum length of output]:number' \
{-m,--max-size}'[Set maximum length of output]:bytes' \
{-v,--verbose}'[Print entropy source and random seed info]' \
'(- *)'{-h,--help}'[Display help message and exit]' \
'(- *)'{-V,--version}'[Display version information and exit]'

View File

@ -39,7 +39,7 @@
# ------------------------------------------------------------------------------
_arguments \
'(- *)--help[display this help message]' \
'(- *)--help[display help message]' \
'-d-[Verbose debug]:level:(0 1 2)' \
'-v-[SSH debug levels]:level:(0 1 2 3)' \
'-m-[Run concurrently on the specified hosts at a time. "0" is used for infinite]:count' \

View File

@ -77,8 +77,8 @@ if [[ -n $state ]]; then
+) _message -e lines "start at a given line" ;;
+[crCR]#[/?]) _message -e 'search string' ;;
+<->,) _message -e 'column number' ;;
*) _files && ret=0 ;;
esac
*) _files ;;
esac && ret=0
fi
return ret

View File

@ -53,7 +53,7 @@ _openvpn3_config-acl() {
_arguments \
{-s,--show}"[Show the current access control lists]" \
{-o,--path}"[OBJ-PATH Path to the configuration in the configuration manager]: :($configs_paths)" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --path, where configuration profile name is used instead]: :($configs_names)" \
{-S,--seal}"[Make the configuration profile permanently read-only]" \
{-R,--revoke}"[<UID | username> Revoke this user access from this configuration profile]" \
@ -67,7 +67,7 @@ _openvpn3_config-import() {
_arguments \
{-p,--persistent}"[Make the configuration profile persistent through service restarts]" \
{-n,--name}"[NAME Provide a different name for the configuration (default: CFG-FILE)]" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CFG-FILE Configuration file to import]: :_files"
}
@ -76,7 +76,7 @@ _openvpn3_config-manage() {
{-s,--show}"[Show current configuration options]" \
{-r,--rename}"[NEW-CONFIG-NAME Renames the configuration]" \
{-o,--path}"[CONFIG-PATH Path to the configuration in the configuration manager]: :($configs_paths)" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --path, where configuration profile name is used instead]: :($configs_names)" \
"--unset-override[<name> Removes the <name> override]" \
"--tls-version-min[<tls_1_0|tls_1_1|tls_1_2|tls_1_3> Sets the minimal TLS version for the control channel]: :(tls_1_0 tls_1_1 tls_1_2 tls_1_3)" \
@ -103,7 +103,7 @@ _openvpn3_config-manage() {
_openvpn3_config-remove() {
_arguments \
{-o,--path}"[OBJ-PATH Path to the configuration in the configuration manager]: :($configs_paths)" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --path, where configuration profile name is used instead]: :($configs_names)" \
"--force[Force the deletion process without asking for confirmation]" \
"--config-path[OBJ-PATH Alias for --path]: :($configs_paths)"
@ -113,24 +113,24 @@ _openvpn3_config-show() {
_arguments \
{-o,--path}"[OBJ-PATH Path to the configuration in the configuration manager]: :($configs_paths)" \
{-j,--json}"[Dump the configuration in JSON format]" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --path, where configuration profile name is used instead]: :($configs_names)" \
"--config-path[OBJ-PATH Alias for --path]: :($configs_paths)"
}
_openvpn3_configs-list() {
_arguments \
{-h,--help}"[This help screen]"
{-h,--help}"[Show help screen]"
}
_openvpn3_help() {
_arguments \
{-h,--help}"[This help screen]"
{-h,--help}"[Show help screen]"
}
_openvpn3_log() {
_arguments \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --session-path, where configuration profile name is used instead]: :($sessions_configs_names $configs_names)" \
{-I,--interface}"[INTERFACE Alternative to --session-path, where tun interface name is used instead]: :($sessions_interfaces)" \
"--session-path[SESSION-PATH Receive log events for a specific session]: :($sessions_paths)" \
@ -142,7 +142,7 @@ _openvpn3_session-acl() {
_arguments \
{-s,--show}"[Show the current access control lists]" \
{-o,--path}"[SESSION-PATH Path to the session in the session manager]: :($sessions_paths)" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --path, where configuration profile name is used instead]: :($sessions_configs_names)" \
{-R,--revoke}"[<UID | username> Revoke this user access from this session]" \
{-I,--interface}"[INTERFACE Alternative to --path, where tun interface name is used instead]: :($sessions_interfaces)" \
@ -155,7 +155,7 @@ _openvpn3_session-acl() {
_openvpn3_session-manage() {
_arguments \
{-o,--path}"[SESSION-PATH Path to the session in the session manager]: :($sessions_paths)" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --path, where configuration profile name is used instead]: :($sessions_configs_names)" \
{-R,--resume}"[Resumes a paused VPN session]" \
{-P,--pause}"[Pauses the VPN session]" \
@ -169,7 +169,7 @@ _openvpn3_session-manage() {
_openvpn3_session-start() {
_arguments \
{-p,--config-path}"[CONFIG-PATH Configuration path to an already imported configuration]: :($configs_paths)" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-FILE Configuration file to start directly]: :_files" \
"--persist-tun[Enforces persistent tun/seamless tunnel (requires --config)]"
}
@ -178,7 +178,7 @@ _openvpn3_session-stats() {
_arguments \
{-o,--path}"[SESSION-PATH Path to the configuration in the configuration manager]: :($sessions_paths)" \
{-j,--json}"[Dump the configuration in JSON format]" \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
{-c,--config}"[CONFIG-NAME Alternative to --path, where configuration profile name is used instead]: :($sessions_configs_names)" \
{-I,--interface}"[INTERFACE Alternative to --path, where tun interface name is used instead]: :($sessions_interfaces)" \
"--session-path[SESSION-PATH Alias for --path]: :($sessions_paths)"
@ -186,12 +186,12 @@ _openvpn3_session-stats() {
_openvpn3_sessions-list() {
_arguments \
{-h,--help}"[This help screen]"
{-h,--help}"[Show help screen]"
}
_openvpn3_shell-completion() {
_arguments \
{-h,--help}"[This help screen]" \
{-h,--help}"[Show help screen]" \
"--list-commands[List all available commands]" \
"--list-options[COMMAND List all available options for a specific command]: :($(openvpn3 shell-completion --list-commands))" \
"--arg-helper[OPTION Used together with --list-options, lists value hint to an option]"
@ -199,7 +199,7 @@ _openvpn3_shell-completion() {
_openvpn3_version() {
_arguments \
{-h,--help}"[This help screen]"
{-h,--help}"[Show help screen]"
}
_openvpn3_command() {
@ -210,7 +210,7 @@ _openvpn3_command() {
"config-remove: Remove an available configuration profile"
"config-show: Show/dump a configuration profile"
"configs-list: List all available configuration profiles"
"help: This help screen"
"help: Show help screen"
"log: Receive log events as they occur"
"session-acl: Manage access control lists for sessions"
"session-manage: Manage VPN sessions"
@ -239,7 +239,7 @@ _openvpn3_command() {
}
_arguments \
{-h,--help}"[that This help screen]" \
{-h,--help}"[Show help screen]" \
"*::openvpn3 commands:_openvpn3_command" \
# Local Variables:

View File

@ -73,7 +73,7 @@ _pm2() {
'--no-color[skip colors]' \
'--no-vizion[start an app without vizion feature]' \
'--np-autorestart[start an app without automatic restart]' \
'--no-treekill[Only kill the main process, not detached children]' \
'--no-treekill[only kill the main process, not detached children]' \
'--no-pmx[start an app without pmx]' \
'--no-automation[start an app without automation]' \
'(--disable-trace --trace)--trace[enable transaction tracing with km]' \
@ -93,9 +93,9 @@ _pm2() {
(start)
_arguments \
'--watch[watch folder for changes]' \
'--fresh[Rebuild Dockerfile]' \
'--daemon[Run container in Daemon mode(debug purposes)]' \
'--container[Start application in container mode]' \
'--fresh[rebuild Dockerfile]' \
'--daemon[run container in daemon mode(debug purposes)]' \
'--container[start application in container mode]' \
'--dist[--with-container; change local Dockerfile to containerize all files in current directory]' \
'--image-name[with --dist; set the exported image name]:name' \
'--node-version[with --container, set a specific major Node.js version]:version' \
@ -119,7 +119,7 @@ _pm2() {
(stop|restart)
_arguments \
'(- *)'{-h,--help}'[output usage information]' \
'--watch[Stop watching folder for changes]' \
'--watch[stop watching folder for changes]' \
'*: :_pm2_id_namespace_all' \
&& ret=0
;;
@ -231,8 +231,8 @@ _pm2_subcommands() {
"stop:stop a process"
"restart:restart a process"
"scale:scale up/down a process in cluster mode depending on total_number param"
"profile\:mem:Sample PM2 heap memory"
"profile\:cpu:Profile PM2 cpu"
"profile\:mem:sample PM2 heap memory"
"profile\:cpu:profile PM2 cpu"
"reload:reload processes (note that its for app using HTTP/HTTPS)"
"id:get process id by name"
"inspect:inspect a process"
@ -244,12 +244,12 @@ _pm2_subcommands() {
"install:install or update a module and run it forever"
"module\:install:install or update a module and run it forever"
"module\:update:update a module and run it forever"
"module\:generate:Generate a sample module in current folder"
"module\:generate:generate a sample module in current folder"
"uninstall:stop and uninstall a module"
"module\:uninstall:stop and uninstall a module"
"package:Check & Package TAR type module"
"publish:Publish the module you are currently on"
"module\:publish:Publish the module you are currently on"
"package:check & package TAR type module"
"publish:publish the module you are currently on"
"module\:publish:publish the module you are currently on"
"set:sets the specified config <key> <value>"
"multiset:multiset eg \"key1 val1 key2 val2\""
"get:get value for <key>"
@ -263,11 +263,11 @@ _pm2_subcommands() {
"unmonitor:unmonitor target process"
"open:open the pm2 monitoring dashboard"
"plus:enable pm2 plus"
"login:Login to pm2 plus"
"logout:Logout from pm2 plus"
"login:login to pm2 plus"
"logout:logout from pm2 plus"
"dump:dump all processes for resurrecting them later"
"save:dump all processes for resurrecting them later"
"cleardump:Create empty dump file"
"cleardump:create empty dump file"
"send:send stdin to <pm_id>"
"attach:attach stdin/stdout to application identified by <pm_id>"
"resurrect:resurrect previously dumped processes"
@ -297,7 +297,7 @@ _pm2_subcommands() {
"dash:launch dashboard with monitoring and logs"
"flush:flush logs"
"reloadLogs:reload all logs"
"logs:stream logs file. Default stream all logs"
"logs:stream logs file (default is to stream all logs)"
"kill:kill daemon"
"pull:updates repository for a given app"
"forward:updates repository to the next commit for a given app"

View File

@ -29,7 +29,7 @@ _pre_commit() {
case "$state" in
(args)
local -a options=(
'(- : *)'{-h,--help}'[show this help message and exit]'
'(- : *)'{-h,--help}'[show help message and exit]'
"--color[Whether to use color in output(default: auto)]:color:(auto always never)"
)
local -a hook_types=(

View File

@ -45,7 +45,7 @@ _rails() {
local -a runtime_options rails_options
runtime_options=(
'(- *)'{-h,--help}'[Show this help message and quit]'
'(- *)'{-h,--help}'[Show help message and quit]'
'(- *)'{-v,--version}'[Show Rails version and quit]'
)
@ -74,14 +74,14 @@ _rails() {
;;
(console|c)
_arguments \
'(- *)'{-h,--help}'[Show this help message and quit]' \
'(- *)'{-h,--help}'[Show help message and quit]' \
'(-e --environment)'{-e,--environment=}'[The environment to run "console" in]:env:(test development production)' \
'(-s --sandbox)'{-s,--sandbox}'[Rollback database modifications on exit]' \
&& ret=0
;;
(server|s)
_arguments \
'(- *)'{-h,--help}'[Show this help message and quit]' \
'(- *)'{-h,--help}'[Show help message and quit]' \
'(-e --environment)'{-e,--environment=}'[The environment to run "server" in]:env:(test development production)' \
'(-p --port)'{-p,--port}'[Run Rails on the specified port]:port' \
'(-b --binding)'{-b,--binding=}'[Bind Rails to the specified IP]:binding' \
@ -98,7 +98,7 @@ _rails() {
;;
(dbconsole|db)
_arguments \
'(- *)'{-h,--help}'[Show this help message and quit]' \
'(- *)'{-h,--help}'[Show help message and quit]' \
'(-e --environment)'{-e,--environment=}'[The environment to run "server" in]:env:(test development production)' \
'(-p --include-password)'{-p,--include-password}'[Automatically provide the password from database.yml]' \
'--mode=[Automatically put the sqlite3 database in the specified mode]:mode:(html list line column)' \
@ -109,7 +109,7 @@ _rails() {
;;
(test|t|test:system)
_arguments \
'(- *)'{-h,--help}'[Show this help message and quit]' \
'(- *)'{-h,--help}'[Show help message and quit]' \
'--no-plugins[Bypass minitest plugin auto-loading]' \
'(-s --seed)'{-s,--seed=}'[Sets random seed]:seed' \
'(-v --verbose -q --quiet)'{-v,--verbose}'[Show progress processing files]' \
@ -133,7 +133,7 @@ _rails() {
;;
(runner|r)
_arguments \
'(- *)'{-h,--help}'[Show this help message and quit]' \
'(- *)'{-h,--help}'[Show help message and quit]' \
'(-e --environment)'{-e,--environment=}'[The environment to run "runner"]:env:(test development production)' \
'(-w --skip-executor)'{-w,--skip-executor}'[Do not wrap with Rails Executor]' \
'*:: :_files -g "*.rb"' \
@ -147,7 +147,7 @@ _rails() {
;;
(routes)
_arguments \
'(- *)'{-h,--help}'[Show this help message and quit]' \
'(- *)'{-h,--help}'[Show help message and quit]' \
'(-c --controller)'{-c,--controller=}'[Filter by a specific controller]:controller' \
'(-g --grep)'{-g,--grep}'[Grep routes by a specific pattern]' \
'(-E --expanded)'{-E,--expanded}'[Print routes expanded vertically with parts explained]' \
@ -353,7 +353,7 @@ _rails_generate() {
(generate)
local -a opts
opts=(
'(- *)'{-h,--help}'[Show this help message and quit]'
'(- *)'{-h,--help}'[Show help message and quit]'
$runtime_options
'--skip-namespace[Skip namespace]'
'--skip-collision-check[Skip collision check]'

View File

@ -35,7 +35,7 @@
# ------------------------------------------------------------------------------
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-0 --zero)'{-0,--zero}'[use the nul character as line separator]'

View File

@ -93,7 +93,7 @@ _sbt() {
unfiltered/unfiltered.g8
scalatra/scalatra-sbt.g8
)
_values 'g8_templates' $g8_templates
_values 'g8_templates' $g8_templates && ret=0
;;
esac
;;

View File

@ -173,7 +173,7 @@ __tmuxp_import() {
(project)
if [[ $line[1] == 'tmuxinator' ]]
then
_wanted tmuxinator-projects exp 'tmuxinator projects' compadd $(tmuxinator completions start)
_wanted tmuxinator-projects expl 'tmuxinator projects' compadd $(tmuxinator completions start)
fi
;;
esac

View File

@ -194,7 +194,7 @@ local -a opts=(
"--excludeFiles[Remove a list of files from the watch mode's processing]:files:_files"
"--libReplacement[Enable library replacement]"
"--erasableSyntaxOnly[Ensures that runtime constructs which are not part of ECMAScript are not allowed]"
'*:: :_files' \
'*:: :_files'
)
if (( $+opt_args[--build] )); then

View File

@ -61,7 +61,7 @@ case $OSTYPE in
;;
(*)
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-r --random)'{-r,--random}'[generate random-based uuid]' \
'(-t --time)'{-t,--time}'[generate time-based uuid]' \

View File

@ -35,7 +35,7 @@
# ------------------------------------------------------------------------------
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(-g --group -p --passwd)'{-g,--group}'[edit group database]' \
'(-g --group -p --passwd)'{-p,--passwd}'[edit passwd database]' \
'(-q --quiet)'{-q,--quiet}'[quiet mode]' \

View File

@ -48,7 +48,7 @@ _wdctl_output_columns() {
}
_arguments -s \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-f --flags)'{-f,--flags}'[print selected flags only]:flags' \
'(-F --noflags)'{-F,--noflags}'[do not print information about flags]' \

View File

@ -345,7 +345,8 @@ _yarn_cache() {
_arguments \
'(- *)'{-h,--help}'[show help message and exit]' \
'--mirror[remove the global cache files instead of the local cache files]' \
'--all[remove both the global cache files and the local cache files of the current project]'
'--all[remove both the global cache files and the local cache files of the current project]' \
&& ret=0
;;
esac
;;
@ -640,8 +641,6 @@ _yarn_plugin_subcommands() {
(( $+functions[_yarn_run] )) ||
_yarn_run() {
local ret=1
_arguments \
'(- *)'{-h,--help}'[show help message and exit]' \
'--json[format the output as an NDJSON stream]' \
@ -651,10 +650,7 @@ _yarn_run() {
'(-B --binaries-only)'{-B,--binaries-only}'[ignore any user defined scripts and only check binaries]' \
'*--require[preload given module]:module' \
'1: :_yarn_scripts' \
'*:: :_files' \
&& ret=0
return ret
'*:: :_files'
}
(( $+functions[_yarn_set] )) ||
@ -908,7 +904,7 @@ _yarn_scripts() {
fi
local -a candidates=($scripts $binaries)
compadd -a candidates
_wanted candidates expl 'scripts' compadd -a candidates
}
_yarn "$@"

View File

@ -56,7 +56,7 @@ _zramctl_output_columns() {
}
_arguments \
'(- *)'{-h,--help}'[display this help]' \
'(- *)'{-h,--help}'[display help]' \
'(- *)'{-V,--version}'[display version]' \
'(-a --algorithm)'{-a,--algorithm}'[compression algorithm to use]:algorithm:(lzo lz4 lz4hc deflate 842 zstd)' \
'(-b --bytes)'{-b,--bytes}'[print sizes in bytes rather than in human readable format]:bytes' \