mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:12:50 +08:00
Reformat share/**.fish with newlines collapsed
This commit is contained in:
parent
f93a3e9e9b
commit
78c9482822
|
@ -11,7 +11,6 @@ complete -c abbr -f -n $__fish_abbr_not_add_cond -s s -l show -d 'Print all abbr
|
|||
complete -c abbr -f -n $__fish_abbr_not_add_cond -s l -l list -d 'Print all abbreviation names'
|
||||
complete -c abbr -f -n $__fish_abbr_not_add_cond -s h -l help -d Help
|
||||
|
||||
|
||||
complete -c abbr -f -n $__fish_abbr_add_cond -s p -l position -a 'command anywhere' -d 'Expand only as a command, or anywhere' -x
|
||||
complete -c abbr -f -n $__fish_abbr_add_cond -s f -l function -d 'Treat expansion argument as a fish function' -xa '(functions)'
|
||||
complete -c abbr -f -n $__fish_abbr_add_cond -s r -l regex -d 'Match a regular expression' -x
|
||||
|
|
|
@ -59,7 +59,6 @@ function __fish_adb_list_packages
|
|||
__fish_adb_run_command pm list packages 2\>/dev/null | string replace 'package:' ''
|
||||
end
|
||||
|
||||
|
||||
function __fish_adb_list_uninstallable_packages
|
||||
# -3 doesn't exactly mean show uninstallable, but it's the closest you can get to with pm list
|
||||
__fish_adb_run_command pm list packages -3 | string replace 'package:' ''
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
function __fish_ansible_vault_no_subcommand -d 'Test if ansible-vault has yet to be given the subcommand'
|
||||
commandline -pc | not string match --regex '[^-]\b(?:create|decrypt|edit|encrypt|encrypt_string|rekey|view)\b'
|
||||
end
|
||||
|
@ -10,7 +9,6 @@ function __fish_ansible_vault_using_command
|
|||
contains -- "$cmd" $argv
|
||||
end
|
||||
|
||||
|
||||
# generic options
|
||||
complete -c ansible-vault -l version -d "Display version and exit"
|
||||
complete -c ansible-vault -s h -l help -f -d "Show help message and exit"
|
||||
|
|
|
@ -6,7 +6,6 @@ set -l manifest_subcommands print application-id version-name version-code min-s
|
|||
set -l dex_subcommands list references packages code
|
||||
set -l resources_subcommands package configs value name xml
|
||||
|
||||
|
||||
complete -f -n "not __fish_seen_subcommand_from $subcommands" -c apkanalyzer -a apk -d 'Analyze APK file attributes'
|
||||
complete -f -n "not __fish_seen_subcommand_from $subcommands" -c apkanalyzer -a files -d 'Analyze the files inside the APK file'
|
||||
complete -f -n "not __fish_seen_subcommand_from $subcommands" -c apkanalyzer -a manifest -d 'Analyze the contents of the manifest file'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#apt-build
|
||||
complete -c apt-build -l help -d "Display help and exit"
|
||||
complete -f -c apt-build -a update -d "Update list of packages"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#apt-extracttemplates
|
||||
complete -c apt-extracttemplates -s h -l help -d "Display help and exit"
|
||||
complete -r -c apt-extracttemplates -s t -d "Set temp dir"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c block -s h -l help -d 'Display help and exit'
|
||||
complete -c block -s e -l erase -d 'Remove the topmost global event block'
|
||||
complete -c block -s l -l local -d 'Create a local (automatically erased) event block'
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
|
||||
complete -c break -s h -l help -d 'Display help and exit'
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
# see https://github.com/fish-shell/fish-shell/blob/master/share/functions/__fish_seen_subcommand_from.fish
|
||||
# and https://github.com/fish-shell/fish-shell/blob/master/share/functions/__fish_use_subcommand.fish
|
||||
|
||||
|
||||
# help commands
|
||||
complete -f -c bzr -n __fish_use_subcommand -a help -d 'Show help'
|
||||
complete -f -c bzr -n '__fish_seen_subcommand_from help' -a topics -d 'List all help topics'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
function __fish_canto_using_command
|
||||
set -l cmd (commandline -xpc)
|
||||
if test (count $cmd) -gt 1
|
||||
|
@ -14,7 +13,6 @@ function __fish_canto_using_command
|
|||
return 1
|
||||
end
|
||||
|
||||
|
||||
complete -f -c canto -s h -l help -d 'Show Help'
|
||||
complete -f -c canto -s v -l version -d 'Show version'
|
||||
complete -f -c canto -s u -l update -d 'Update before running'
|
||||
|
|
|
@ -47,7 +47,6 @@ end
|
|||
complete -c cargo -n '__fish_seen_subcommand_from add install' -n '__fish_is_nth_token 2' \
|
||||
-a "(__fish_cargo_search (commandline -ct))"
|
||||
|
||||
|
||||
## --- AUTO-GENERATED WITH `cargo complete fish` ---
|
||||
# Manually massaged to improve some descriptions
|
||||
complete -c cargo -n __fish_use_subcommand -l explain -d 'Run `rustc --explain CODE`'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c commandline -s h -l help -d "Display help and exit"
|
||||
complete -c commandline -s a -l append -d "Add text to the end of the selected area"
|
||||
complete -c commandline -s i -l insert -d "Add text at cursor"
|
||||
|
@ -25,5 +24,4 @@ complete -c commandline -s P -l paging-mode -d "Return true if showing pager con
|
|||
complete -c commandline -l paging-full-mode -d "Return true if pager is showing all content"
|
||||
complete -c commandline -l is-valid -d "Return true if the command line is syntactically valid and complete"
|
||||
|
||||
|
||||
complete -c commandline -n '__fish_contains_opt -s f function' -a '(bind --function-names)' -d 'Function name' -x
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
|
||||
complete -c continue -s h -l help -d 'Display help and exit'
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
complete -c cowsay -s e -d "Specify eye string" -r
|
||||
complete -c cowsay -s f -d "Specify cow file" -x -a '(cowsay -l | tail -n +2 | string split " ")'
|
||||
complete -c cowsay -s h -d "Display help and exit"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
complete -c cowthink -s e -d "Specify eye string" -r
|
||||
complete -c cowthink -s f -d "Specify cow file" -x -a '(cowthink -l | tail -n +2 | string split " ")'
|
||||
complete -c cowthink -s h -d "Display help and exit"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#
|
||||
# Completions for the cvs command
|
||||
# This file was autogenerated by the file make_vcs_completions.fish
|
||||
|
@ -9,7 +8,6 @@
|
|||
# Completions from commandline
|
||||
#
|
||||
|
||||
|
||||
#
|
||||
# Global switches
|
||||
#
|
||||
|
@ -72,7 +70,6 @@ complete -c cvs -n __fish_use_subcommand -x -a version -d 'Show current CVS vers
|
|||
complete -c cvs -n __fish_use_subcommand -x -a watch -d 'Set watches'
|
||||
complete -c cvs -n __fish_use_subcommand -x -a watchers -d 'See who is watching a file'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'add' subcommand
|
||||
#
|
||||
|
@ -80,7 +77,6 @@ complete -c cvs -n __fish_use_subcommand -x -a watchers -d 'See who is watching
|
|||
complete -c cvs -n 'contains \'add\' (commandline -pxc)' -s k -x -d 'Use "rcs-kflag" to add the file with the specified'
|
||||
complete -c cvs -n 'contains \'add\' (commandline -pxc)' -s m -x -d 'Use "message" for the creation log.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'admin' subcommand
|
||||
#
|
||||
|
@ -105,7 +101,6 @@ complete -c cvs -n 'contains \'admin\' (commandline -pxc)' -s t -d '-string Set
|
|||
complete -c cvs -n 'contains \'admin\' (commandline -pxc)' -s u -d '[rev] Unlock the revision (latest revision on branch,'
|
||||
complete -c cvs -n 'contains \'admin\' (commandline -pxc)' -s U -d 'Unset strict locking.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'annotate' subcommand
|
||||
#
|
||||
|
@ -117,7 +112,6 @@ complete -c cvs -n 'contains \'annotate\' (commandline -pxc)' -s F -d 'Annotate
|
|||
complete -c cvs -n 'contains \'annotate\' (commandline -pxc)' -s r -x -d 'Annotate file as of specified revision/tag.'
|
||||
complete -c cvs -n 'contains \'annotate\' (commandline -pxc)' -s D -x -d 'Annotate file as of specified date.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'checkout' subcommand
|
||||
#
|
||||
|
@ -138,7 +132,6 @@ complete -c cvs -n 'contains \'checkout\' (commandline -pxc)' -s d -x -a '(__fis
|
|||
complete -c cvs -n 'contains \'checkout\' (commandline -pxc)' -s k -x -d 'Use RCS kopt -k option on checkout. (is sticky)'
|
||||
complete -c cvs -n 'contains \'checkout\' (commandline -pxc)' -s j -x -d 'Merge in changes made between current revision and rev.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'commit' subcommand
|
||||
#
|
||||
|
@ -151,7 +144,6 @@ complete -c cvs -n 'contains \'commit\' (commandline -pxc)' -s F -x -d 'Read the
|
|||
complete -c cvs -n 'contains \'commit\' (commandline -pxc)' -s m -x -d 'Log message.'
|
||||
complete -c cvs -n 'contains \'commit\' (commandline -pxc)' -s r -x -d 'Commit to this branch or trunk revision.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'diff' subcommand
|
||||
#
|
||||
|
@ -196,7 +188,6 @@ complete -c cvs -n 'contains \'diff\' (commandline -pxc)' -s - -d 'Horizon-lines
|
|||
complete -c cvs -n 'contains \'diff\' (commandline -pxc)' -s d -d '--minimal Try hard to find a smaller set of changes.'
|
||||
complete -c cvs -n 'contains \'diff\' (commandline -pxc)' -s H -d '--speed-large-files Assume large files and many scattered small changes.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'edit' subcommand
|
||||
#
|
||||
|
@ -207,7 +198,6 @@ complete -c cvs -n 'contains \'edit\' (commandline -pxc)' -s a -d 'Specify actio
|
|||
complete -c cvs -n 'contains \'edit\' (commandline -pxc)' -s c -d 'Check for <file>s edited by others and abort if found.'
|
||||
complete -c cvs -n 'contains \'edit\' (commandline -pxc)' -s f -d 'Allow edit if <file>s are edited by others (default).'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'editors' subcommand
|
||||
#
|
||||
|
@ -215,7 +205,6 @@ complete -c cvs -n 'contains \'edit\' (commandline -pxc)' -s f -d 'Allow edit if
|
|||
complete -c cvs -n 'contains \'editors\' (commandline -pxc)' -s l -d 'Process this directory only (not recursive).'
|
||||
complete -c cvs -n 'contains \'editors\' (commandline -pxc)' -s R -d 'Process directories recursively (default).'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'export' subcommand
|
||||
#
|
||||
|
@ -230,7 +219,6 @@ complete -c cvs -n 'contains \'export\' (commandline -pxc)' -s D -x -d 'Export r
|
|||
complete -c cvs -n 'contains \'export\' (commandline -pxc)' -s d -x -a '(__fish_complete_directories (commandline -ct))' -d 'Export into dir instead of module name.'
|
||||
complete -c cvs -n 'contains \'export\' (commandline -pxc)' -s k -x -d 'Use RCS kopt -k option on checkout.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'history' subcommand
|
||||
#
|
||||
|
@ -254,7 +242,6 @@ complete -c cvs -n 'contains \'history\' (commandline -pxc)' -s t -x -d 'Since t
|
|||
complete -c cvs -n 'contains \'history\' (commandline -pxc)' -s u -x -a '(__fish_complete_users)' -d 'For user name (repeatable)'
|
||||
complete -c cvs -n 'contains \'history\' (commandline -pxc)' -s z -x -d 'Output for time zone <tz> (e.g. -z -0700)'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'import' subcommand
|
||||
#
|
||||
|
@ -267,19 +254,14 @@ complete -c cvs -n 'contains \'import\' (commandline -pxc)' -s b -x -d 'Vendor b
|
|||
complete -c cvs -n 'contains \'import\' (commandline -pxc)' -s m -x -d 'Log message.'
|
||||
complete -c cvs -n 'contains \'import\' (commandline -pxc)' -s W -x -d 'Wrappers specification line.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'init' subcommand
|
||||
#
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'kserver' subcommand
|
||||
#
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'log' subcommand
|
||||
#
|
||||
|
@ -298,19 +280,14 @@ complete -c cvs -n 'contains \'log\' (commandline -pxc)' -s d -x -d 'A semicolon
|
|||
complete -c cvs -n 'contains \'log\' (commandline -pxc)' -s s -x -d 'Only list revisions with specified states.'
|
||||
complete -c cvs -n 'contains \'log\' (commandline -pxc)' -s w -d '[logins]'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'login' subcommand
|
||||
#
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'logout' subcommand
|
||||
#
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'ls' subcommand
|
||||
#
|
||||
|
@ -323,14 +300,12 @@ complete -c cvs -n 'contains \'ls\' (commandline -pxc)' -s R -d 'List recursivel
|
|||
complete -c cvs -n 'contains \'ls\' (commandline -pxc)' -s r -x -d 'Show files with revision or tag.'
|
||||
complete -c cvs -n 'contains \'ls\' (commandline -pxc)' -s D -x -d 'Show files from date.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'pserver' subcommand
|
||||
#
|
||||
|
||||
complete -c cvs -n 'contains \'pserver\' (commandline -pxc)' -s c -x -d 'Path to an alternative CVS config file.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'rannotate' subcommand
|
||||
#
|
||||
|
@ -342,7 +317,6 @@ complete -c cvs -n 'contains \'rannotate\' (commandline -pxc)' -s F -d 'Annotate
|
|||
complete -c cvs -n 'contains \'rannotate\' (commandline -pxc)' -s r -x -d 'Annotate file as of specified revision/tag.'
|
||||
complete -c cvs -n 'contains \'rannotate\' (commandline -pxc)' -s D -x -d 'Annotate file as of specified date.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'rdiff' subcommand
|
||||
#
|
||||
|
@ -360,14 +334,12 @@ complete -c cvs -n 'contains \'rdiff\' (commandline -pxc)' -s k -x -d 'Specify k
|
|||
complete -c cvs -n 'contains \'rdiff\' (commandline -pxc)' -s D -x -d 'Date.'
|
||||
complete -c cvs -n 'contains \'rdiff\' (commandline -pxc)' -s r -x -d 'Revision - symbolic or numeric.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'release' subcommand
|
||||
#
|
||||
|
||||
complete -c cvs -n 'contains \'release\' (commandline -pxc)' -s d -d 'Delete the given directory.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'remove' subcommand
|
||||
#
|
||||
|
@ -376,7 +348,6 @@ complete -c cvs -n 'contains \'remove\' (commandline -pxc)' -s f -d 'Delete the
|
|||
complete -c cvs -n 'contains \'remove\' (commandline -pxc)' -s l -d 'Process this directory only (not recursive).'
|
||||
complete -c cvs -n 'contains \'remove\' (commandline -pxc)' -s R -d 'Process directories recursively.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'rlog' subcommand
|
||||
#
|
||||
|
@ -395,7 +366,6 @@ complete -c cvs -n 'contains \'rlog\' (commandline -pxc)' -s d -x -d 'A semicolo
|
|||
complete -c cvs -n 'contains \'rlog\' (commandline -pxc)' -s s -x -d 'Only list revisions with specified states.'
|
||||
complete -c cvs -n 'contains \'rlog\' (commandline -pxc)' -s w -d '[logins]'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'rls' subcommand
|
||||
#
|
||||
|
@ -408,7 +378,6 @@ complete -c cvs -n 'contains \'rls\' (commandline -pxc)' -s R -d 'List recursive
|
|||
complete -c cvs -n 'contains \'rls\' (commandline -pxc)' -s r -x -d 'Show files with revision or tag.'
|
||||
complete -c cvs -n 'contains \'rls\' (commandline -pxc)' -s D -x -d 'Show files from date.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'rtag' subcommand
|
||||
#
|
||||
|
@ -425,14 +394,12 @@ complete -c cvs -n 'contains \'rtag\' (commandline -pxc)' -s R -d 'Process direc
|
|||
complete -c cvs -n 'contains \'rtag\' (commandline -pxc)' -s r -x -d 'Existing revision/tag.'
|
||||
complete -c cvs -n 'contains \'rtag\' (commandline -pxc)' -s D -d 'Existing date.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'server' subcommand
|
||||
#
|
||||
|
||||
complete -c cvs -n 'contains \'server\' (commandline -pxc)' -s c -x -d 'Path to an alternative CVS config file.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'status' subcommand
|
||||
#
|
||||
|
@ -441,7 +408,6 @@ complete -c cvs -n 'contains \'status\' (commandline -pxc)' -s v -d 'Verbose for
|
|||
complete -c cvs -n 'contains \'status\' (commandline -pxc)' -s l -d 'Process this directory only (not recursive).'
|
||||
complete -c cvs -n 'contains \'status\' (commandline -pxc)' -s R -d 'Process directories recursively.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'tag' subcommand
|
||||
#
|
||||
|
@ -457,7 +423,6 @@ complete -c cvs -n 'contains \'tag\' (commandline -pxc)' -s R -d 'Process direct
|
|||
complete -c cvs -n 'contains \'tag\' (commandline -pxc)' -s r -x -d 'Existing revision/tag.'
|
||||
complete -c cvs -n 'contains \'tag\' (commandline -pxc)' -s D -d 'Existing date.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'unedit' subcommand
|
||||
#
|
||||
|
@ -465,7 +430,6 @@ complete -c cvs -n 'contains \'tag\' (commandline -pxc)' -s D -d 'Existing date.
|
|||
complete -c cvs -n 'contains \'unedit\' (commandline -pxc)' -s l -d 'Local directory only, not recursive.'
|
||||
complete -c cvs -n 'contains \'unedit\' (commandline -pxc)' -s R -d 'Process directories recursively (default).'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'update' subcommand
|
||||
#
|
||||
|
@ -485,13 +449,10 @@ complete -c cvs -n 'contains \'update\' (commandline -pxc)' -s j -x -d 'Merge in
|
|||
complete -c cvs -n 'contains \'update\' (commandline -pxc)' -s I -x -d 'More files to ignore (! to reset).'
|
||||
complete -c cvs -n 'contains \'update\' (commandline -pxc)' -s W -x -d 'Wrappers specification line.'
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'version' subcommand
|
||||
#
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'watch' subcommand
|
||||
#
|
||||
|
@ -500,7 +461,6 @@ complete -c cvs -n 'contains \'watch\' (commandline -pxc)' -s l -x -a 'on off ad
|
|||
complete -c cvs -n 'contains \'watch\' (commandline -pxc)' -s R -x -a 'on off add remove' -d 'Process directories recursively (default).'
|
||||
complete -c cvs -n 'contains \'watch\' (commandline -pxc)' -s a -x -a 'add remove' -d 'Specify what actions, one of: `edit\', `unedit\','
|
||||
|
||||
|
||||
#
|
||||
# Completions for the 'watchers' subcommand
|
||||
#
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# Options
|
||||
complete -c cygport -s 4 -l 32 -d "Build for 32-bit Cygwin"
|
||||
complete -c cygport -s 8 -l 64 -d "Build for 64-bit Cygwin"
|
||||
|
|
|
@ -130,7 +130,6 @@ complete -c darcs -n __fish_darcs_use_optimize_command -x -a pristine -d 'Optimi
|
|||
complete -c darcs -n __fish_darcs_use_optimize_command -x -a upgrade -d 'Upgrade repository to latest compatible format'
|
||||
complete -c darcs -n __fish_darcs_use_optimize_command -x -a cache -d 'Garbage collect global cache'
|
||||
|
||||
|
||||
complete -c darcs -l help -d 'Show a brief description of the command and its options'
|
||||
complete -c darcs -l list-options -d 'Show plain list of available options and commands, for auto-completion'
|
||||
complete -c darcs -l run-posthook -d 'Run posthook command without prompting [DEFAULT]'
|
||||
|
|
|
@ -33,7 +33,6 @@ complete -f -c dconf -n "not __fish_seen_subcommand_from $commands" -a dump -d '
|
|||
complete -f -c dconf -n "not __fish_seen_subcommand_from $commands" -a load -d 'Populate a subpath from stdin'
|
||||
complete -f -c dconf -n "not __fish_seen_subcommand_from $commands" -a help -d 'Display help and exit'
|
||||
|
||||
|
||||
### Arguments to commands
|
||||
# Technically, reset/watch take a "PATH" (which is a dir or a key)
|
||||
# while read and write take a KEY, but for now this is close enough.
|
||||
|
|
|
@ -29,5 +29,4 @@ complete -c direnv -n "not __fish_seen_subcommand_from $commands" \
|
|||
complete -c direnv -n "not __fish_seen_subcommand_from $commands" \
|
||||
-a version -d "prints the version or checks that direnv is VERSION_AT_LEAST or newer"
|
||||
|
||||
|
||||
complete -c direnv -n "__fish_seen_subcommand_from $with_file" -F
|
||||
|
|
|
@ -21,7 +21,6 @@ function __fish_diskutil_using_not_subcommand
|
|||
and __fish_seen_subcommand_from $argv
|
||||
end
|
||||
|
||||
|
||||
############
|
||||
# Commands #
|
||||
############
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
|
||||
complete -c djview -x -k -a "(__fish_complete_suffix .djvu)"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
|
||||
complete -c djview4 -x -k -a "(__fish_complete_suffix .djvu)"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c dlocate -s S -x -d 'List records that match filenames'
|
||||
complete -c dlocate -s L -d 'List all files in the package' -xa '(__fish_print_apt_packages)'
|
||||
complete -c dlocate -o ls -d 'ls -ldF all files in the package' -xa '(__fish_print_apt_packages)'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c dpkg -s i -l install -d 'Install .deb package' -k -xa '(__fish_complete_suffix .deb)'
|
||||
complete -c dpkg -l unpack -d 'Unpack .deb package' -k -xa '(__fish_complete_suffix .deb)'
|
||||
complete -c dpkg -l configure -d 'Configure package' -xa '(dpkg-query -W -f \'${Package}\n\')'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# First parameter is the profile name, or 'usage'
|
||||
complete -c duply -f -n "__fish_is_nth_token 1" -a '(set -l files /etc/duply/* ~/.duply/*; string replace -r ".*/" "" -- $files)' -d Profile
|
||||
complete --command duply --no-files --arguments usage -d 'Get usage help text'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c encfs -s i -l idle -d "Unmount when idle for specified MINUTES"
|
||||
complete -c encfs -s f -d "Run in the foreground"
|
||||
complete -c encfs -s v -l verbose -d "Verbose messages when run foreground"
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
|
||||
complete -c eval -s h -l help -d 'Display help and exit'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
function __fish_evince_complete_file_url
|
||||
set -l comp
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c exit -s h -l help -d 'Display help and exit'
|
||||
complete -c exit -x -a 0 -d "Quit with normal exit status"
|
||||
complete -c exit -x -a 1 -d "Quit with abnormal exit status"
|
||||
|
|
|
@ -6,7 +6,6 @@ complete -c find -s P -d "Never follow symlinks"
|
|||
complete -c find -s L -o follow -d "Follow symlinks"
|
||||
complete -c find -s H -d "Don't follow symlinks (except for command line arguments)"
|
||||
|
||||
|
||||
# General options
|
||||
|
||||
complete -c find -o daystart -d "Measure from the beginning of today rather than from 24 hours ago"
|
||||
|
@ -83,7 +82,6 @@ complete -c find -o user -d "File's owner" -x -a "(__fish_complete_users)"
|
|||
complete -c find -o xtype -d "Check type of file - in case of symlink, check the file that is not checked by -type" -x -a $type_comp
|
||||
complete -c find -o context -d "File's security context matches specified pattern" -x
|
||||
|
||||
|
||||
# Actions
|
||||
|
||||
complete -c find -o delete -d "Delete selected files"
|
||||
|
@ -102,7 +100,6 @@ complete -c find -o prune -d "Do not recurse unless -depth is specified"
|
|||
complete -c find -o quit -d "Exit at once"
|
||||
complete -c find -o ls -d "List file in ls -dils format" -r
|
||||
|
||||
|
||||
# Grouping
|
||||
|
||||
complete -c find -o not -d "Negate result of action"
|
||||
|
|
|
@ -43,7 +43,6 @@ function __fish_fossil_subsubsubcommand_only
|
|||
and test $argv[3] = $cmd[4]
|
||||
end
|
||||
|
||||
|
||||
# add
|
||||
complete -c fossil -n __fish_fossil_needs_command -a add -x -d 'Add files to checkout'
|
||||
complete -c fossil -n '__fish_fossil_command add' -l case-sensitive -x -a 'yes no' -d 'Case insensitive file matching'
|
||||
|
@ -137,7 +136,6 @@ complete -c fossil -n '__fish_fossil_command co checkout' -l force-missing -d 'I
|
|||
complete -c fossil -n '__fish_fossil_command co checkout' -l keep -d 'Only update the manifest'
|
||||
complete -c fossil -n '__fish_fossil_command co checkout' -l latest -d 'Update to latest version'
|
||||
|
||||
|
||||
# clean
|
||||
complete -c fossil -n __fish_fossil_needs_command -a clean -d 'Delete all extra files'
|
||||
complete -c fossil -n '__fish_fossil_command clean' -l case-sensitive -x -a 'yes no' -d 'Case insensitive file matching'
|
||||
|
|
|
@ -30,7 +30,6 @@ complete -c gcc -o aux-info -d 'Output to given file prototyped declarations for
|
|||
complete -c gcc -o fabi-version -d 'Use specified version of the C++ ABI' -xa "0 1"
|
||||
complete -c gcc -l sysroot -x -a '(__fish_complete_directories)' -d 'Use dir as the root directory for headers and libraries'
|
||||
|
||||
|
||||
#
|
||||
# These completions are autogenerated form the manual page using make_completions.py
|
||||
#
|
||||
|
|
|
@ -1093,7 +1093,6 @@ complete -f -c git -n '__fish_git_using_command show' -l no-notes -d 'Do not sho
|
|||
complete -f -c git -n '__fish_git_using_command show' -s s -l no-patch -d 'Suppress diff output'
|
||||
complete -f -c git -n '__fish_git_using_command show' -l show-signature -d 'Check the validity of a signed commit object'
|
||||
|
||||
|
||||
### show-branch
|
||||
complete -f -c git -n __fish_git_needs_command -a show-branch -d 'Show the commits on branches'
|
||||
complete -f -c git -n '__fish_git_using_command show-branch' -ka '(__fish_git_refs)' -d Rev
|
||||
|
@ -1217,7 +1216,6 @@ complete -f -c git -n '__fish_git_using_command apply' -l recount -d 'Do not tru
|
|||
complete -F -c git -n '__fish_git_using_command apply' -l directory -d 'Prepend given path to all filenames'
|
||||
complete -f -c git -n '__fish_git_using_command apply' -l unsafe-paths -d 'Allow patches that work outside working area'
|
||||
|
||||
|
||||
### archive
|
||||
complete -f -c git -n __fish_git_needs_command -a archive -d 'Create an archive of files from a tree'
|
||||
complete -f -c git -n '__fish_git_using_command archive' -s l -l list -d "Show all available formats"
|
||||
|
@ -1890,7 +1888,6 @@ complete -f -c git -n '__fish_git_using_command range-diff' -ka '(__fish_git_ran
|
|||
complete -f -c git -n '__fish_git_using_command range-diff' -l creation-factor -d 'Percentage by which creation is weighted'
|
||||
complete -f -c git -n '__fish_git_using_command range-diff' -l no-dual-color -d 'Use simple diff colors'
|
||||
|
||||
|
||||
### push
|
||||
complete -f -c git -n __fish_git_needs_command -a push -d 'Push changes elsewhere'
|
||||
complete -f -c git -n '__fish_git_using_command push' -n 'not __fish_git_branch_for_remote' -a '(__fish_git_remotes)' -d 'Remote alias'
|
||||
|
@ -2227,7 +2224,6 @@ complete -f -c git -n '__fish_git_using_command format-patch log' -l no-prefix -
|
|||
complete -f -c git -n '__fish_git_using_command format-patch' -l numbered -s n -d "Name output in [Patch n/m] format, even with a single patch"
|
||||
complete -f -c git -n '__fish_git_using_command format-patch' -l no-numbered -s N -d "Name output in [Patch] format, even with multiple patches"
|
||||
|
||||
|
||||
## git submodule
|
||||
set -l submodulecommands add status init deinit update set-branch set-url summary foreach sync absorbgitdirs
|
||||
complete -f -c git -n __fish_git_needs_command -a submodule -d 'Initialize, update or inspect submodules'
|
||||
|
|
|
@ -28,7 +28,6 @@ complete -c go -n "__fish_seen_subcommand_from $__go_cmds_w_buildflags" -o trimp
|
|||
complete -c go -n "__fish_seen_subcommand_from $__go_cmds_w_buildflags" -o toolexec -r -d 'a program to use to invoke toolchain programs'
|
||||
complete -c go -n "__fish_seen_subcommand_from $__go_cmds_w_buildflags" -o mod -x -d 'module download mode to use' -a 'readonly vendor'
|
||||
|
||||
|
||||
# Completions for go cmds that takes file arguments
|
||||
complete -c go -n "__fish_seen_subcommand_from build compile fix fmt install test vet" -k -x -a "(
|
||||
__fish_complete_suffix .go
|
||||
|
@ -39,7 +38,6 @@ complete -c go -n "__fish_seen_subcommand_from build doc fix fmt install test ve
|
|||
go list -e -f '{{.ImportPath}} {{or .Doc \"Go package\"}}' (commandline -ct)... 2>/dev/null
|
||||
)" --description Package
|
||||
|
||||
|
||||
# build
|
||||
complete -c go -n __fish_use_subcommand -a build -d 'compile packages and dependencies'
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c gpasswd -xa '(__fish_complete_groups)'
|
||||
complete -c gpasswd -s a -l add -d 'Add user to group' -xa '(__fish_complete_users)'
|
||||
complete -c gpasswd -s d -l delete -d 'Remove user from group' -xa '(__fish_complete_users)'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#Common options
|
||||
complete -c gphoto2 -s '?' -l help -d 'Print complete help message on program usage'
|
||||
complete -c gphoto2 -l usage -d 'Print short message on program usage'
|
||||
|
|
|
@ -66,7 +66,6 @@ complete --command gw --command gradle --command gradlew \
|
|||
--exclusive \
|
||||
--arguments "(__fish_gradle_get_task_completion)"
|
||||
|
||||
|
||||
###############################
|
||||
# Configure Option Completion #
|
||||
###############################
|
||||
|
|
|
@ -141,7 +141,6 @@ complete $heroku_looking -xa auth:logout -d "clear local authentication credenti
|
|||
complete $heroku_looking -xa auth:token -d "display your api token"
|
||||
complete $heroku_looking -xa auth:whoami -d "display your heroku email address"
|
||||
|
||||
|
||||
# Config options and subcommands
|
||||
complete -c heroku -n '__fish_heroku_using_command config' -s s -l shell -d "output config vars in shell format"
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
complete -c iconv -s f -l from-code -d "Convert from specified encoding" -x -a "(__fish_print_encodings)"
|
||||
complete -c iconv -s t -l to-code -d "Convert to specified encoding" -x -a "(__fish_print_encodings)"
|
||||
complete -c iconv -l list -d "List known coded character sets"
|
||||
|
|
|
@ -34,7 +34,6 @@ function __fish_iptables_user_chains
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
function __fish_iptables_chains
|
||||
set -l table (__fish_iptables_current_table)
|
||||
test -z $table
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
function __fish_complete_macos_java_version
|
||||
set -l json (/usr/libexec/java_home -X|plutil -convert json -o - -)
|
||||
osascript -l JavaScript -s o -e "JSON.parse('$json').forEach(e => console.log(`\${e.JVMVersion}\t\${e.JVMArch} \${e.JVMName} by--exec \${e.JVMVendor}`))"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
complete -c jobs -s h -l help -d 'Display help and exit'
|
||||
complete -c jobs -s p -l pid -d "Show the process id of each process in the job"
|
||||
complete -c jobs -s g -l group -d "Show group id of job"
|
||||
|
|
|
@ -19,7 +19,6 @@ for i in $__kill_signals
|
|||
and complete -c killall -s s -x -a "$number $name"
|
||||
end
|
||||
|
||||
|
||||
complete -c killall -xa '(__fish_complete_proc | string replace -r -- "^-" "")'
|
||||
|
||||
if killall --version >/dev/null 2>/dev/null # GNU
|
||||
|
|
|
@ -14,7 +14,6 @@ function __fish_kitchen_list
|
|||
command kitchen list --bare
|
||||
end
|
||||
|
||||
|
||||
# help commands
|
||||
complete -c kitchen -f -n __fish_kitchen_no_command -a help -d "Describe available commands or one specific command"
|
||||
|
||||
|
|
|
@ -24,7 +24,6 @@ function __fish_list_kldload_options
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
# Only attempt to match a local file if there isn't a match in /boot/kernel,
|
||||
# as odds are that is the desired source.
|
||||
complete -c kldload -xa '(__fish_list_kldload_options)'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c locate -s A -l all -d 'Match all non-option arguments'
|
||||
complete -c locate -s b -l basename -d 'Match against the base name of the file'
|
||||
complete -c locate -s c -l count -d 'Print only the number of matches found'
|
||||
|
|
|
@ -28,22 +28,18 @@ complete -c loginctl -x -n "not $seen $commands" -l signal -s s -d "Which signal
|
|||
complete -c loginctl -f -n "not $seen $commands" -l value -d "When showing properties, only print the value"
|
||||
complete -c loginctl -f -n "not $seen $commands" -l version -d "Show package version"
|
||||
|
||||
|
||||
function __fish_loginctl_list_sessions
|
||||
loginctl list-sessions --no-legend --no-pager --output=short | string replace -r '^\s*(\d+)\s+\d+\s+(\S+)\s+(\S+\s+)?(\S+\d+).*' '$1\t$2 at $4'
|
||||
end
|
||||
|
||||
|
||||
function __fish_loginctl_list_users
|
||||
loginctl list-users --no-legend --no-pager --output=short | string replace -r '(\d+) (\S+) .*' '$1\t$2'
|
||||
end
|
||||
|
||||
|
||||
function __fish_loginctl_list_seats
|
||||
loginctl list-seats --no-legend --no-pager --output=short
|
||||
end
|
||||
|
||||
|
||||
complete -c loginctl -n "$seen session-status show-session activate lock-session unlock-session terminate-session kill-session" -a '(__fish_loginctl_list_sessions)'
|
||||
complete -c loginctl -n "$seen user-status show-user enable-linger disable-linger terminate-user kill-user" -a '(__fish_loginctl_list_users)'
|
||||
complete -c loginctl -n "$seen seat-status show-seat attach terminate-seat" -a '(__fish_loginctl_list_seats)'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c logkeys -s s -l start -d 'Starts the keylogging daemon'
|
||||
complete -c logkeys -s k -l kill -d 'Terminates the logkeys daemon'
|
||||
complete -c logkeys -s o -l output -d 'Set output LOGFILE'
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
|
||||
__fish_complete_lpr lpq
|
||||
complete -c lpq -s l -d 'Requests a more verbose (long) reporting format'
|
||||
|
|
|
@ -17,7 +17,6 @@ complete -c ls -s t -d "Sort by modified time, most recent first"
|
|||
complete -c ls -s u -d "Sort by access time, (-l) show atime"
|
||||
complete -c ls -s x -d "Multi-column output, horizontally listed"
|
||||
|
||||
|
||||
# Test if we are using GNU ls
|
||||
if ls --version >/dev/null 2>/dev/null
|
||||
complete -c ls -s a -l all -d "Show hidden"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c lua -s e -d 'Execute string' -x
|
||||
# Try the most common lib directories, silencing errors in case they don't exist.
|
||||
complete -c lua -s l -d 'Require library' -xa "(find /usr/lib{,32,64}/lua/ -name \*.so -printf '%f\n' 2>/dev/null | string replace -r '.so\$' '')"
|
||||
|
|
|
@ -137,7 +137,6 @@ function __fish_print_magento_languages -d "Shows all existing magento languages
|
|||
echo cy_GB\t"Welsh (United Kingdom)"
|
||||
end
|
||||
|
||||
|
||||
function __fish_print_magento_source_theme_file_types -d "Shows all available source theme file types"
|
||||
echo less\t"Currently only LESS is supported"
|
||||
end
|
||||
|
@ -247,7 +246,6 @@ function __fish_magento_parameter_missing -d "Checks if a parameter has been giv
|
|||
return 0
|
||||
end
|
||||
|
||||
|
||||
##################
|
||||
# Global options #
|
||||
##################
|
||||
|
@ -608,7 +606,6 @@ __fish_magento_register_command_option setup:static-content:deploy -f -l exclude
|
|||
__fish_magento_register_command_option setup:static-content:deploy -x -s j -l jobs -d "Enable parallel processing using specified number of jobs (default: 4)"
|
||||
__fish_magento_register_command_option setup:static-content:deploy -f -l symlink-locale -d "Create symlinks for files of locales which are passed for deployment but have no customizations"
|
||||
|
||||
|
||||
#
|
||||
# setup:store-config:set
|
||||
#
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c mc -s a -l stickchars -d 'No graphic chars for line drawing'
|
||||
complete -c mc -s b -l nocolor -d 'Force black and white display'
|
||||
complete -c mc -s c -l color -d 'Force color mode'
|
||||
|
|
|
@ -18,7 +18,6 @@ function __fish_mix_using_command
|
|||
return 1
|
||||
end
|
||||
|
||||
|
||||
complete -f -c mix -n __fish_mix_needs_command -a app.start -d "Starts all registered apps"
|
||||
complete -f -c mix -n __fish_mix_needs_command -a archive -d "Lists all archives"
|
||||
complete -f -c mix -n __fish_mix_needs_command -a archive.build -d "Archives this project into a .ez file"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# Checks if we are using GNU tools
|
||||
if mkdir --version >/dev/null 2>/dev/null
|
||||
complete -c mkdir -l version -d 'Output version'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -x -c mosh -d Hostname -a "(__fish_complete_user_at_hosts)"
|
||||
|
||||
complete -x -c mosh -d User -a "
|
||||
|
|
|
@ -44,7 +44,6 @@ function __fish_complete_msf_platforms
|
|||
echo $__fish_msf_cached_platforms
|
||||
end
|
||||
|
||||
|
||||
complete -c msfvenom -f
|
||||
|
||||
complete -c msfvenom -s l -l list -xa 'payloads encoders nops platforms archs encrypt formats all' -d 'List all modules for type'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c msgfmt -s D -l directory -d "Add specified directory to list for input files search" -x -a "(__fish_complete_directories (commandline -ct))"
|
||||
|
||||
set -l cond "not __fish_contains_opt -s j java java2 csharp csharp-resource tcl qt"
|
||||
|
@ -12,7 +11,6 @@ complete -c msgfmt -n $cond -l qt -d "Generate a Qt .qm file"
|
|||
complete -c msgfmt -s o -l output-file -d "Write output to specified file" -r
|
||||
complete -c msgfmt -l strict -d "Enable strict Uniforum mode"
|
||||
|
||||
|
||||
set -l cond "__fish_contains_opt -s j java java2 csharp csharp-resource tcl"
|
||||
complete -c msgfmt -n $cond -s r -l resource -d "Resource name"
|
||||
complete -c msgfmt -n $cond -s l -l locale -d "Locale name, either language or language_COUNTRY"
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
# mvn jboss:start ejb:ejb
|
||||
# Attention: Multiple plugins can be given
|
||||
|
||||
|
||||
# Default lifecycles
|
||||
complete -c mvn -f -a 'pre-clean clean post-clean validate initialize generate-sources process-sources generate-resources process-resources compile process-classes generate-test-sources process-test-sources generate-test-resources process-test-resources test-compile process-test-classes testprepare-package package pre-integration-test integration-test post-integration-test verify install deploy pre-site site post-site site-deploy'
|
||||
|
||||
|
@ -102,12 +101,10 @@ complete -c mvn -o DperformRelease -d "Use release profile (create javadoc and a
|
|||
complete -c mvn -o Dmaven.surefire.debug -d "Run surefire tests with debugging on port 5005"
|
||||
complete -c mvn -o Dmaven.javadoc.skip -d "Skip Javadoc generation"
|
||||
|
||||
|
||||
#
|
||||
# Plugin configurations
|
||||
#
|
||||
|
||||
|
||||
# More plugins
|
||||
complete -c mvn -a "clean:clean" -d "Clean the build"
|
||||
complete -c mvn -a "clean:help" -d "Display help information on maven-clean-plugin"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
complete -c nice -a "(__fish_complete_subcommand -- -n --adjustment)" -d Command
|
||||
|
||||
complete -c nice -s n -l adjustment -n __fish_no_arguments -d "Add specified amount to niceness value" -x
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
function __fish_obnam_nosubcommand
|
||||
if __fish_seen_subcommand_from add-key backup client-keys clients diff dump-repo force-lock forget fsck \
|
||||
generations genids help help-all kdirstat list-errors list-formats list-keys list-toplevels \
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
if string match -q "OpenSSL*" (command openssl version)
|
||||
# This is real OpenSSL that has the list command.
|
||||
function __fish_openssl_subcommand_options --description "Print options for openssl subcommand"
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
|
||||
complete -c or -s h -l help -d 'Display help and exit'
|
||||
complete -c or -xa '(__fish_complete_subcommand)'
|
||||
|
|
|
@ -45,7 +45,6 @@ complete -c $progname -n $noopt -s u -l update -d "(AUR) Update foreign packages
|
|||
complete -c $progname -n "$noopt; and not __fish_contains_opt -s d download" -s d -l download -d "(AUR) Clone the packages' build files"
|
||||
complete -c $progname -n "$noopt; and __fish_contains_opt -s d download" -s d -l download -d "Download dependencies recursively"
|
||||
|
||||
|
||||
# General options
|
||||
# Only offer these once a command has been given so they get prominent display
|
||||
complete -c $progname -n $noopt -s b -l dbpath -d 'Alternative database location' -xa '(__fish_complete_directories)'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c pacman-key -s a -l add -d 'Add or update keys from <file>'
|
||||
complete -c pacman-key -l config -d 'Use an alternate config <file>'
|
||||
complete -c pacman-key -s d -l delete -d 'Remove the <keys> from the keyring'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c pbget -l abs -d 'Use the ABS tree'
|
||||
complete -c pbget -l arch -d 'Set the desired package architecture'
|
||||
complete -c pbget -l aur -d 'Search the AUR'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c pdftotext -s f -d "First page to convert"
|
||||
complete -c pdftotext -s l -d "Last page to convert"
|
||||
complete -c pdftotext -s r -d "Resolution, in DPI [75]"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
__fish_complete_pgrep pgrep
|
||||
complete -c pgrep -s d -r -d 'Output delimiter'
|
||||
complete -c pgrep -s l -d 'List the process name as well as the process ID'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
__fish_complete_pgrep pkill
|
||||
__fish_make_completion_signals
|
||||
for i in $__kill_signals
|
||||
|
|
|
@ -21,7 +21,6 @@ function __fish_prt_no_subcommand -d 'Test if prt-get has yet to be given the co
|
|||
return 0
|
||||
end
|
||||
|
||||
|
||||
# a function to verify if prt-get should have packages as potential completion
|
||||
function __fish_prt_use_package -d 'Test if prt-get should have packages as potential completion'
|
||||
for i in (commandline -xpc)
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c pydf -r -d 'Report colourised filesystem disk space usage'
|
||||
complete -c pydf -l help -d 'show this help message'
|
||||
complete -c pydf -s v -l version -d 'show version'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# Completions for qubes-gpg-client.
|
||||
# These completions are mostly taken from fish's completions for gpg.
|
||||
#
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
|
||||
complete -c random -s h -l help -d "Display help and exit"
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
|
||||
complete -c rcctl -xa 'check ls reload restart stop start disable enable' -n 'not __fish_seen_subcommand_from list check ls reload restart stop start enable disable'
|
||||
complete -c rcctl -n '__fish_seen_subcommand_from check reload restart stop start enable disable' -xa '(set -l files /etc/rc.d/*; string replace "/etc/rc.d/" "" -- $files)'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c readlink -s f -l canonicalize -d 'Canonicalize, follow symlinks, last can be missing'
|
||||
complete -c readlink -s e -l canonicalize-existing -d 'Canonicalize, follow symlinks, none can be missing'
|
||||
complete -c readlink -s m -l canonicalize-missing -d 'Canonicalize, follow symlinks, all can be missing'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c renice -s p -d "Force following parameters to be process ID's (The default)"
|
||||
complete -c renice -s g -d "Force following parameters to be interpreted as process group ID's"
|
||||
complete -c renice -s u -d "Force following parameters to be interpreted as user names"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c return -s h -l help -d "Display help and exit"
|
||||
complete -c return -x -a 0 -d "Return from function with normal exit status"
|
||||
complete -c return -x -a 1 -d "Return from function with abnormal exit status"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c root -s b -d 'Run in batch mode'
|
||||
complete -c root -s n -d 'Do not execute logon and logoff macros'
|
||||
complete -c root -s q -d 'Exit after processing commandline macro files'
|
||||
|
|
|
@ -53,18 +53,15 @@ complete -c rpm-ostree -n "not __fish_seen_subcommand_from $subcommands" -a upda
|
|||
# 2023-07-21: Any flag between rpm-ostree and usroverlay can cause Segmentation fault. https://github.com/coreos/rpm-ostree/issues/4508
|
||||
complete -c rpm-ostree -n "not __fish_seen_subcommand_from $subcommands -" -a usroverlay -d "Apply transient overlayfs to /usr"
|
||||
|
||||
|
||||
# apply-live
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from apply-live" -l target -d "Target provided commit"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from apply-live" -l reset -d "Reset back to booted commit"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from apply-live" -l allow-replacement -d "Allow replacement of packages/files"
|
||||
|
||||
|
||||
# cancel
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from cancel" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from cancel" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# cleanup
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from cleanup" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from cleanup" -l base -s b -d "Clear temporary files; will not change deployments"
|
||||
|
@ -74,7 +71,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from cleanup" -l repomd -s m -
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from cleanup" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from cleanup" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# compose
|
||||
# All compose subcommands
|
||||
# container-encapsulatedoes, image not have --quiet or --verison
|
||||
|
@ -189,7 +185,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from compose; and __fish_seen_
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from compose; and __fish_seen_subcommand_from tree" -l parent -d "=REV Commit with specific parent revision"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from compose; and __fish_seen_subcommand_from tree" -r -F
|
||||
|
||||
|
||||
# db
|
||||
set -l db_subcommands diff list version
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from db; and not __fish_seen_subcommand_from $db_subcommands" -a diff -d "Show package changes between two commits"
|
||||
|
@ -211,7 +206,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from db; and __fish_seen_subco
|
|||
# db version
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from db; and __fish_seen_subcommand_from version" -l repo -s r -r -d "=REPO Path to OSTree repo"
|
||||
|
||||
|
||||
# deploy
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from deploy" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from deploy" -l reboot -s r -d "Reboot after operation complete"
|
||||
|
@ -228,7 +222,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from deploy" -l peer -d "Force
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from deploy" -l install -d "=PKG Overlay additional package"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from deploy" -l uninstall -d "=PKG Remove overlayed additional package"
|
||||
|
||||
|
||||
# initramfs
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs" -l enable -d "Enable regenerating initramfs locally using dracut"
|
||||
|
@ -238,7 +231,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs" -l reboot -s r
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# initramfs-etc
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs-etc" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs-etc" -l force-sync -d "Deploy a new tree with the latest tracked /etc files"
|
||||
|
@ -250,7 +242,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs-etc" -l unchang
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs-etc" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from initramfs-etc" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# install, there is also compose install
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from install; and not __fish_seen_subcommand_from compose" -l uninstall -d "=PKG Remove overlayed additional package"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from install; and not __fish_seen_subcommand_from compose" -l cache-only -s C -d "Skip downloading latest ostree/RPM data"
|
||||
|
@ -270,7 +261,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from install; and not __fish_s
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from install; and not __fish_seen_subcommand_from compose" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from install; and not __fish_seen_subcommand_from compose" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# kargs
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from kargs" -l os -d "=OSNAME Operation on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from kargs" -l deploy-index -d "=INDEX Modify kernel args of a deployment by index"
|
||||
|
@ -286,7 +276,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from kargs" -l editor -d "Use
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from kargs" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from kargs" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# override
|
||||
set -l override_subcommands remove replace reset
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from override; and not __fish_seen_subcommand_from $override_subcommands" -a remove -d "Remove packages from the base layer"
|
||||
|
@ -326,7 +315,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from override; and __fish_seen
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from override; and __fish_seen_subcommand_from reset" -l install -d "=PKG Overlay additional package"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from override; and __fish_seen_subcommand_from reset" -l uninstall -d "=PKG Remove overlayed package"
|
||||
|
||||
|
||||
# rebase
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from rebase" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from rebase" -l branch -s b -x -d "=BRANCH Rebase to branch BRANCH"
|
||||
|
@ -345,19 +333,16 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from rebase" -l peer -d "Force
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from rebase" -l install -d "=PKG Overlay additional package"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from rebase" -l uninstall -d "=PKG Remove overlayed package"
|
||||
|
||||
|
||||
# refresh-md
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from refresh-md" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from refresh-md" -l force -d "Expire current cache"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from refresh-md" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from refresh-md" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# reload
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from reload" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from refresh-md" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# reset, there is also override reset
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from reset; and not __fish_seen_subcommand_from override" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from reset; and not __fish_seen_subcommand_from override" -l reboot -s r -d "Reboot after transaction"
|
||||
|
@ -369,7 +354,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from reset; and not __fish_see
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from reset; and not __fish_seen_subcommand_from override" -l install -d "=PKG Overlay additional package"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from reset; and not __fish_seen_subcommand_from override" -l uninstall -d "=PKG Remove overlayed package"
|
||||
|
||||
|
||||
# rollback
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from rollback" -l reboot -s r -d "Reboot after transaction"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from rollback" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
|
@ -385,8 +369,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from status" -l pending-exit-7
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from status" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from status" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
|
||||
# uninstall and remove, there is also override remove
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from uninstall remove; and not __fish_seen_subcommand_from override" -l install -d "=PKG Overlay additional package"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from uninstall remove; and not __fish_seen_subcommand_from override" -l all -d "Remove all overlayed packages"
|
||||
|
@ -403,7 +385,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from uninstall remove; and not
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from uninstall remove; and not __fish_seen_subcommand_from override" -l sysroot -r -d "=SYSROOT Use system root"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from uninstall remove; and not __fish_seen_subcommand_from override" -l peer -d "Force peer-to-peer connection"
|
||||
|
||||
|
||||
# upgrade
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from update upgrade" -l os -d "=OSNAME Operate on provided OSNAME"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from update upgrade" -l reboot -s r -d "Reboot after operation"
|
||||
|
@ -419,7 +400,6 @@ complete -c rpm-ostree -n "__fish_seen_subcommand_from update upgrade" -l peer -
|
|||
complete -c rpm-ostree -n "__fish_seen_subcommand_from update upgrade" -l install -d "=PKG Overlay additional package"
|
||||
complete -c rpm-ostree -n "__fish_seen_subcommand_from update upgrade" -l uninstall -d "=PKG Remove overlayed package"
|
||||
|
||||
|
||||
# usroverlay
|
||||
# Usage: rpm-ostree usroverlay
|
||||
#
|
||||
|
|
|
@ -36,7 +36,6 @@ complete -c sbt -f -a '(string split "\n" "
|
|||
complete -c sbt -f -n 'test (count (commandline -cpx)) = 1 ' -a new -d 'Create a new sbt project from the given template'
|
||||
complete -c sbt -f -n 'test (count (commandline -cpx)) = 1 ' -a client -d 'Connect to a server with an interactive sbt prompt'
|
||||
|
||||
|
||||
###########
|
||||
# OPTIONS #
|
||||
###########
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Load completions shared by various ssh tools like ssh, scp and sftp.
|
||||
__fish_complete_ssh scp
|
||||
|
||||
|
||||
# Helper functions to simplify the completions.
|
||||
function __scp2ssh_port_number
|
||||
# There is a silly inconsistency between the ssh and scp commands regarding the short flag name
|
||||
|
|
|
@ -46,7 +46,6 @@ function __fish_complete_screen -d "Print a list of running screen sessions"
|
|||
string join \n (__fish_complete_screen_attached) (__fish_complete_screen_detached)
|
||||
end
|
||||
|
||||
|
||||
# detect socket directory for mac users
|
||||
__fish_detect_screen_socket_dir
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c scrot -s h -l help -d 'Display help and exit'
|
||||
complete -c scrot -s v -l version -d 'Display version information and exit'
|
||||
complete -c scrot -s b -l border -d 'When selecting a window, grab wm border too'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c sort -s b -l ignore-leading-blanks -d "Ignore leading blanks"
|
||||
complete -c sort -s d -l dictionary-order -d "Consider only blanks and alphanumerics"
|
||||
complete -c sort -s f -l ignore-case -d "Ignore case"
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
# A part of the runit init system
|
||||
# Author: Leonardo da Rosa Eugênio <lelgenio@disroot.org>
|
||||
|
||||
|
||||
set -l commands \
|
||||
status up down once s u d o pause cont hup \
|
||||
alarm interrupt quit 1 2 term kill exit p c h \
|
||||
|
@ -26,11 +25,9 @@ end
|
|||
|
||||
complete -f -c sv -a "(__fish_complete_sv_list_services)" -n "__fish_seen_subcommand_from $commands"
|
||||
|
||||
|
||||
complete -fc sv -s v -d "Report status for up, down, term, once, cont, and exit"
|
||||
complete -fc sv -s w -d "Override the default timeout to report status"
|
||||
|
||||
|
||||
set -l no_comm "not __fish_seen_subcommand_from $commands"
|
||||
|
||||
complete -kfc sv -n $no_comm -a check -d "Check if the service is in it's requested state"
|
||||
|
|
|
@ -113,7 +113,6 @@ complete -c tar -l rmt-command -r -d "Use COMMAND instead of rmt"
|
|||
complete -c tar -l rsh-command -r -d "Use COMMAND instead of rsh"
|
||||
complete -c tar -l volno-file -r -d "keep track of which volume of a multi-volume archive it is working in FILE"
|
||||
|
||||
|
||||
complete -c tar -s f -l file -r -d "Archive file"
|
||||
complete -c tar -s f -l file -r -d "Archive file"
|
||||
complete -c tar -s f -l file -r -d "Archive file"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c transmission-remote -s a -l add -d 'Add torrents to transmission'
|
||||
complete -c transmission-remote -s b -l debug -d 'Enable debugging mode'
|
||||
complete -c transmission-remote -o as -l alt-speed -d 'Use the alternate Limits'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c trap -s l -l list-signals -d 'Display names of all signals'
|
||||
complete -c trap -s p -l print -d 'Display all currently defined trap handlers'
|
||||
complete -c trap -s h -l help -d 'Display help and exit'
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c type -s h -l help -d "Display help and exit"
|
||||
complete -c type -s a -l all -d "Print all possible definitions of the specified name"
|
||||
complete -c type -s f -l no-functions -d "Suppress function and builtin lookup"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
complete -c ulimit -s S -l soft -d "Set or get soft limit"
|
||||
complete -c ulimit -s H -l hard -d "Set or get hard limit"
|
||||
|
||||
|
|
|
@ -48,7 +48,6 @@ complete -xc valgrind -l db-attach -d "Start debugger on error" -a "yes no"
|
|||
complete -rc valgrind -l db-command -d "Debugger command"
|
||||
complete -xc valgrind -l input-fd -d "File descriptor for input" -a "0 1 2 3 4 5 6 7 8 9"
|
||||
|
||||
|
||||
# Memcheck-specific options
|
||||
complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l leak-check -d "Check for memory leaks" -a "no\tDon\'t\ check\ for\ memory\ leaks summary\t'Show a leak summary' full\t'Describe memory leaks in detail'"
|
||||
complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l show-reachable -d "Show reachable leaked memory" -a "yes\t'Show reachable leaked memory' no\t'Do not show reachable leaked memory'"
|
||||
|
@ -57,7 +56,6 @@ complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l freelist-vol -d "Set
|
|||
complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l partial-loads-ok -d 'How to handle loads of words that are partially addressible' -a 'yes\t"Do not emit errors on partial loads" no\t"Emit errors on partial loads"'
|
||||
complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l avoid-strlen-errors -d 'Whether to skip error reporting for the strlen function' -a 'yes no'
|
||||
|
||||
|
||||
# Addrcheck-specific options
|
||||
complete -n "__fish_valgrind_skin addrcheck" -xc valgrind -l leak-check -d "Check for memory leaks" -a "no\t'Do not check for memory leaks' summary\t'Show a leak summary' full\t'Describe memory leaks in detail'"
|
||||
complete -n "__fish_valgrind_skin addrcheck" -xc valgrind -l show-reachable -d "Show reachable leaked memory" -a "yes\t'Show reachable leaked memory' no\t'Do not show reachable leaked memory'"
|
||||
|
@ -71,7 +69,6 @@ complete -n "__fish_valgrind_skin cachegrind" -xc valgrind -l I1 -d "Type of L1
|
|||
complete -n "__fish_valgrind_skin cachegrind" -xc valgrind -l D1 -d "Type of L1 data cache"
|
||||
complete -n "__fish_valgrind_skin cachegrind" -xc valgrind -l L2 -d "Type of L2 cache"
|
||||
|
||||
|
||||
function __fish_print_function_prototypes -d "Prints the names of all function prototypes found in the headers in the current directory"
|
||||
set -l headers *.h *.hh *.hpp *.hxx
|
||||
if set -q headers[1]
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
# Completion for vim-addons
|
||||
# =========================
|
||||
#
|
||||
|
@ -40,7 +39,6 @@ complete -c vim-addons -n "contains files (commandline -pxc)" -a "(vim-addons li
|
|||
complete -c vim-addons -n __fish_vim-addons_subcommand -a show -x -d "displays detailed information about the specified addons"
|
||||
complete -c vim-addons -n "contains show (commandline -pxc)" -a "(vim-addons list)" -x
|
||||
|
||||
|
||||
# Options
|
||||
# --------
|
||||
complete -c vim-addons -s h -l help -d "show this usage message and exit"
|
||||
|
|
|
@ -94,7 +94,6 @@ function __fish_virsh_get_networks
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
# virsh
|
||||
complete -c virsh -n "not __fish_seen_subcommand_from $cmds" -x
|
||||
complete -c virsh -n "not __fish_seen_subcommand_from $cmds" -l connect -s -x -d "Specify hypervisor connection URI"
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
function __fish_get_vmctl_vms
|
||||
for line in (vmctl status | string match -e -v "MAXMEM")
|
||||
set -l a (string split " " $line)
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
#completions for wpa_cli
|
||||
complete -x -c wpa_cli -a status -d 'get current WPA/EAPOL/EAP status'
|
||||
complete -x -c wpa_cli -a mib -d 'get MIB variables (dot1x, dot11)'
|
||||
|
|
|
@ -23,7 +23,6 @@ function __fish_complete_wvdial_peers --description 'Complete wvdial peers' --ar
|
|||
string match -r '\[Dialer' <$file | string replace -r '\[Dialer (.+)\]' '$1'
|
||||
end | path sort -u | string match -v Defaults
|
||||
|
||||
|
||||
end
|
||||
|
||||
complete -c wvdial -xa "(__fish_complete_wvdial_peers)" -d "wvdial connections"
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# completion for xterm
|
||||
|
||||
|
||||
complete -c xterm -n 'string match "+*" -- (commandline -ct)' -a +ah -d 'Never highlight the text cursor'
|
||||
complete -c xterm -n 'string match "+*" -- (commandline -ct)' -a +ai -d 'Enable active icon support'
|
||||
complete -c xterm -n 'string match "+*" -- (commandline -ct)' -a +aw -d 'Disallow auto wraparound'
|
||||
|
|
|
@ -4,7 +4,6 @@ set -l runtime userparameter_reload \
|
|||
log_level_decrease \
|
||||
log_level_decrease=
|
||||
|
||||
|
||||
function __fish_string_in_command -a ch
|
||||
string match -rq $ch (commandline)
|
||||
end
|
||||
|
|
|
@ -7,7 +7,6 @@ complete -c zabbix_get -f -s k -l key -d "Specify key of item to retrieve value
|
|||
complete -c zabbix_get -f -s h -l help -d "Display this help and exit."
|
||||
complete -c zabbix_get -f -s V -l version -d "Output version information and exit."
|
||||
|
||||
|
||||
# TLS
|
||||
complete -c zabbix_get -f -r -l tls-connect -a "unencrypted psk cert" -d "How to connect to agent."
|
||||
complete -c zabbix_get -l tls-ca-file -F -d "Full path of a file with the top-level CA(s)."
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user