Do gettext translation of descriptions just-in-time internally in fish

darcs-hash:20060301165347-ac50b-3df9feec60dd9860e0988396d10b550a501f6802.gz
This commit is contained in:
axel 2006-03-02 02:53:47 +10:00
parent 7726cffdab
commit c2f6c6c1d2
151 changed files with 2435 additions and 2434 deletions

View file

@ -268,8 +268,8 @@ doc.h:$(BUILTIN_DOC_SRC) $(CMD_DOC_SRC) doc_src/doc.hdr
# Create a template translation object
messages.pot: *.c *.h etc/*.in share/fish share/completions/*.fish share/functions/*.fish seq
if test $(HAVE_GETTEXT) = 1;then \
xgettext -k_ -kN_ -kcomplete_desc *.c *.h -o messages.pot; \
if ! xgettext -j -k_ -LShell etc/*.in share/fish share/completions/*.fish share/functions/*.fish seq -o messages.pot; then \
xgettext -k_ -kN_ *.c *.h -o messages.pot; \
if ! xgettext -j -k_ -kN_ -LShell etc/*.in share/fish share/completions/*.fish share/functions/*.fish seq -o messages.pot; then \
echo "Your xgettext version is too old to build the messages.pot file"\
rm messages.pot\
false;\

View file

@ -1560,7 +1560,7 @@ static int complete_param( wchar_t *cmd_orig,
{
use_common &= ((o->result_mode & NO_COMMON )==0);
use_files &= ((o->result_mode & NO_FILES )==0);
complete_from_args( arg, o->comp, o->desc, comp_out );
complete_from_args( arg, o->comp, _(o->desc), comp_out );
}
}
@ -1584,7 +1584,7 @@ static int complete_param( wchar_t *cmd_orig,
found_old = 1;
use_common &= ((o->result_mode & NO_COMMON )==0);
use_files &= ((o->result_mode & NO_FILES )==0);
complete_from_args( str, o->comp, o->desc, comp_out );
complete_from_args( str, o->comp, _(o->desc), comp_out );
}
}
}
@ -1610,7 +1610,7 @@ static int complete_param( wchar_t *cmd_orig,
{
use_common &= ((o->result_mode & NO_COMMON )==0);
use_files &= ((o->result_mode & NO_FILES )==0);
complete_from_args( str, o->comp, o->desc, comp_out );
complete_from_args( str, o->comp, _(o->desc), comp_out );
}
}
@ -1634,7 +1634,7 @@ static int complete_param( wchar_t *cmd_orig,
if( (o->short_opt == L'\0' ) && (o->long_opt[0]==L'\0'))
{
use_files &= ((o->result_mode & NO_FILES )==0);
complete_from_args( str, o->comp, o->desc, comp_out );
complete_from_args( str, o->comp, _(o->desc), comp_out );
}
if( wcslen(str) > 0 )
@ -1645,15 +1645,16 @@ static int complete_param( wchar_t *cmd_orig,
if( o->short_opt != L'\0' &&
short_ok( str, o->short_opt, i->short_opt_str ) )
{
const wchar_t *desc = _(o->desc );
wchar_t *next_opt =
malloc( sizeof(wchar_t)*(3 + wcslen(o->desc)));
malloc( sizeof(wchar_t)*(3 + wcslen(desc)));
if( !next_opt )
die_mem();
next_opt[0]=o->short_opt;
next_opt[1]=COMPLETE_SEP;
next_opt[2]=L'\0';
wcscat( next_opt, o->desc );
wcscat( next_opt, desc );
al_push( comp_out, next_opt );
}
@ -1681,7 +1682,7 @@ static int complete_param( wchar_t *cmd_orig,
al_push( comp_out,
wcsdupcat2( &((wchar_t *)whole_opt.buff)[wcslen(str)],
COMPLETE_SEP_STR,
o->desc,
_(o->desc),
(void *)0) );
}
@ -1691,7 +1692,7 @@ static int complete_param( wchar_t *cmd_orig,
wcsdupcat2( &((wchar_t *)whole_opt.buff)[wcslen(str)],
L"=",
COMPLETE_SEP_STR,
o->desc,
_(o->desc),
(void *)0) );
}
}
@ -2119,7 +2120,7 @@ void complete_print( string_buffer_t *out )
append_switch( out,
L"description",
o->desc );
_(o->desc) );
append_switch( out,
L"arguments",

View file

@ -16,6 +16,7 @@
#include "function.h"
#include "proc.h"
#include "translate.h"
#include "parser.h"
#include "common.h"
#include "intern.h"
@ -230,7 +231,7 @@ const wchar_t *function_get_desc( const wchar_t *argv )
if( data == 0 )
return 0;
return data->desc;
return _(data->desc);
}
void function_set_desc( const wchar_t *name, const wchar_t *desc )

View file

@ -1,8 +1,8 @@
#apm
complete -f -c apm -s V -l version -d (_ "Display version and exit")
complete -f -c apm -s v -l verbose -d (_ "Print APM info")
complete -f -c apm -s m -l minutes -d (_ "Print time remaining")
complete -f -c apm -s M -l monitor -d (_ "Monitor status info")
complete -f -c apm -s S -l standby -d (_ "Request APM standby mode")
complete -f -c apm -s s -l suspend -d (_ "Request APM suspend mode")
complete -f -c apm -s d -l debug -d (_ "APM status debugging info")
complete -f -c apm -s V -l version -d (N_ "Display version and exit")
complete -f -c apm -s v -l verbose -d (N_ "Print APM info")
complete -f -c apm -s m -l minutes -d (N_ "Print time remaining")
complete -f -c apm -s M -l monitor -d (N_ "Monitor status info")
complete -f -c apm -s S -l standby -d (N_ "Request APM standby mode")
complete -f -c apm -s s -l suspend -d (N_ "Request APM suspend mode")
complete -f -c apm -s d -l debug -d (N_ "APM status debugging info")

View file

@ -6,16 +6,16 @@ function __fish_complete_apropos
end
end
complete -xc apropos -a '(__fish_complete_apropos)' -d (_ "whatis entry")
complete -xc apropos -a '(__fish_complete_apropos)' -d (N_ "whatis entry")
complete -c apropos -s h -l help -d (_ "Display help and exit")
complete -f -c apropos -s d -l debug -d (_ "Print debugging info")
complete -f -c apropos -s v -l verbose -d (_ "Verbose mode")
complete -f -c apropos -s r -l regex -d (_ "Keyword as regex")
complete -f -c apropos -s w -l wildcard -d (_ "Keyword as wildcards")
complete -f -c apropos -s e -l exact -d (_ "Keyword as exactly match")
complete -x -c apropos -s m -l system -d (_ "Search for other system")
complete -x -c apropos -s M -l manpath -a '(echo $MANPATH)' -d (_ "Specify man path")
complete -x -c apropos -s C -l config-file -d (_ "Specify a configuration file")
complete -f -c apropos -s V -l version -d (_ "Display version and exit")
complete -c apropos -s h -l help -d (N_ "Display help and exit")
complete -f -c apropos -s d -l debug -d (N_ "Print debugging info")
complete -f -c apropos -s v -l verbose -d (N_ "Verbose mode")
complete -f -c apropos -s r -l regex -d (N_ "Keyword as regex")
complete -f -c apropos -s w -l wildcard -d (N_ "Keyword as wildcards")
complete -f -c apropos -s e -l exact -d (N_ "Keyword as exactly match")
complete -x -c apropos -s m -l system -d (N_ "Search for other system")
complete -x -c apropos -s M -l manpath -a '(echo $MANPATH)' -d (N_ "Specify man path")
complete -x -c apropos -s C -l config-file -d (N_ "Specify a configuration file")
complete -f -c apropos -s V -l version -d (N_ "Display version and exit")

View file

@ -1,29 +1,29 @@
#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")
complete -f -c apt-build -a upgrade -d (_ "Upgrade packages")
complete -f -c apt-bulid -a world -d (_ "Rebuild your system")
complete -x -c apt-build -a install -d (_ "Build and install a new package")
complete -x -c apt-build -a source -d (_ "Download and extract a source")
complete -x -c apt-build -a info -d (_ "Info on a package")
complete -x -c apt-build -a remove -d (_ "Remove packages")
complete -x -c apt-build -a clean-build -d (_ "Erase built packages")
complete -x -c apt-build -a build-source -d (_ "Build source without install")
complete -x -c apt-build -a clean-sources -d (_ "Clean source directories")
complete -x -c apt-build -a update-source -d (_ "Update source and rebuild")
complete -x -c apt-build -a update-repository -d (_ "Update the repository")
complete -f -c apt-build -l nowrapper -d (_ "Do not use gcc wrapper")
complete -f -c apt-build -l remove-builddep -d (_ "Remove build-dep")
complete -f -c apt-build -l no-source -d (_ "Do not download source")
complete -f -c apt-build -l build-dir -d (_ "Specify build-dir")
complete -f -c apt-build -l rebuild -d (_ "Rebuild a package")
complete -f -c apt-build -l reinstall -d (_ "Rebuild and install an installed package")
complete -r -f -c apt-build -l build-command -d (_ "Use <command> to build")
complete -r -c apt-build -l patch -d (_ "Apply <file> patch")
complete -c apt-build -s p -l patch-strip -d (_ "Prefix to strip on patch")
complete -c apt-build -s y -l yes -d (_ "Assume yes to all questions")
complete -c apt-build -l purge -d (_ "Use purge instead of remove")
complete -c apt-build -l noupdate -d (_ "Do not run update")
complete -r -c apt-build -l source-list -d (_ "Specify sources.list file")
complete -f -c apt-build -s v -l version -d (_ "Display version and exit")
complete -c apt-build -l help -d (N_ "Display help and exit")
complete -f -c apt-build -a update -d (N_ "Update list of packages")
complete -f -c apt-build -a upgrade -d (N_ "Upgrade packages")
complete -f -c apt-bulid -a world -d (N_ "Rebuild your system")
complete -x -c apt-build -a install -d (N_ "Build and install a new package")
complete -x -c apt-build -a source -d (N_ "Download and extract a source")
complete -x -c apt-build -a info -d (N_ "Info on a package")
complete -x -c apt-build -a remove -d (N_ "Remove packages")
complete -x -c apt-build -a clean-build -d (N_ "Erase built packages")
complete -x -c apt-build -a build-source -d (N_ "Build source without install")
complete -x -c apt-build -a clean-sources -d (N_ "Clean source directories")
complete -x -c apt-build -a update-source -d (N_ "Update source and rebuild")
complete -x -c apt-build -a update-repository -d (N_ "Update the repository")
complete -f -c apt-build -l nowrapper -d (N_ "Do not use gcc wrapper")
complete -f -c apt-build -l remove-builddep -d (N_ "Remove build-dep")
complete -f -c apt-build -l no-source -d (N_ "Do not download source")
complete -f -c apt-build -l build-dir -d (N_ "Specify build-dir")
complete -f -c apt-build -l rebuild -d (N_ "Rebuild a package")
complete -f -c apt-build -l reinstall -d (N_ "Rebuild and install an installed package")
complete -r -f -c apt-build -l build-command -d (N_ "Use <command> to build")
complete -r -c apt-build -l patch -d (N_ "Apply <file> patch")
complete -c apt-build -s p -l patch-strip -d (N_ "Prefix to strip on patch")
complete -c apt-build -s y -l yes -d (N_ "Assume yes to all questions")
complete -c apt-build -l purge -d (N_ "Use purge instead of remove")
complete -c apt-build -l noupdate -d (N_ "Do not run update")
complete -r -c apt-build -l source-list -d (N_ "Specify sources.list file")
complete -f -c apt-build -s v -l version -d (N_ "Display version and exit")

View file

@ -1,31 +1,31 @@
#apt-cache
complete -c apt-cache -s h -l help -d (_ "Display help and exit")
complete -f -c apt-cache -a gencaches -d (_ "Build apt cache")
complete -x -c apt-cache -a showpkg -d (_ "Show package info")
complete -f -c apt-cache -a stats -d (_ "Show cache statistics")
complete -x -c apt-cache -a showsrc -d (_ "Show source package")
complete -f -c apt-cache -a dump -d (_ "Show packages in cache")
complete -f -c apt-cache -a dumpavail -d (_ "Print available list")
complete -f -c apt-cache -a unmet -d (_ "List unmet dependencies in cache")
complete -x -c apt-cache -a show -d (_ "Display package record")
complete -x -c apt-cache -a search -d (_ "Search packagename by REGEX")
complete -c apt-cache -l full -a search -d (_ "Search full package name")
complete -x -c apt-cache -l names-only -a search -d (_ "Search packagename only")
complete -x -c apt-cache -a depends -d (_ "List dependencies for the package")
complete -x -c apt-cache -a rdepends -d (_ "List reverse dependencies for the package")
complete -x -c apt-cache -a pkgnames -d (_ "Print package name by prefix")
complete -x -c apt-cache -a dotty -d (_ "Generate dotty output for packages")
complete -x -c apt-cache -a policy -d (_ "Debug preferences file")
complete -r -c apt-cache -s p -l pkg-cache -d (_ "Select file to store package cache")
complete -r -c apt-cache -s s -l src-cache -d (_ "Select file to store source cache")
complete -f -c apt-cache -s q -l quiet -d (_ "Quiet mode")
complete -f -c apt-cache -s i -l important -d (_ "Print important dependencies")
complete -f -c apt-cache -s a -l all-versions -d (_ "Print full records")
complete -f -c apt-cache -s g -l generate -d (_ "Auto-gen package cache")
complete -f -c apt-cache -l all-names -d (_ "Print all names")
complete -f -c apt-cache -l recurse -d (_ "Dep and rdep recursive")
complete -f -c apt-cache -l installed -d (_ "Limit to installed")
complete -f -c apt-cache -s v -l version -d (_ "Display version and exit")
complete -r -c apt-cache -s c -l config-file -d (_ "Specify config file")
complete -x -c apt-cache -s o -l option -d (_ "Specify options")
complete -c apt-cache -s h -l help -d (N_ "Display help and exit")
complete -f -c apt-cache -a gencaches -d (N_ "Build apt cache")
complete -x -c apt-cache -a showpkg -d (N_ "Show package info")
complete -f -c apt-cache -a stats -d (N_ "Show cache statistics")
complete -x -c apt-cache -a showsrc -d (N_ "Show source package")
complete -f -c apt-cache -a dump -d (N_ "Show packages in cache")
complete -f -c apt-cache -a dumpavail -d (N_ "Print available list")
complete -f -c apt-cache -a unmet -d (N_ "List unmet dependencies in cache")
complete -x -c apt-cache -a show -d (N_ "Display package record")
complete -x -c apt-cache -a search -d (N_ "Search packagename by REGEX")
complete -c apt-cache -l full -a search -d (N_ "Search full package name")
complete -x -c apt-cache -l names-only -a search -d (N_ "Search packagename only")
complete -x -c apt-cache -a depends -d (N_ "List dependencies for the package")
complete -x -c apt-cache -a rdepends -d (N_ "List reverse dependencies for the package")
complete -x -c apt-cache -a pkgnames -d (N_ "Print package name by prefix")
complete -x -c apt-cache -a dotty -d (N_ "Generate dotty output for packages")
complete -x -c apt-cache -a policy -d (N_ "Debug preferences file")
complete -r -c apt-cache -s p -l pkg-cache -d (N_ "Select file to store package cache")
complete -r -c apt-cache -s s -l src-cache -d (N_ "Select file to store source cache")
complete -f -c apt-cache -s q -l quiet -d (N_ "Quiet mode")
complete -f -c apt-cache -s i -l important -d (N_ "Print important dependencies")
complete -f -c apt-cache -s a -l all-versions -d (N_ "Print full records")
complete -f -c apt-cache -s g -l generate -d (N_ "Auto-gen package cache")
complete -f -c apt-cache -l all-names -d (N_ "Print all names")
complete -f -c apt-cache -l recurse -d (N_ "Dep and rdep recursive")
complete -f -c apt-cache -l installed -d (N_ "Limit to installed")
complete -f -c apt-cache -s v -l version -d (N_ "Display version and exit")
complete -r -c apt-cache -s c -l config-file -d (N_ "Specify config file")
complete -x -c apt-cache -s o -l option -d (N_ "Specify options")

View file

@ -1,13 +1,13 @@
#apt-cdrom
complete -c apt-cdrom -s h -l help -d (_ "Display help and exit")
complete -r -c apt-cdrom -a add -d (_ "Add new disc to source list")
complete -x -c apt-cdrom -a ident -d (_ "Report identity of disc")
complete -r -c apt-cdrom -s d -l cdrom -d (_ "Mount point")
complete -f -c apt-cdrom -s r -l rename -d (_ "Rename a disc")
complete -f -c apt-cdrom -s m -l no-mount -d (_ "No mounting")
complete -f -c apt-cdrom -s f -l fast -d (_ "Fast copy")
complete -f -c apt-cdrom -s a -l thorough -d (_ "Thorough package scan")
complete -f -c apt-cdrom -s n -l no-act -d (_ "No changes")
complete -f -c apt-cdrom -s v -l version -d (_ "Display version and exit")
complete -r -c apt-cdrom -s c -l config-file -d (_ "Specify config file")
complete -x -c apt-cdrom -s o -l option -d (_ "Specify options")
complete -c apt-cdrom -s h -l help -d (N_ "Display help and exit")
complete -r -c apt-cdrom -a add -d (N_ "Add new disc to source list")
complete -x -c apt-cdrom -a ident -d (N_ "Report identity of disc")
complete -r -c apt-cdrom -s d -l cdrom -d (N_ "Mount point")
complete -f -c apt-cdrom -s r -l rename -d (N_ "Rename a disc")
complete -f -c apt-cdrom -s m -l no-mount -d (N_ "No mounting")
complete -f -c apt-cdrom -s f -l fast -d (N_ "Fast copy")
complete -f -c apt-cdrom -s a -l thorough -d (N_ "Thorough package scan")
complete -f -c apt-cdrom -s n -l no-act -d (N_ "No changes")
complete -f -c apt-cdrom -s v -l version -d (N_ "Display version and exit")
complete -r -c apt-cdrom -s c -l config-file -d (N_ "Specify config file")
complete -x -c apt-cdrom -s o -l option -d (N_ "Specify options")

View file

@ -1,7 +1,7 @@
#apt-config
complete -c apt-config -s h -l help -d (_ "Display help and exit")
complete -c apt-config -a shell -d (_ "Access config file from shell")
complete -f -c apt-config -a dump -d (_ "Dump contents of config file")
complete -f -c apt-config -s v -l version -d (_ "Display version and exit")
complete -r -c apt-config -s c -l config-file -d (_ "Specify config file")
complete -x -c apt-config -s o -l option -d (_ "Specify options")
complete -c apt-config -s h -l help -d (N_ "Display help and exit")
complete -c apt-config -a shell -d (N_ "Access config file from shell")
complete -f -c apt-config -a dump -d (N_ "Dump contents of config file")
complete -f -c apt-config -s v -l version -d (N_ "Display version and exit")
complete -r -c apt-config -s c -l config-file -d (N_ "Specify config file")
complete -x -c apt-config -s o -l option -d (N_ "Specify options")

View file

@ -1,7 +1,7 @@
#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")
complete -r -c apt-extracttemplates -s c -d (_ "Specifiy config file")
complete -r -c apt-extracttemplates -s o -d (_ "Specify options")
complete -c apt-extracttemplates -s h -l help -d (N_ "Display help and exit")
complete -r -c apt-extracttemplates -s t -d (N_ "Set temp dir")
complete -r -c apt-extracttemplates -s c -d (N_ "Specifiy config file")
complete -r -c apt-extracttemplates -s o -d (N_ "Specify options")

View file

@ -1,17 +1,17 @@
#apt-file
complete -c apt-file -s h -l help -d (_ "Display help and exit")
complete -x -c apt-file -a update -d (_ "Resync package contents from source")
complete -r -c apt-file -a search -d (_ "Search package containing pattern")
complete -r -c apt-file -a list -d (_ "List contents of a package matching pattern")
complete -x -c apt-file -a purge -d (_ "Remove all gz files from cache")
complete -r -c apt-file -s c -l cache -d (_ "Set cache dir")
complete -f -c apt-file -s v -l verbose -d (_ "Verbose mode")
complete -c apt-file -s d -l cdrom-mount -d (_ "Use cdrom-mount-point")
complete -f -c apt-file -s i -l ignore-case -d (_ "Do not expand pattern")
complete -f -c apt-file -s x -l regexp -d (_ "Pattern is regexp")
complete -f -c apt-file -s V -l version -d (_ "Display version and exit")
complete -f -c apt-file -s a -l architecture -d (_ "Set arch")
complete -r -c apt-file -s s -l sources-list -a "(ls /etc/apt)" -d (_ "Set sources.list file")
complete -f -c apt-file -s l -l package-only -d (_ "Only display package name")
complete -f -c apt-file -s F -l fixed-string -d (_ "Do not expand pattern")
complete -f -c apt-file -s y -l dummy -d (_ "Run in dummy mode")
complete -c apt-file -s h -l help -d (N_ "Display help and exit")
complete -x -c apt-file -a update -d (N_ "Resync package contents from source")
complete -r -c apt-file -a search -d (N_ "Search package containing pattern")
complete -r -c apt-file -a list -d (N_ "List contents of a package matching pattern")
complete -x -c apt-file -a purge -d (N_ "Remove all gz files from cache")
complete -r -c apt-file -s c -l cache -d (N_ "Set cache dir")
complete -f -c apt-file -s v -l verbose -d (N_ "Verbose mode")
complete -c apt-file -s d -l cdrom-mount -d (N_ "Use cdrom-mount-point")
complete -f -c apt-file -s i -l ignore-case -d (N_ "Do not expand pattern")
complete -f -c apt-file -s x -l regexp -d (N_ "Pattern is regexp")
complete -f -c apt-file -s V -l version -d (N_ "Display version and exit")
complete -f -c apt-file -s a -l architecture -d (N_ "Set arch")
complete -r -c apt-file -s s -l sources-list -a "(ls /etc/apt)" -d (N_ "Set sources.list file")
complete -f -c apt-file -s l -l package-only -d (N_ "Only display package name")
complete -f -c apt-file -s F -l fixed-string -d (N_ "Do not expand pattern")
complete -f -c apt-file -s y -l dummy -d (N_ "Run in dummy mode")

View file

@ -1,17 +1,17 @@
#apt-ftparchive
complete -c apt-ftparchive -s h -l help -d (_ "Display help and exit")
complete -f -c apt-ftparchive -a packages -d (_ "Generate package from source")
complete -f -c apt-ftparchive -a sources -d (_ "Generate source index file")
complete -f -c apt-ftparchive -a contents -d (_ "Generate contents file")
complete -f -c apt-ftparchive -a release -d (_ "Generate release file")
complete -f -c apt-ftparchive -a clean -d (_ "Remove records")
complete -f -c apt-ftparchive -l md5 -d (_ "Generate MD5 sums")
complete -f -c apt-ftparchive -s d -l db -d (_ "Use a binary db")
complete -f -c apt-ftparchive -s q -l quiet -d (_ "Quiet mode")
complete -f -c apt-ftparchive -l delink -d (_ "Perform delinking")
complete -f -c apt-ftparchive -l contents -d (_ "Perform contents generation")
complete -c apt-ftparchive -s s -l source-override -d (_ "Use source override")
complete -f -c apt-ftparchive -l readonly -d (_ "Make caching db readonly")
complete -f -c apt-ftparchive -s v -l version -d (_ "Display version and exit")
complete -r -c apt-ftparchive -s c -l config-file -d (_ "Use config file")
complete -r -c apt-ftparchive -s o -l option -d (_ "Set config options")
complete -c apt-ftparchive -s h -l help -d (N_ "Display help and exit")
complete -f -c apt-ftparchive -a packages -d (N_ "Generate package from source")
complete -f -c apt-ftparchive -a sources -d (N_ "Generate source index file")
complete -f -c apt-ftparchive -a contents -d (N_ "Generate contents file")
complete -f -c apt-ftparchive -a release -d (N_ "Generate release file")
complete -f -c apt-ftparchive -a clean -d (N_ "Remove records")
complete -f -c apt-ftparchive -l md5 -d (N_ "Generate MD5 sums")
complete -f -c apt-ftparchive -s d -l db -d (N_ "Use a binary db")
complete -f -c apt-ftparchive -s q -l quiet -d (N_ "Quiet mode")
complete -f -c apt-ftparchive -l delink -d (N_ "Perform delinking")
complete -f -c apt-ftparchive -l contents -d (N_ "Perform contents generation")
complete -c apt-ftparchive -s s -l source-override -d (N_ "Use source override")
complete -f -c apt-ftparchive -l readonly -d (N_ "Make caching db readonly")
complete -f -c apt-ftparchive -s v -l version -d (N_ "Display version and exit")
complete -r -c apt-ftparchive -s c -l config-file -d (N_ "Use config file")
complete -r -c apt-ftparchive -s o -l option -d (N_ "Set config options")

View file

@ -1,6 +1,6 @@
#completion for apt-get
function __fish_apt_no_subcommand -d (_ 'Test if apt has yet to be given the subcommand')
function __fish_apt_no_subcommand -d (N_ 'Test if apt has yet to be given the subcommand')
for i in (commandline -opc)
if contains -- $i update upgrade dselect-upgrade dist-upgrade install remove source build-dep check clean autoclean
return 1
@ -9,7 +9,7 @@ function __fish_apt_no_subcommand -d (_ 'Test if apt has yet to be given the sub
return 0
end
function __fish_apt_use_package -d (_ 'Test if apt command should have packages as potential completion')
function __fish_apt_use_package -d (N_ 'Test if apt command should have packages as potential completion')
for i in (commandline -opc)
if contains -- $i contains install remove build-dep
return 0
@ -18,47 +18,47 @@ function __fish_apt_use_package -d (_ 'Test if apt command should have packages
return 1
end
complete -c apt-get -n '__fish_apt_use_package' -a '(__fish_print_packages)' -d (_ 'Package')
complete -c apt-get -n '__fish_apt_use_package' -a '(__fish_print_packages)' -d (N_ 'Package')
complete -c apt-get -s h -l help -d (_ 'Display help and exit')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'update' -d (_ 'Update sources')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'upgrade' -d (_ 'Upgrade or install newest packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'dselect-upgrade' -d (_ 'Use with dselect front-end')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'dist-upgrade' -d (_ 'Distro upgrade')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'install' -d (_ 'Install one or more packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'remove' -d (_ 'Remove one or more packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'source' -d (_ 'Fetch source packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'build-dep' -d (_ 'Install/remove packages for dependencies')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'check' -d (_ 'Update cache and check dependencies')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'clean' -d (_ 'Clean local caches and packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'autoclean' -d (_ 'Clean packages no longer be downloaded')
complete -c apt-get -s d -l download-only -d (_ 'Download Only')
complete -c apt-get -s f -l fix-broken -d (_ 'Correct broken dependencies')
complete -c apt-get -s m -l fix-missing -d (_ 'Ignore missing packages')
complete -c apt-get -l no-download -d (_ 'Disable downloading packages')
complete -c apt-get -s q -l quiet -d (_ 'Quiet mode')
complete -c apt-get -s s -l simulate -d (_ 'Perform a simulation')
complete -c apt-get -s y -l assume-yes -d (_ 'Automatic yes to prompts')
complete -c apt-get -s u -l show-upgraded -d (_ 'Show upgraded packages')
complete -c apt-get -s V -l verbose-versions -d (_ 'Show full versions for packages')
complete -c apt-get -s b -l compile -d (_ 'Compile source packages')
complete -c apt-get -s b -l build -d (_ 'Compile source packages')
complete -c apt-get -l ignore-hold -d (_ 'Ignore package Holds')
complete -c apt-get -l no-upgrade -d (_ "Do not upgrade packages")
complete -c apt-get -l force-yes -d (_ 'Force yes')
complete -c apt-get -l print-uris -d (_ 'Print the URIs')
complete -c apt-get -l purge -d (_ 'Use purge instead of remove')
complete -c apt-get -l reinstall -d (_ 'Reinstall packages')
complete -c apt-get -l list-cleanup -d (_ 'Erase obsolete files')
complete -c apt-get -s t -l target-release -d (_ 'Control default input to the policy engine')
complete -c apt-get -l trivial-only -d (_ 'Only perform operations that are trivial')
complete -c apt-get -l no-remove -d (_ 'Abort if any packages are to be removed')
complete -c apt-get -l only-source -d (_ 'Only accept source packages')
complete -c apt-get -l diff-only -d (_ 'Download only diff file')
complete -c apt-get -l tar-only -d (_ 'Download only tar file')
complete -c apt-get -l arch-only -d (_ 'Only process arch-dependant build-dependencies')
complete -c apt-get -l allow-unauthenticated -d (_ 'Ignore non-authenticated packages')
complete -c apt-get -s v -l version -d (_ 'Display version and exit')
complete -r -c apt-get -s c -l config-file -d (_ 'Specify a config file')
complete -r -c apt-get -s o -l option -d (_ 'Set a config option')
complete -c apt-get -s h -l help -d (N_ 'Display help and exit')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'update' -d (N_ 'Update sources')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'upgrade' -d (N_ 'Upgrade or install newest packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'dselect-upgrade' -d (N_ 'Use with dselect front-end')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'dist-upgrade' -d (N_ 'Distro upgrade')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'install' -d (N_ 'Install one or more packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'remove' -d (N_ 'Remove one or more packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'source' -d (N_ 'Fetch source packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'build-dep' -d (N_ 'Install/remove packages for dependencies')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'check' -d (N_ 'Update cache and check dependencies')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'clean' -d (N_ 'Clean local caches and packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'autoclean' -d (N_ 'Clean packages no longer be downloaded')
complete -c apt-get -s d -l download-only -d (N_ 'Download Only')
complete -c apt-get -s f -l fix-broken -d (N_ 'Correct broken dependencies')
complete -c apt-get -s m -l fix-missing -d (N_ 'Ignore missing packages')
complete -c apt-get -l no-download -d (N_ 'Disable downloading packages')
complete -c apt-get -s q -l quiet -d (N_ 'Quiet mode')
complete -c apt-get -s s -l simulate -d (N_ 'Perform a simulation')
complete -c apt-get -s y -l assume-yes -d (N_ 'Automatic yes to prompts')
complete -c apt-get -s u -l show-upgraded -d (N_ 'Show upgraded packages')
complete -c apt-get -s V -l verbose-versions -d (N_ 'Show full versions for packages')
complete -c apt-get -s b -l compile -d (N_ 'Compile source packages')
complete -c apt-get -s b -l build -d (N_ 'Compile source packages')
complete -c apt-get -l ignore-hold -d (N_ 'Ignore package Holds')
complete -c apt-get -l no-upgrade -d (N_ "Do not upgrade packages")
complete -c apt-get -l force-yes -d (N_ 'Force yes')
complete -c apt-get -l print-uris -d (N_ 'Print the URIs')
complete -c apt-get -l purge -d (N_ 'Use purge instead of remove')
complete -c apt-get -l reinstall -d (N_ 'Reinstall packages')
complete -c apt-get -l list-cleanup -d (N_ 'Erase obsolete files')
complete -c apt-get -s t -l target-release -d (N_ 'Control default input to the policy engine')
complete -c apt-get -l trivial-only -d (N_ 'Only perform operations that are trivial')
complete -c apt-get -l no-remove -d (N_ 'Abort if any packages are to be removed')
complete -c apt-get -l only-source -d (N_ 'Only accept source packages')
complete -c apt-get -l diff-only -d (N_ 'Download only diff file')
complete -c apt-get -l tar-only -d (N_ 'Download only tar file')
complete -c apt-get -l arch-only -d (N_ 'Only process arch-dependant build-dependencies')
complete -c apt-get -l allow-unauthenticated -d (N_ 'Ignore non-authenticated packages')
complete -c apt-get -s v -l version -d (N_ 'Display version and exit')
complete -r -c apt-get -s c -l config-file -d (N_ 'Specify a config file')
complete -r -c apt-get -s o -l option -d (N_ 'Set a config option')

View file

@ -1,5 +1,5 @@
#apt-key
complete -r -c apt-key -a add -d (_ "Add a new key")
complete -f -c apt-key -a del -d (_ "Remove a key")
complete -f -c apt-key -a list -d (_ "List trusted keys")
complete -r -c apt-key -a add -d (N_ "Add a new key")
complete -f -c apt-key -a del -d (N_ "Remove a key")
complete -f -c apt-key -a list -d (N_ "List trusted keys")

View file

@ -1,25 +1,25 @@
#apt-listbugs
complete -c apt-listbugs -s h -l help -d (_ "Display help and exit")
complete -f -c apt-listbugs -s s -l severity -a "critical grave" -d (_ "Set severity")
complete -f -c apt-listbugs -s T -l tag -d (_ "Tags you want to see")
complete -f -c apt-listbugs -s S -l stats -a "outstanding 'pending upload' resolved done open" -d (_ "Bug-status you want to see")
complete -f -c apt-listbugs -s l -l showless -d (_ "Ignore bugs in your system")
complete -f -c apt-listbugs -s g -l showgreater -d (_ "Ignore newer bugs than upgrade packages")
complete -f -c apt-listbugs -s D -l show-downgrade -d (_ "Bugs for downgrade packages")
complete -f -c apt-listbugs -s H -l hostname -a "osdn.debian.or.jp" -d (_ "Bug Tracking system")
complete -f -c apt-listbugs -s p -l port -d (_ "Specify port for web interface")
complete -f -c apt-listbugs -s R -l release-critical -d (_ "Use daily bug report")
complete -f -c apt-listbugs -s I -l index -d (_ "Use the raw index.db")
complete -f -c apt-listbugs -s X -l indexdir -d (_ "Specify index dir")
complete -f -c apt-listbugs -s P -l pin-priority -d (_ "Specify Pin-Priority value")
complete -f -c apt-listbugs -l title -d (_ "Specify the title of rss")
complete -f -c apt-listbugs -s f -l force-download -d (_ "Retrieve fresh bugs")
complete -f -c apt-listbugs -s q -l quiet -d (_ "Do not display progress bar")
complete -f -c apt-listbugs -s c -l cache-dir -a "/var/cache/apt-listbugs/" -d (_ "Specify local cache dir")
complete -f -c apt-listbugs -s t -l timer -d (_ "Specify the expire cache timer")
complete -c apt-listbugs -s C -l aptconf -d (_ "Specify apt config file")
complete -f -c apt-listbugs -s y -l force-yes -d (_ "Assume yes to all questions")
complete -f -c apt-listbugs -s n -l force-no -d (_ "Assume no to all questions")
complete -c apt-listbugs -a list -d (_ "List bugs from packages")
complete -c apt-listbugs -a rss -d (_ "List bugs in rss format")
complete -c apt-listbugs -s h -l help -d (N_ "Display help and exit")
complete -f -c apt-listbugs -s s -l severity -a "critical grave" -d (N_ "Set severity")
complete -f -c apt-listbugs -s T -l tag -d (N_ "Tags you want to see")
complete -f -c apt-listbugs -s S -l stats -a "outstanding 'pending upload' resolved done open" -d (N_ "Bug-status you want to see")
complete -f -c apt-listbugs -s l -l showless -d (N_ "Ignore bugs in your system")
complete -f -c apt-listbugs -s g -l showgreater -d (N_ "Ignore newer bugs than upgrade packages")
complete -f -c apt-listbugs -s D -l show-downgrade -d (N_ "Bugs for downgrade packages")
complete -f -c apt-listbugs -s H -l hostname -a "osdn.debian.or.jp" -d (N_ "Bug Tracking system")
complete -f -c apt-listbugs -s p -l port -d (N_ "Specify port for web interface")
complete -f -c apt-listbugs -s R -l release-critical -d (N_ "Use daily bug report")
complete -f -c apt-listbugs -s I -l index -d (N_ "Use the raw index.db")
complete -f -c apt-listbugs -s X -l indexdir -d (N_ "Specify index dir")
complete -f -c apt-listbugs -s P -l pin-priority -d (N_ "Specify Pin-Priority value")
complete -f -c apt-listbugs -l title -d (N_ "Specify the title of rss")
complete -f -c apt-listbugs -s f -l force-download -d (N_ "Retrieve fresh bugs")
complete -f -c apt-listbugs -s q -l quiet -d (N_ "Do not display progress bar")
complete -f -c apt-listbugs -s c -l cache-dir -a "/var/cache/apt-listbugs/" -d (N_ "Specify local cache dir")
complete -f -c apt-listbugs -s t -l timer -d (N_ "Specify the expire cache timer")
complete -c apt-listbugs -s C -l aptconf -d (N_ "Specify apt config file")
complete -f -c apt-listbugs -s y -l force-yes -d (N_ "Assume yes to all questions")
complete -f -c apt-listbugs -s n -l force-no -d (N_ "Assume no to all questions")
complete -c apt-listbugs -a list -d (N_ "List bugs from packages")
complete -c apt-listbugs -a rss -d (N_ "List bugs in rss format")

View file

@ -1,13 +1,13 @@
#apt-listchanges
complete -c apt-listchanges -l help -d (_ "Display help and exit")
complete -c apt-listchanges -l apt -d (_ "Read filenames from pipe")
complete -f -c apt-listchanges -s v -l verbose -d (_ "Verbose mode")
complete -f -c apt-listchanges -s f -l frontend -a "pager browser xterm-pager xterm-browser text mail none" -d (_ "Select frontend interface")
complete -r -f -c apt-listchanges -l email-address -d (_ "Specify email address")
complete -f -c apt-listchanges -s c -l confirm -d (_ "Ask confirmation")
complete -f -c apt-listchanges -s a -l all -d (_ "Display all changelogs")
complete -r -c apt-listchanges -l save_seen -d (_ "Avoid changelogs from db in named file")
complete -r -f -c apt-listchanges -l which -a "news changelogs both" -d (_ "Select display")
complete -f -c apt-listchanges -s h -l headers -d (_ "Insert header")
complete -f -c apt-listchanges -l debug -d (_ "Display debug info")
complete -r -c apt-listchanges -l profile -d (_ "Select an option profile")
complete -c apt-listchanges -l help -d (N_ "Display help and exit")
complete -c apt-listchanges -l apt -d (N_ "Read filenames from pipe")
complete -f -c apt-listchanges -s v -l verbose -d (N_ "Verbose mode")
complete -f -c apt-listchanges -s f -l frontend -a "pager browser xterm-pager xterm-browser text mail none" -d (N_ "Select frontend interface")
complete -r -f -c apt-listchanges -l email-address -d (N_ "Specify email address")
complete -f -c apt-listchanges -s c -l confirm -d (N_ "Ask confirmation")
complete -f -c apt-listchanges -s a -l all -d (N_ "Display all changelogs")
complete -r -c apt-listchanges -l save_seen -d (N_ "Avoid changelogs from db in named file")
complete -r -f -c apt-listchanges -l which -a "news changelogs both" -d (N_ "Select display")
complete -f -c apt-listchanges -s h -l headers -d (N_ "Insert header")
complete -f -c apt-listchanges -l debug -d (N_ "Display debug info")
complete -r -c apt-listchanges -l profile -d (N_ "Select an option profile")

View file

@ -1,22 +1,22 @@
#apt-move
complete -c apt-move -a get -d (_ "Generate master file")
complete -c apt-move -a getlocal -d (_ "Alias for 'get'")
complete -f -c apt-move -a move -d (_ "Move packages to local tree")
complete -f -c apt-move -a delete -d (_ "Delete obsolete package files")
complete -f -c apt-move -a packages -d (_ "Build new local files")
complete -f -c apt-move -a fsck -d (_ "Rebuild index files")
complete -f -c apt-move -a update -d (_ "Move packages from cache to local mirror")
complete -f -c apt-move -a local -d (_ "Alias for 'move delete packages'")
complete -f -c apt-move -a localupdate -d (_ "Alias for 'update'")
complete -f -c apt-move -a mirror -d (_ "Download package missing from mirror")
complete -f -c apt-move -a sync -d (_ "Sync packages installed")
complete -c apt-move -a get -d (N_ "Generate master file")
complete -c apt-move -a getlocal -d (N_ "Alias for 'get'")
complete -f -c apt-move -a move -d (N_ "Move packages to local tree")
complete -f -c apt-move -a delete -d (N_ "Delete obsolete package files")
complete -f -c apt-move -a packages -d (N_ "Build new local files")
complete -f -c apt-move -a fsck -d (N_ "Rebuild index files")
complete -f -c apt-move -a update -d (N_ "Move packages from cache to local mirror")
complete -f -c apt-move -a local -d (N_ "Alias for 'move delete packages'")
complete -f -c apt-move -a localupdate -d (N_ "Alias for 'update'")
complete -f -c apt-move -a mirror -d (N_ "Download package missing from mirror")
complete -f -c apt-move -a sync -d (N_ "Sync packages installed")
complete -f -c apt-move -a exclude -d 'test $LOCALDIR/.exclude file'
complete -c apt-move -a movefile -d (_ "Move file specified on commandline")
complete -f -c apt-move -a listbin -d (_ "List packages that may serve as input to mirrorbin or mirrorsource" )
complete -f -c apt-move -a mirrorbin -d (_ "Fetch package from STDIN")
complete -f -c apt-move -a mirrorsrc -d (_ "Fetch source package from STDIN")
complete -f -c apt-move -s a -d (_ "Process all packages")
complete -c apt-move -s c -d (_ "Use specific conffile")
complete -f -c apt-move -s f -d (_ "Force deletion")
complete -f -c apt-move -s q -d (_ "Suppresses normal output")
complete -f -c apt-move -s t -d (_ "Test run")
complete -c apt-move -a movefile -d (N_ "Move file specified on commandline")
complete -f -c apt-move -a listbin -d (N_ "List packages that may serve as input to mirrorbin or mirrorsource" )
complete -f -c apt-move -a mirrorbin -d (N_ "Fetch package from STDIN")
complete -f -c apt-move -a mirrorsrc -d (N_ "Fetch source package from STDIN")
complete -f -c apt-move -s a -d (N_ "Process all packages")
complete -c apt-move -s c -d (N_ "Use specific conffile")
complete -f -c apt-move -s f -d (N_ "Force deletion")
complete -f -c apt-move -s q -d (N_ "Suppresses normal output")
complete -f -c apt-move -s t -d (N_ "Test run")

View file

@ -1,10 +1,10 @@
#apt-proxy-import
complete -c apt-proxy-import -s h -l help -d (_ 'Display help and exit')
complete -f -c apt-proxy-import -s V -l version -d (_ 'Display version and exit')
complete -f -c apt-proxy-import -s v -l verbose -d (_ 'Verbose mode')
complete -f -c apt-proxy-import -s q -l quiet -d (_ 'No message to STDOUT')
complete -f -c apt-proxy-import -s r -l recursive -d (_ 'Recurse into subdir')
complete -r -c apt-proxy-import -s i -l import-dir -a '(ls -Fp|grep /$)' -d (_ 'Dir to import')
complete -r -c apt-proxy-import -s u -l user -a '(__fish_complete_users)' -d (_ 'Change to user')
complete -r -c apt-proxy-import -s d -l debug -d (_ 'Debug level[default 0]')
complete -c apt-proxy-import -s h -l help -d (N_ 'Display help and exit')
complete -f -c apt-proxy-import -s V -l version -d (N_ 'Display version and exit')
complete -f -c apt-proxy-import -s v -l verbose -d (N_ 'Verbose mode')
complete -f -c apt-proxy-import -s q -l quiet -d (N_ 'No message to STDOUT')
complete -f -c apt-proxy-import -s r -l recursive -d (N_ 'Recurse into subdir')
complete -r -c apt-proxy-import -s i -l import-dir -a '(ls -Fp|grep /$)' -d (N_ 'Dir to import')
complete -r -c apt-proxy-import -s u -l user -a '(__fish_complete_users)' -d (N_ 'Change to user')
complete -r -c apt-proxy-import -s d -l debug -d (N_ 'Debug level[default 0]')

View file

@ -1,13 +1,13 @@
#apt-rdepends
complete -c apt-rdepends -l help -d (_ "Display help and exit")
complete -f -c apt-rdepends -s b -l build-depends -d (_ "Show build dependencies")
complete -f -c apt-rdepends -s d -l dotty -d (_ "Generate a dotty graph")
complete -f -c apt-rdepends -s p -l print-state -d (_ "Show state of dependencies")
complete -f -c apt-rdepends -s r -l reverse -d (_ "List packages depending on")
complete -r -f -c apt-rdepends -s f -l follow -d (_ "Comma-separated list of dependancy types to follow recursively")
complete -r -f -c apt-rdepends -s s -l show -d (_ "Comma-separated list of dependancy types to show")
complete -r -f -c apt-rdepends -l state-follow -d (_ "Comma-separated list of package installation states to follow recursively")
complete -r -f -c apt-rdepends -l state-show -d (_ "Comma-separated list of package installation states to show")
complete -f -c apt-rdepends -l man -d (_ "Display man page")
complete -f -c apt-rdepends -l version -d (_ "Display version and exit")
complete -c apt-rdepends -l help -d (N_ "Display help and exit")
complete -f -c apt-rdepends -s b -l build-depends -d (N_ "Show build dependencies")
complete -f -c apt-rdepends -s d -l dotty -d (N_ "Generate a dotty graph")
complete -f -c apt-rdepends -s p -l print-state -d (N_ "Show state of dependencies")
complete -f -c apt-rdepends -s r -l reverse -d (N_ "List packages depending on")
complete -r -f -c apt-rdepends -s f -l follow -d (N_ "Comma-separated list of dependancy types to follow recursively")
complete -r -f -c apt-rdepends -s s -l show -d (N_ "Comma-separated list of dependancy types to show")
complete -r -f -c apt-rdepends -l state-follow -d (N_ "Comma-separated list of package installation states to follow recursively")
complete -r -f -c apt-rdepends -l state-show -d (N_ "Comma-separated list of package installation states to show")
complete -f -c apt-rdepends -l man -d (N_ "Display man page")
complete -f -c apt-rdepends -l version -d (N_ "Display version and exit")

View file

@ -1,4 +1,4 @@
#apt-setup
complete -c apt-setup -a probe -d (_ "Probe a CD")
complete -c apt-setup -s N -d (_ "Run in noninteractive mode")
complete -c apt-setup -a probe -d (N_ "Probe a CD")
complete -c apt-setup -s N -d (N_ "Run in noninteractive mode")

View file

@ -1,10 +1,10 @@
#apt-show-source
complete -c apt-show-source -s h -l help -d (_ 'Display help and exit')
complete -r -c apt-show-source -l status-file -d (_ 'Read package from file') -f
complete -r -c apt-show-source -o stf -d (_ 'Read package from file') -f
complete -r -c apt-show-source -l list-dir -a '(ls -Fp .|grep /$) /var/lib/apt/lists' -d (_ 'Specify APT list dir')
complete -r -c apt-show-source -o ld -a '(ls -Fp .|grep /$) /var/lib/apt/lists' -d (_ 'Specify APT list dir')
complete -r -c apt-show-source -s p -l package -a '(apt-cache pkgnames)' -d (_ 'List PKG info')
complete -f -c apt-show-source -l version-only -d (_ 'Display version and exit')
complete -f -c apt-show-source -s a -l all -d (_ 'Print all source packages with version')
complete -f -c apt-show-source -s v -l verbose -d (_ 'Verbose mode')
complete -c apt-show-source -s h -l help -d (N_ 'Display help and exit')
complete -r -c apt-show-source -l status-file -d (N_ 'Read package from file') -f
complete -r -c apt-show-source -o stf -d (N_ 'Read package from file') -f
complete -r -c apt-show-source -l list-dir -a '(ls -Fp .|grep /$) /var/lib/apt/lists' -d (N_ 'Specify APT list dir')
complete -r -c apt-show-source -o ld -a '(ls -Fp .|grep /$) /var/lib/apt/lists' -d (N_ 'Specify APT list dir')
complete -r -c apt-show-source -s p -l package -a '(apt-cache pkgnames)' -d (N_ 'List PKG info')
complete -f -c apt-show-source -l version-only -d (N_ 'Display version and exit')
complete -f -c apt-show-source -s a -l all -d (N_ 'Print all source packages with version')
complete -f -c apt-show-source -s v -l verbose -d (N_ 'Verbose mode')

View file

@ -1,14 +1,14 @@
#apt-show-versions
complete -c apt-show-source -s h -l help -d (_ 'Display help and exit')
complete -r -c apt-show-versions -s p -l packages -a '(apt-cache pkgnames)' -d (_ 'Print PKG versions')
complete -f -c apt-show-versions -s r -l regex -d (_ 'Using regex')
complete -f -c apt-show-versions -s u -l upgradeable -d (_ 'Print only upgradeable packages')
complete -f -c apt-show-versions -s a -l allversions -d (_ 'Print all versions')
complete -f -c apt-show-versions -s b -l brief -d (_ 'Print package name/distro')
complete -f -c apt-show-versions -s v -l verbose -d (_ 'Print verbose info')
complete -f -c apt-show-versions -s i -l initialize -d (_ 'Init or update cache only')
complete -r -c apt-show-versions -l status-file -d (_ 'Read package from file')
complete -r -c apt-show-versions -o stf -d (_ 'Read package from file')
complete -r -c apt-show-versions -l list-dir -a '(ls -Fp .|grep /$) /var/lib/apt/lists /var/state/apt/lists' -d (_ 'Specify APT list dir')
complete -r -c apt-show-versions -o ld -a '(ls -Fp .|grep /$) /var/lib/apt/lists /var/state/apt/lists' -d (_ 'Specify APT list dir')
complete -c apt-show-source -s h -l help -d (N_ 'Display help and exit')
complete -r -c apt-show-versions -s p -l packages -a '(apt-cache pkgnames)' -d (N_ 'Print PKG versions')
complete -f -c apt-show-versions -s r -l regex -d (N_ 'Using regex')
complete -f -c apt-show-versions -s u -l upgradeable -d (N_ 'Print only upgradeable packages')
complete -f -c apt-show-versions -s a -l allversions -d (N_ 'Print all versions')
complete -f -c apt-show-versions -s b -l brief -d (N_ 'Print package name/distro')
complete -f -c apt-show-versions -s v -l verbose -d (N_ 'Print verbose info')
complete -f -c apt-show-versions -s i -l initialize -d (N_ 'Init or update cache only')
complete -r -c apt-show-versions -l status-file -d (N_ 'Read package from file')
complete -r -c apt-show-versions -o stf -d (N_ 'Read package from file')
complete -r -c apt-show-versions -l list-dir -a '(ls -Fp .|grep /$) /var/lib/apt/lists /var/state/apt/lists' -d (N_ 'Specify APT list dir')
complete -r -c apt-show-versions -o ld -a '(ls -Fp .|grep /$) /var/lib/apt/lists /var/state/apt/lists' -d (N_ 'Specify APT list dir')

View file

@ -1,7 +1,7 @@
#apt-sortpkgs
complete -c apt-sortpkgs -s h -l help -d (_ "Display help and exit")
complete -f -c apt-sortpkgs -s s -l source -d (_ "Use source index field")
complete -f -c apt-sortpkgs -s v -l version -d (_ "Display version and exit")
complete -r -c apt-sortpkgs -s c -l conf-file -d (_ "Specify conffile")
complete -r -f -c apt-sortpkgs -s o -l option -d (_ "Set config options")
complete -c apt-sortpkgs -s h -l help -d (N_ "Display help and exit")
complete -f -c apt-sortpkgs -s s -l source -d (N_ "Use source index field")
complete -f -c apt-sortpkgs -s v -l version -d (N_ "Display version and exit")
complete -r -c apt-sortpkgs -s c -l conf-file -d (N_ "Specify conffile")
complete -r -f -c apt-sortpkgs -s o -l option -d (N_ "Set config options")

View file

@ -1,20 +1,20 @@
#apt-spy
complete -c apt-spy -s h -d (_ "Display help and exit")
complete -f -c apt-spy -s d -a "stable testing unstable" -d (_ "Debian distribution")
complete -f -c apt-spy -s a -a "Africa Asia Europe North-America Oceania South-America" -d (_ "Servers in the areas")
complete -c apt-spy -s c -d (_ "Conf file")
complete -f -c apt-spy -s e -d (_ "Finish after number of servers")
complete -c apt-spy -s f -d (_ "File to grab servers")
complete -c apt-spy -s i -d (_ "File as input")
complete -c apt-spy -s m -d (_ "Mirror-list file")
complete -c apt-spy -s o -d (_ "Output sources.list file")
complete -f -c apt-spy -s p -d (_ "Use proxy server")
complete -f -c apt-spy -s s -d (_ "Comma separated country list")
complete -f -c apt-spy -s t -d (_ "How long in sec to download")
complete -f -c apt-spy -s u -d (_ "Custom URL to get mirror list")
complete -c apt-spy -s w -d (_ "Write top servers to file")
complete -f -c apt-spy -s n -d (_ "Number of top servers")
complete -f -c apt-spy -a "update" -d (_ "Update mirror list")
complete -f -c apt-spy -s v -d (_ "Version number")
complete -c apt-spy -s h -d (N_ "Display help and exit")
complete -f -c apt-spy -s d -a "stable testing unstable" -d (N_ "Debian distribution")
complete -f -c apt-spy -s a -a "Africa Asia Europe North-America Oceania South-America" -d (N_ "Servers in the areas")
complete -c apt-spy -s c -d (N_ "Conf file")
complete -f -c apt-spy -s e -d (N_ "Finish after number of servers")
complete -c apt-spy -s f -d (N_ "File to grab servers")
complete -c apt-spy -s i -d (N_ "File as input")
complete -c apt-spy -s m -d (N_ "Mirror-list file")
complete -c apt-spy -s o -d (N_ "Output sources.list file")
complete -f -c apt-spy -s p -d (N_ "Use proxy server")
complete -f -c apt-spy -s s -d (N_ "Comma separated country list")
complete -f -c apt-spy -s t -d (N_ "How long in sec to download")
complete -f -c apt-spy -s u -d (N_ "Custom URL to get mirror list")
complete -c apt-spy -s w -d (N_ "Write top servers to file")
complete -f -c apt-spy -s n -d (N_ "Number of top servers")
complete -f -c apt-spy -a "update" -d (N_ "Update mirror list")
complete -f -c apt-spy -s v -d (N_ "Version number")

View file

@ -1,24 +1,24 @@
#apt-src
complete -c apt-src -s h -l help -d (_ "Display help and exit")
complete -f -c apt-src -a "update" -d (_ "Update list of source packages")
complete -f -c apt-src -a "install" -d (_ "Install source packages")
complete -f -c apt-src -a "upgrade" -d (_ "Upgrade source packages")
complete -f -c apt-src -a "remove" -d (_ "Remove source packages")
complete -f -c apt-src -a "build" -d (_ "Build source packages")
complete -f -c apt-src -a "clean" -d (_ "Clean source packages")
complete -f -c apt-src -a "import" -d (_ "Detect known source tree")
complete -f -c apt-src -a "list" -d (_ "List installed source package\(s\)")
complete -f -c apt-src -a "location" -d (_ "Root source tree")
complete -f -c apt-src -a "version" -d (_ "Version of source package")
complete -f -c apt-src -a "name" -d (_ "Name of the source package")
complete -f -c apt-src -s b -l build -d (_ "Build source packages")
complete -f -c apt-src -s i -l installdebs -d (_ "Install after build")
complete -f -c apt-src -s p -l patch -d (_ "Patch local changes")
complete -r -c apt-src -s l -l location -d (_ "Specify a dir")
complete -c apt-src -s c -l here -d (_ "Run on current dir")
complete -f -c apt-src -l upstream-version -d (_ "Omit debian version")
complete -f -c apt-src -s k -l keep-built -d (_ "Do not del built files")
complete -f -c apt-src -s n -l no-delete-source -d (_ "Do not del source files")
complete -f -c apt-src -l version -d (_ "Source tree version")
complete -f -c apt-src -s q -l quiet -d (_ "Output to /dev/null")
complete -f -c apt-src -s t -l trace -d (_ "Output trace")
complete -c apt-src -s h -l help -d (N_ "Display help and exit")
complete -f -c apt-src -a "update" -d (N_ "Update list of source packages")
complete -f -c apt-src -a "install" -d (N_ "Install source packages")
complete -f -c apt-src -a "upgrade" -d (N_ "Upgrade source packages")
complete -f -c apt-src -a "remove" -d (N_ "Remove source packages")
complete -f -c apt-src -a "build" -d (N_ "Build source packages")
complete -f -c apt-src -a "clean" -d (N_ "Clean source packages")
complete -f -c apt-src -a "import" -d (N_ "Detect known source tree")
complete -f -c apt-src -a "list" -d (N_ "List installed source package\(s\)")
complete -f -c apt-src -a "location" -d (N_ "Root source tree")
complete -f -c apt-src -a "version" -d (N_ "Version of source package")
complete -f -c apt-src -a "name" -d (N_ "Name of the source package")
complete -f -c apt-src -s b -l build -d (N_ "Build source packages")
complete -f -c apt-src -s i -l installdebs -d (N_ "Install after build")
complete -f -c apt-src -s p -l patch -d (N_ "Patch local changes")
complete -r -c apt-src -s l -l location -d (N_ "Specify a dir")
complete -c apt-src -s c -l here -d (N_ "Run on current dir")
complete -f -c apt-src -l upstream-version -d (N_ "Omit debian version")
complete -f -c apt-src -s k -l keep-built -d (N_ "Do not del built files")
complete -f -c apt-src -s n -l no-delete-source -d (N_ "Do not del source files")
complete -f -c apt-src -l version -d (N_ "Source tree version")
complete -f -c apt-src -s q -l quiet -d (N_ "Output to /dev/null")
complete -f -c apt-src -s t -l trace -d (N_ "Output trace")

View file

@ -1,10 +1,10 @@
#apt-zip-inst
complete -c apt-zip-inst -s h -l help -d (_ "Display help and exit")
complete -f -c apt-zip-inst -s V -l version -d (_ "Display version and exit")
complete -c apt-zip-inst -s m -l medium -d (_ "Removable medium")
complete -f -c apt-zip-inst -s a -l aptgetaction -a "dselect-upgrade upgrade dist-upgrade" -d (_ "Select an action")
complete -c apt-zip-inst -s p -l packages -d (_ "List of packages to install")
complete -f -c apt-zip-inst -s f -l fix-broken -d (_ "Fix broken option")
complete -c apt-zip-inst -l skip-mount -d (_ "Specify a non-mountpoint dir")
complete -c apt-zip-inst -s h -l help -d (N_ "Display help and exit")
complete -f -c apt-zip-inst -s V -l version -d (N_ "Display version and exit")
complete -c apt-zip-inst -s m -l medium -d (N_ "Removable medium")
complete -f -c apt-zip-inst -s a -l aptgetaction -a "dselect-upgrade upgrade dist-upgrade" -d (N_ "Select an action")
complete -c apt-zip-inst -s p -l packages -d (N_ "List of packages to install")
complete -f -c apt-zip-inst -s f -l fix-broken -d (N_ "Fix broken option")
complete -c apt-zip-inst -l skip-mount -d (N_ "Specify a non-mountpoint dir")

View file

@ -1,13 +1,13 @@
#apt-zip-list
complete -c apt-zip-list -s h -l help -d (_ "Display help and exit")
complete -f -c apt-zip-list -s V -l version -d (_ "Display version and exit")
complete -c apt-zip-list -s m -l medium -d (_ "Removable medium")
complete -f -c apt-zip-list -s a -l aptgetaction -a "dselect-upgrade upgrade dist-upgrade" -d (_ "Select an action")
complete -c apt-zip-list -s p -l packages -d (_ "List of packages to install")
complete -f -c apt-zip-list -s f -l fix-broken -d (_ "Fix broken option")
complete -c apt-zip-list -l skip-mount -d (_ "Specify a non-mountpoint dir")
complete -c apt-zip-list -s M -l method -d (_ "Select a method")
complete -c apt-zip-list -s o -l options -a "tar restart" -d (_ "Specify options")
complete -c apt-zip-list -s A -l accept -a "http ftp" -d (_ "Accept protocols")
complete -c apt-zip-list -s R -l reject -a "http ftp" -d (_ "Reject protocols")
complete -c apt-zip-list -s h -l help -d (N_ "Display help and exit")
complete -f -c apt-zip-list -s V -l version -d (N_ "Display version and exit")
complete -c apt-zip-list -s m -l medium -d (N_ "Removable medium")
complete -f -c apt-zip-list -s a -l aptgetaction -a "dselect-upgrade upgrade dist-upgrade" -d (N_ "Select an action")
complete -c apt-zip-list -s p -l packages -d (N_ "List of packages to install")
complete -f -c apt-zip-list -s f -l fix-broken -d (N_ "Fix broken option")
complete -c apt-zip-list -l skip-mount -d (N_ "Specify a non-mountpoint dir")
complete -c apt-zip-list -s M -l method -d (N_ "Select a method")
complete -c apt-zip-list -s o -l options -a "tar restart" -d (N_ "Specify options")
complete -c apt-zip-list -s A -l accept -a "http ftp" -d (N_ "Accept protocols")
complete -c apt-zip-list -s R -l reject -a "http ftp" -d (N_ "Reject protocols")

View file

@ -1,11 +1,11 @@
#completion for arp
complete -c arp -s v -l verbose -d (_ "Verbose mode")
complete -c arp -s n -l numeric -d (_ "Numerical address")
complete -x -c arp -s H -l tw-type -a "ether arcnet pronet ax25 netrom" -d (_ "Class of hw type")
complete -c arp -s a -l display -x -a "(__fish_print_hostnames)" -d (_ "Show arp entries")
complete -x -c arp -s d -l delete -a "(__fish_print_hostnames)" -d (_ "Remove an entry for hostname")
complete -c arp -s D -l use-device -d (_ "Use hardware address")
complete -x -c arp -s i -l device -a "(__fish_print_interfaces)" -d (_ "Select interface")
complete -x -c arp -s s -l set -d (_ "Manually create ARP address") -a "(__fish_print_hostnames)"
complete -f -c arp -s f -l file -d (_ "Take addr from filename, default /etc/ethers")
complete -c arp -s v -l verbose -d (N_ "Verbose mode")
complete -c arp -s n -l numeric -d (N_ "Numerical address")
complete -x -c arp -s H -l tw-type -a "ether arcnet pronet ax25 netrom" -d (N_ "Class of hw type")
complete -c arp -s a -l display -x -a "(__fish_print_hostnames)" -d (N_ "Show arp entries")
complete -x -c arp -s d -l delete -a "(__fish_print_hostnames)" -d (N_ "Remove an entry for hostname")
complete -c arp -s D -l use-device -d (N_ "Use hardware address")
complete -x -c arp -s i -l device -a "(__fish_print_interfaces)" -d (N_ "Select interface")
complete -x -c arp -s s -l set -d (N_ "Manually create ARP address") -a "(__fish_print_hostnames)"
complete -f -c arp -s f -l file -d (N_ "Take addr from filename, default /etc/ethers")

View file

@ -1,10 +1,10 @@
#at
complete -f -c at -s V -d (_ "Display version and exit")
complete -f -c at -s q -d (_ "Use specified queue")
complete -f -c at -s m -d (_ "Send mail to user")
complete -c at -s f -x -a "(__fish_complete_suffix (commandline -ct) '' 'At job')" -d (_ "Read job from file")
complete -f -c at -s l -d (_ "Alias for atq")
complete -f -c at -s d -d (_ "Alias for atrm")
complete -f -c at -s v -d (_ "Show the time")
complete -f -c at -s c -d (_ "Print the jobs listed")
complete -f -c at -s V -d (N_ "Display version and exit")
complete -f -c at -s q -d (N_ "Use specified queue")
complete -f -c at -s m -d (N_ "Send mail to user")
complete -c at -s f -x -a "(__fish_complete_suffix (commandline -ct) '' 'At job')" -d (N_ "Read job from file")
complete -f -c at -s l -d (N_ "Alias for atq")
complete -f -c at -s d -d (N_ "Alias for atrm")
complete -f -c at -s v -d (N_ "Show the time")
complete -f -c at -s c -d (N_ "Print the jobs listed")

View file

@ -1,6 +1,6 @@
#atd
complete -f -c atd -s l -d (_ "Limiting load factor")
complete -f -c atd -s b -d (_ "Minimum interval in seconds")
complete -f -c atd -s d -d (_ "Debug mode")
complete -f -c atd -s s -d (_ "Process at queue only once")
complete -f -c atd -s l -d (N_ "Limiting load factor")
complete -f -c atd -s b -d (N_ "Minimum interval in seconds")
complete -f -c atd -s d -d (N_ "Debug mode")
complete -f -c atd -s s -d (N_ "Process at queue only once")

View file

@ -1,4 +1,4 @@
#atq
complete -f -c atq -s V -d (_ "Display version and exit")
complete -f -c atq -s q -d (_ "Use specified queue")
complete -f -c atq -s V -d (N_ "Display version and exit")
complete -f -c atq -s q -d (N_ "Use specified queue")

View file

@ -1,2 +1,2 @@
#atrm
complete -f -c atrm -s V -d (_ "Display version and exit")
complete -f -c atrm -s V -d (N_ "Display version and exit")

View file

@ -1,9 +1,9 @@
# Completions for the binary calculator
complete -c bc -s i -l interactive -d (_ "Force interactive mode")
complete -c bc -s l -l math-lib -d (_ "Define math library")
complete -c bc -s w -l warn -d (_ "Give warnings for extensions to POSIX bc")
complete -c bc -s s -l standard -d (_ "Process exactly POSIX bc")
complete -c bc -s q -l quiet -d (_ "Do not print the GNU welcome")
complete -c bc -s v -l version -d (_ "Display version and exit")
complete -c bc -s h -l help -d (_ "Display help and exit")
complete -c bc -s i -l interactive -d (N_ "Force interactive mode")
complete -c bc -s l -l math-lib -d (N_ "Define math library")
complete -c bc -s w -l warn -d (N_ "Give warnings for extensions to POSIX bc")
complete -c bc -s s -l standard -d (N_ "Process exactly POSIX bc")
complete -c bc -s q -l quiet -d (N_ "Do not print the GNU welcome")
complete -c bc -s v -l version -d (N_ "Display version and exit")
complete -c bc -s h -l help -d (N_ "Display help and exit")

View file

@ -6,10 +6,10 @@ complete -c bunzip2 -x -a "(
)
"
complete -c bunzip2 -s c -l stdout -d (_ "Decompress to stdout")
complete -c bunzip2 -s f -l force -d (_ "Overwrite")
complete -c bunzip2 -s k -l keep -d (_ "Do not overwrite")
complete -c bunzip2 -s s -l small -d (_ "Reduce memory usage")
complete -c bunzip2 -s v -l verbose -d (_ "Print compression ratios")
complete -c bunzip2 -s L -l license -d (_ "Print license")
complete -c bunzip2 -s V -l version -d (_ "Display version and exit")
complete -c bunzip2 -s c -l stdout -d (N_ "Decompress to stdout")
complete -c bunzip2 -s f -l force -d (N_ "Overwrite")
complete -c bunzip2 -s k -l keep -d (N_ "Do not overwrite")
complete -c bunzip2 -s s -l small -d (N_ "Reduce memory usage")
complete -c bunzip2 -s v -l verbose -d (N_ "Print compression ratios")
complete -c bunzip2 -s L -l license -d (N_ "Print license")
complete -c bunzip2 -s V -l version -d (N_ "Display version and exit")

View file

@ -5,4 +5,4 @@ complete -c bzcat -x -a "(
__fish_complete_suffix (commandline -ct) .tbz2 'Compressed archive'
)
"
complete -c bzcat -s s -l small -d (_ "Reduce memory usage")
complete -c bzcat -s s -l small -d (N_ "Reduce memory usage")

View file

@ -1,4 +1,4 @@
complete -c bzip2 -s c -l stdout -d (_ "Compress to stdout")
complete -c bzip2 -s c -l stdout -d (N_ "Compress to stdout")
complete -c bzip2 -s d -l decompress -x -a "(
__fish_complete_suffix (commandline -ct) .bz 'Compressed file'
__fish_complete_suffix (commandline -ct) .bz2 'Compressed file'
@ -6,14 +6,14 @@ complete -c bzip2 -s d -l decompress -x -a "(
__fish_complete_suffix (commandline -ct) .tbz2 'Compressed archive'
)
"
complete -c bzip2 -s z -l compress -d (_ "Compress file")
complete -c bzip2 -s t -l test -d (_ "Check integrity")
complete -c bzip2 -s f -l force -d (_ "Overwrite")
complete -c bzip2 -s k -l keep -d (_ "Do not overwrite")
complete -c bzip2 -s s -l small -d (_ "Reduce memory usage")
complete -c bzip2 -s q -l quiet -d (_ "Supress errors")
complete -c bzip2 -s v -l verbose -d (_ "Print compression ratios")
complete -c bzip2 -s L -l license -d (_ "Print license")
complete -c bzip2 -s V -l version -d (_ "Display version and exit")
complete -c bzip2 -s 1 -l fast -d (_ "Small block size")
complete -c bzip2 -s 9 -l best -d (_ "Large block size")
complete -c bzip2 -s z -l compress -d (N_ "Compress file")
complete -c bzip2 -s t -l test -d (N_ "Check integrity")
complete -c bzip2 -s f -l force -d (N_ "Overwrite")
complete -c bzip2 -s k -l keep -d (N_ "Do not overwrite")
complete -c bzip2 -s s -l small -d (N_ "Reduce memory usage")
complete -c bzip2 -s q -l quiet -d (N_ "Supress errors")
complete -c bzip2 -s v -l verbose -d (N_ "Print compression ratios")
complete -c bzip2 -s L -l license -d (N_ "Print license")
complete -c bzip2 -s V -l version -d (N_ "Display version and exit")
complete -c bzip2 -s 1 -l fast -d (N_ "Small block size")
complete -c bzip2 -s 9 -l best -d (N_ "Large block size")

View file

@ -1,12 +1,12 @@
complete -c cat -s A -l show-all -d (_ "Escape all non-printing characters")
complete -c cat -s b -l number-nonblank -d (_ "Number nonblank lines")
complete -c cat -s e -d (_ "Escape non-printing characters except tab")
complete -c cat -s E -l show-ends -d (_ "Display \$ at end of line")
complete -c cat -s n -l number -d (_ "Number all lines")
complete -c cat -s s -l squeeze-blank -d (_ "Never more than single blank line")
complete -c cat -s t -d (_ "Escape non-printing characters except newline")
complete -c cat -s T -l show-tabs -d (_ "Escape tab")
complete -c cat -s v -d (_ "Escape non-printing except newline and tab")
complete -c cat -l help -d (_ "Display help and exit")
complete -c cat -l version -d (_ "Display version and exit")
complete -c cat -s A -l show-all -d (N_ "Escape all non-printing characters")
complete -c cat -s b -l number-nonblank -d (N_ "Number nonblank lines")
complete -c cat -s e -d (N_ "Escape non-printing characters except tab")
complete -c cat -s E -l show-ends -d (N_ "Display \$ at end of line")
complete -c cat -s n -l number -d (N_ "Number all lines")
complete -c cat -s s -l squeeze-blank -d (N_ "Never more than single blank line")
complete -c cat -s t -d (N_ "Escape non-printing characters except newline")
complete -c cat -s T -l show-tabs -d (N_ "Escape tab")
complete -c cat -s v -d (N_ "Escape non-printing except newline and tab")
complete -c cat -l help -d (N_ "Display help and exit")
complete -c cat -l version -d (N_ "Display version and exit")

View file

@ -1,12 +1,12 @@
complete -c chgrp -s c -l changes -d (_ "Output diagnostic for changed files")
complete -c chgrp -l dereference -d (_ "Dereferense symbolic links")
complete -c chgrp -s h -l no-dereference -d (_ "Do not dereference symbolic links")
complete -c chgrp -l from -d (_ "Change from owner/group")
complete -c chgrp -s f -l silent -d (_ "Supress errors")
complete -c chgrp -l reference -d (_ "Use same owner/group as file") -r
complete -c chgrp -s R -l recursive -d (_ "Operate recursively")
complete -c chgrp -s v -l verbose -d (_ "Output diagnostic for every file")
complete -c chgrp -s h -l help -d (_ "Display help and exit")
complete -c chgrp -l version -d (_ "Display version and exit")
complete -c chgrp -s c -l changes -d (N_ "Output diagnostic for changed files")
complete -c chgrp -l dereference -d (N_ "Dereferense symbolic links")
complete -c chgrp -s h -l no-dereference -d (N_ "Do not dereference symbolic links")
complete -c chgrp -l from -d (N_ "Change from owner/group")
complete -c chgrp -s f -l silent -d (N_ "Supress errors")
complete -c chgrp -l reference -d (N_ "Use same owner/group as file") -r
complete -c chgrp -s R -l recursive -d (N_ "Operate recursively")
complete -c chgrp -s v -l verbose -d (N_ "Output diagnostic for every file")
complete -c chgrp -s h -l help -d (N_ "Display help and exit")
complete -c chgrp -l version -d (N_ "Display version and exit")
complete -c chgrp -d Group -a "(__fish_complete_groups)"

View file

@ -1,12 +1,12 @@
complete -c chown -s c -l changes -d (_ "Output diagnostic for changed files")
complete -c chown -l dereference -d (_ "Dereferense symbolic links")
complete -c chown -s h -l no-dereference -d (_ "Do not dereference symbolic links")
complete -c chown -l from -d (_ "Change from owner/group")
complete -c chown -s f -l silent -d (_ "Supress errors")
complete -c chown -l reference -d (_ "Use same owner/group as file") -r
complete -c chown -s R -l recursive -d (_ "Operate recursively")
complete -c chown -s v -l verbose -d (_ "Output diagnostic for every file")
complete -c chown -s h -l help -d (_ "Display help and exit")
complete -c chown -l version -d (_ "Display version and exit")
complete -c chown -d (_ "Username") -a "(__fish_print_users):"
complete -c chown -d (_ "Username") -a "(echo (commandline -ct)|grep -o '.*:')(cat /etc/group |cut -d : -f 1)"
complete -c chown -s c -l changes -d (N_ "Output diagnostic for changed files")
complete -c chown -l dereference -d (N_ "Dereferense symbolic links")
complete -c chown -s h -l no-dereference -d (N_ "Do not dereference symbolic links")
complete -c chown -l from -d (N_ "Change from owner/group")
complete -c chown -s f -l silent -d (N_ "Supress errors")
complete -c chown -l reference -d (N_ "Use same owner/group as file") -r
complete -c chown -s R -l recursive -d (N_ "Operate recursively")
complete -c chown -s v -l verbose -d (N_ "Output diagnostic for every file")
complete -c chown -s h -l help -d (N_ "Display help and exit")
complete -c chown -l version -d (N_ "Display version and exit")
complete -c chown -d (N_ "Username") -a "(__fish_print_users):"
complete -c chown -d (N_ "Username") -a "(echo (commandline -ct)|grep -o '.*:')(cat /etc/group |cut -d : -f 1)"

View file

@ -1,12 +1,12 @@
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")
complete -c commandline -s r -l replace -d (_ "Replace selected part")
complete -c commandline -s a -l append -d (N_ "Add text to the end of the selected area")
complete -c commandline -s i -l insert -d (N_ "Add text at cursor")
complete -c commandline -s r -l replace -d (N_ "Replace selected part")
complete -c commandline -s j -l current-job -d (_ "Select job under cursor")
complete -c commandline -s p -l current-process -d (_ "Select process under cursor")
complete -c commandline -s t -l current-token -d (_ "Select token under cursor")
complete -c commandline -s b -l current-buffer -d (_ "Select entire command line (default)")
complete -c commandline -s j -l current-job -d (N_ "Select job under cursor")
complete -c commandline -s p -l current-process -d (N_ "Select process under cursor")
complete -c commandline -s t -l current-token -d (N_ "Select token under cursor")
complete -c commandline -s b -l current-buffer -d (N_ "Select entire command line (default)")
complete -c commandline -s c -l cut-at-cursor -d (_ "Only return that part of the command line before the cursor")
complete -c commandline -s f -l function -d (_ "Inject readline functions to reader")
complete -c commandline -s c -l cut-at-cursor -d (N_ "Only return that part of the command line before the cursor")
complete -c commandline -s f -l function -d (N_ "Inject readline functions to reader")

View file

@ -1,14 +1,14 @@
complete -c complete -s c -l command -d (_ "Command to add completion to") -r
complete -c complete -s p -l path -d (_ "Path to add completion to")
complete -c complete -s s -l short-option -d (_ "Posix-style option to complete")
complete -c complete -s l -l long-option -d (_ "GNU-style option to complete")
complete -c complete -s o -l old-option -d (_ "Old style long option to complete")
complete -c complete -s f -l no-files -d (_ "Do not use file completion")
complete -c complete -s r -l require-parameter -d (_ "Require parameter")
complete -c complete -s x -l exclusive -d (_ "Require parameter and do not use file completion")
complete -c complete -s a -l arguments -d (_ "A list of possible arguments")
complete -c complete -s d -l description -d (_ "Description of this completions")
complete -c complete -s u -l unauthorative -d (_ "Option list is not complete")
complete -c complete -s e -l erase -d (_ "Remove completion")
complete -c complete -s h -l help -d (_ "Display help and exit")
complete -c complete -s C -l do-complete -d (_ "Print all completions for the specified commandline")
complete -c complete -s c -l command -d (N_ "Command to add completion to") -r
complete -c complete -s p -l path -d (N_ "Path to add completion to")
complete -c complete -s s -l short-option -d (N_ "Posix-style option to complete")
complete -c complete -s l -l long-option -d (N_ "GNU-style option to complete")
complete -c complete -s o -l old-option -d (N_ "Old style long option to complete")
complete -c complete -s f -l no-files -d (N_ "Do not use file completion")
complete -c complete -s r -l require-parameter -d (N_ "Require parameter")
complete -c complete -s x -l exclusive -d (N_ "Require parameter and do not use file completion")
complete -c complete -s a -l arguments -d (N_ "A list of possible arguments")
complete -c complete -s d -l description -d (N_ "Description of this completions")
complete -c complete -s u -l unauthorative -d (N_ "Option list is not complete")
complete -c complete -s e -l erase -d (N_ "Remove completion")
complete -c complete -s h -l help -d (N_ "Display help and exit")
complete -c complete -s C -l do-complete -d (N_ "Print all completions for the specified commandline")

View file

@ -1,12 +1,12 @@
complete -c configure -s h -l help -x -a "short recursive" -d (_ "Display help and exit")
complete -c configure -s V -l version -d (_ "Display version and exit")
complete -c configure -s q -l quiet -d (_ "Quiet mode")
complete -c configure -l cache-file -f -d (_ "Cache test results in specified file")
complete -c configure -s C -l config-cache -d (_ "Cache test results in file config.cache")
complete -c configure -s n -l no-create -d (_ "Do not create output files")
complete -c configure -l srcdir -d (_ "Set source directory") -a "__fish_complete_directory (commandline -ct)" -x
complete -c configure -l prefix -d (_ "Architecture-independent install directory") -a "__fish_complete_directory (commandline -ct)" -x
complete -c configure -l exec-prefix -d (_ "Architecture-dependent install directory") -a "__fish_complete_directory (commandline -ct)" -x
complete -c configure -l build -d (_ "Configure for building on BUILD") -x
complete -c configure -l host -d (_ "Cross-compile to build programs to run on HOST") -x
complete -c configure -l target -d (_ "Configure for building compilers for TARGET") -x -u
complete -c configure -s h -l help -x -a "short recursive" -d (N_ "Display help and exit")
complete -c configure -s V -l version -d (N_ "Display version and exit")
complete -c configure -s q -l quiet -d (N_ "Quiet mode")
complete -c configure -l cache-file -f -d (N_ "Cache test results in specified file")
complete -c configure -s C -l config-cache -d (N_ "Cache test results in file config.cache")
complete -c configure -s n -l no-create -d (N_ "Do not create output files")
complete -c configure -l srcdir -d (N_ "Set source directory") -a "__fish_complete_directory (commandline -ct)" -x
complete -c configure -l prefix -d (N_ "Architecture-independent install directory") -a "__fish_complete_directory (commandline -ct)" -x
complete -c configure -l exec-prefix -d (N_ "Architecture-dependent install directory") -a "__fish_complete_directory (commandline -ct)" -x
complete -c configure -l build -d (N_ "Configure for building on BUILD") -x
complete -c configure -l host -d (N_ "Cross-compile to build programs to run on HOST") -x
complete -c configure -l target -d (N_ "Configure for building compilers for TARGET") -x -u

View file

@ -1,10 +1,10 @@
complete -c cut -s b -l bytes -x -d (_ "Output byte range")
complete -c cut -s c -l characters -x -d (_ "Output character range")
complete -c cut -s d -l delimiter -x -d (_ "Select field delimiter")
complete -c cut -s d -l fields -x -d (_ "Select fields")
complete -c cut -s n -d (_ "Dont split mutibyte characters")
complete -c cut -s s -l only-delimited -d (_ "Do not print lines without delimiter")
complete -c cut -l output-delimiter -d (_ "Select output delimiter")
complete -c cut -l help -d (_ "Display help and exit")
complete -c cut -l version -d (_ "Display version and exit")
complete -c cut -s b -l bytes -x -d (N_ "Output byte range")
complete -c cut -s c -l characters -x -d (N_ "Output character range")
complete -c cut -s d -l delimiter -x -d (N_ "Select field delimiter")
complete -c cut -s d -l fields -x -d (N_ "Select fields")
complete -c cut -s n -d (N_ "Dont split mutibyte characters")
complete -c cut -s s -l only-delimited -d (N_ "Do not print lines without delimiter")
complete -c cut -l output-delimiter -d (N_ "Select output delimiter")
complete -c cut -l help -d (N_ "Display help and exit")
complete -c cut -l version -d (N_ "Display version and exit")

View file

@ -56,40 +56,40 @@ complete -c cvs -n '__fish_no_cvs_subcommand' -xa 'watchers\t"'(_ "See who is wa
# cvs_options switches, which must be specified before a command.
#
complete -c cvs -n '__fish_no_cvs_subcommand' -x -l allow-root -d (_ "Specify legal cvsroot directory." )
complete -c cvs -n '__fish_no_cvs_subcommand' -s a -d (_ "Authenticate all net traffic")
complete -c cvs -n '__fish_no_cvs_subcommand' -r -s T -d (_ "Use "tmpdir" for temporary files")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s d -d (_ "Overrides $CVSROOT as the root of the CVS tree")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s e -d (_ "Use "editor" for editing log information")
complete -c cvs -n '__fish_no_cvs_subcommand' -s f -d (_ "Do not use the ~/.cvsrc file")
complete -c cvs -n '__fish_no_cvs_subcommand' -s H -d (_ "Displays usage information for command")
complete -c cvs -n '__fish_no_cvs_subcommand' -s n -d (_ "Do not change any files")
complete -c cvs -n '__fish_no_cvs_subcommand' -s Q -d (_ "Cause CVS to be really quiet")
complete -c cvs -n '__fish_no_cvs_subcommand' -s R -d (_ "Read-only repository mode")
complete -c cvs -n '__fish_no_cvs_subcommand' -s q -d (_ "Cause CVS to be somewhat quiet")
complete -c cvs -n '__fish_no_cvs_subcommand' -s r -d (_ "Make checked-out files read-only")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s s -d (_ "Set CVS user variable")
complete -c cvs -n '__fish_no_cvs_subcommand' -s t -d (_ "Show trace of program execution -- try with -n")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s v -d (_ "Display version and exit")
complete -c cvs -n '__fish_no_cvs_subcommand' -s w -d (_ "Make checked-out files read-write (default)")
complete -c cvs -n '__fish_no_cvs_subcommand' -s x -d (_ "Encrypt all net traffic")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s z -d (_ "Compression level for net traffic") -a '1 2 3 4 5 6 7 8 9'
complete -c cvs -n '__fish_no_cvs_subcommand' -x -l allow-root -d (N_ "Specify legal cvsroot directory." )
complete -c cvs -n '__fish_no_cvs_subcommand' -s a -d (N_ "Authenticate all net traffic")
complete -c cvs -n '__fish_no_cvs_subcommand' -r -s T -d (N_ "Use "tmpdir" for temporary files")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s d -d (N_ "Overrides $CVSROOT as the root of the CVS tree")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s e -d (N_ "Use "editor" for editing log information")
complete -c cvs -n '__fish_no_cvs_subcommand' -s f -d (N_ "Do not use the ~/.cvsrc file")
complete -c cvs -n '__fish_no_cvs_subcommand' -s H -d (N_ "Displays usage information for command")
complete -c cvs -n '__fish_no_cvs_subcommand' -s n -d (N_ "Do not change any files")
complete -c cvs -n '__fish_no_cvs_subcommand' -s Q -d (N_ "Cause CVS to be really quiet")
complete -c cvs -n '__fish_no_cvs_subcommand' -s R -d (N_ "Read-only repository mode")
complete -c cvs -n '__fish_no_cvs_subcommand' -s q -d (N_ "Cause CVS to be somewhat quiet")
complete -c cvs -n '__fish_no_cvs_subcommand' -s r -d (N_ "Make checked-out files read-only")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s s -d (N_ "Set CVS user variable")
complete -c cvs -n '__fish_no_cvs_subcommand' -s t -d (N_ "Show trace of program execution -- try with -n")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s v -d (N_ "Display version and exit")
complete -c cvs -n '__fish_no_cvs_subcommand' -s w -d (N_ "Make checked-out files read-write (default)")
complete -c cvs -n '__fish_no_cvs_subcommand' -s x -d (N_ "Encrypt all net traffic")
complete -c cvs -n '__fish_no_cvs_subcommand' -x -s z -d (N_ "Compression level for net traffic") -a '1 2 3 4 5 6 7 8 9'
#
# Universal cvs options, which can be applied to any cvs command.
#
complete -c cvs -n '__fish_seen_subcommand_from checkout diff export history rdiff rtag update' -x -s D -d (_ "Use the most recent revision no later than date")
complete -c cvs -n '__fish_seen_subcommand_from annotate export rdiff rtag update' -s f -d (_ "Retrieve files even when no match for tag/date")
complete -c cvs -n '__fish_seen_subcommand_from add checkout diff import update' -x -s k -d (_ "Alter default keyword processing")
complete -c cvs -n '__fish_seen_subcommand_from annotate checkout commit diff edit editors export log rdiff remove rtag status tag unedit update watch watchers' -s l -d (_ "Don't recurse")
complete -c cvs -n '__fish_seen_subcommand_from add commit import' -x -s m -d (_ "Specify log message instead of invoking editor")
complete -c cvs -n '__fish_seen_subcommand_from checkout commit export rtag' -s n -d (_ "Don't run any tag programs")
complete -c cvs -n 'not __fish_no_cvs_subcommand' -s P -d (_ "Prune empty directories")
complete -c cvs -n '__fish_seen_subcommand_from checkout update' -s p -d (_ "Pipe files to stdout")
complete -c cvs -n '__fish_seen_subcommand_from annotate checkout commit diff edit editors export rdiff remove rtag status tag unedit update watch watchers' -s R -d (_ "Process directories recursively")
complete -c cvs -n '__fish_seen_subcommand_from annotate checkout commit diff history export rdiff rtag update' -x -s r -d (_ "Use a specified tag")
complete -c cvs -n '__fish_seen_subcommand_from import update' -r -s W -d (_ "Specify filenames to be filtered")
complete -c cvs -n '__fish_seen_subcommand_from checkout diff export history rdiff rtag update' -x -s D -d (N_ "Use the most recent revision no later than date")
complete -c cvs -n '__fish_seen_subcommand_from annotate export rdiff rtag update' -s f -d (N_ "Retrieve files even when no match for tag/date")
complete -c cvs -n '__fish_seen_subcommand_from add checkout diff import update' -x -s k -d (N_ "Alter default keyword processing")
complete -c cvs -n '__fish_seen_subcommand_from annotate checkout commit diff edit editors export log rdiff remove rtag status tag unedit update watch watchers' -s l -d (N_ "Don't recurse")
complete -c cvs -n '__fish_seen_subcommand_from add commit import' -x -s m -d (N_ "Specify log message instead of invoking editor")
complete -c cvs -n '__fish_seen_subcommand_from checkout commit export rtag' -s n -d (N_ "Don't run any tag programs")
complete -c cvs -n 'not __fish_no_cvs_subcommand' -s P -d (N_ "Prune empty directories")
complete -c cvs -n '__fish_seen_subcommand_from checkout update' -s p -d (N_ "Pipe files to stdout")
complete -c cvs -n '__fish_seen_subcommand_from annotate checkout commit diff edit editors export rdiff remove rtag status tag unedit update watch watchers' -s R -d (N_ "Process directories recursively")
complete -c cvs -n '__fish_seen_subcommand_from annotate checkout commit diff history export rdiff rtag update' -x -s r -d (N_ "Use a specified tag")
complete -c cvs -n '__fish_seen_subcommand_from import update' -r -s W -d (N_ "Specify filenames to be filtered")
#
# cvs options for admin. Note that all options marked as "useless", "might not
@ -97,90 +97,90 @@ complete -c cvs -n '__fish_seen_subcommand_from import update' -r -s W -d (_ "Sp
#
set -l admin_opt -c cvs -n 'contains admin (commandline -poc)'
complete $admin_opt -x -s k -d (_ "Set the default keyword substitution")
complete $admin_opt -s l -d (_ "Lock a revision")
complete $admin_opt -x -s m -d (_ "Replace a log message")
complete $admin_opt -x -s n -d (_ "Force name/rev association")
complete $admin_opt -x -s N -d (_ "Make a name/rev association")
complete $admin_opt -s q -d (_ "Run quietly")
complete $admin_opt -x -s s -d (_ "Set a state attribute for a revision")
complete $admin_opt -s t -d (_ "Write descriptive text from a file into RCS")
complete $admin_opt -x -o t- -d (_ "Write descriptive text into RCS")
complete $admin_opt -x -s l -d (_ "Unlock a revision")
complete $admin_opt -x -s k -d (N_ "Set the default keyword substitution")
complete $admin_opt -s l -d (N_ "Lock a revision")
complete $admin_opt -x -s m -d (N_ "Replace a log message")
complete $admin_opt -x -s n -d (N_ "Force name/rev association")
complete $admin_opt -x -s N -d (N_ "Make a name/rev association")
complete $admin_opt -s q -d (N_ "Run quietly")
complete $admin_opt -x -s s -d (N_ "Set a state attribute for a revision")
complete $admin_opt -s t -d (N_ "Write descriptive text from a file into RCS")
complete $admin_opt -x -o t- -d (N_ "Write descriptive text into RCS")
complete $admin_opt -x -s l -d (N_ "Unlock a revision")
#
# cvs options for annotate.
#
set -l annotate_opt -c cvs -n 'contains annotate (commandline -poc)'
complete $annotate_opt -s f -d (_ "Annotate binary files")
complete $annotate_opt -s f -d (N_ "Annotate binary files")
#
# cvs options for checkout.
#
set -l checkout_opt -c cvs -n 'contains checkout (commandline -poc)'
complete $checkout_opt -s A -d (_ "Reset sticky tags/dates/k-opts")
complete $checkout_opt -s c -d (_ "Copy module file to stdout")
complete $checkout_opt -x -s d -d (_ "Name directory for working files")
complete $checkout_opt -x -s j -d (_ "Merge revisions")
complete $checkout_opt -s N -d (_ "For -d. Don't shorten paths")
complete $checkout_opt -s A -d (N_ "Reset sticky tags/dates/k-opts")
complete $checkout_opt -s c -d (N_ "Copy module file to stdout")
complete $checkout_opt -x -s d -d (N_ "Name directory for working files")
complete $checkout_opt -x -s j -d (N_ "Merge revisions")
complete $checkout_opt -s N -d (N_ "For -d. Don't shorten paths")
#
# cvs options for commit.
#
set -l commit_opt -c cvs -n 'contains commit (commandline -poc)'
complete $commit_opt -r -s F -d (_ "Read log message from file")
complete $commit_opt -s f -d (_ "Force new revision")
complete $commit_opt -r -s F -d (N_ "Read log message from file")
complete $commit_opt -s f -d (N_ "Force new revision")
#
# cvs options for diff.
#
set -l diff_opt -c cvs -n 'contains diff (commandline -poc)'
complete $diff_opt -s a -l text -d (_ "Treat all files as text")
complete $diff_opt -s b -l ignore-space-change -d (_ "Treat all whitespace as one space")
complete $diff_opt -s B -l ignore-blank-lines -d (_ "Ignore blank line only changes")
complete $diff_opt -l binary -d (_ "Binary mode")
complete $diff_opt -l brief -d (_ "Report only whether files differ")
complete $diff_opt -s c -d (_ "Use context format")
complete $diff_opt -r -s C -d (_ "Set context size")
complete $diff_opt -l context -d (_ "Set context format and, optionally, size")
complete $diff_opt -l changed-group-format -d (_ "Set line group format")
complete $diff_opt -s d -l minimal -d (_ "Try to find a smaller set of changes")
complete $diff_opt -s e -l ed -d (_ "Make output a valid ed script")
complete $diff_opt -s t -l expand-tabs -d (_ "Expand tabs to spaces")
complete $diff_opt -s f -l forward-ed -d (_ "Output that looks like an ed script")
complete $diff_opt -x -s F -d (_ "Set regexp for context, unified formats")
complete $diff_opt -s H -l speed-large-files -d (_ "Speed handling of large files with small changes")
complete $diff_opt -x -l horizon-lines -d (_ "Set horizon lines")
complete $diff_opt -s i -l ignore-case -d (_ "Ignore changes in case")
complete $diff_opt -x -s I -l ignore-matching-lines -d (_ "Ignore changes matching regexp")
complete $diff_opt -x -l ifdef -d (_ "Make ifdef from diff")
complete $diff_opt -s w -l ignore-all-space -d (_ "Ignore whitespace")
complete $diff_opt -s T -l initial-tab -d (_ "Start lines with a tab")
complete $diff_opt -x -s L -l label -d (_ "Use label instead of filename in output")
complete $diff_opt -l left-column -d (_ "Print only left column")
complete $diff_opt -x -l line-format -d (_ "Use format to produce if-then-else output")
complete $diff_opt -s n -l rcs -d (_ "Produce RCS-style diffs")
complete $diff_opt -s N -l new-file -d (_ "Treat files absent from one dir as empty")
complete $diff_opt -l new-group-format -l new-line-format -l old-group-format -l old-line-format -d (_ "Specifies line formatting")
complete $diff_opt -s p -l show-c-function -d (_ "Identify the C function each change is in")
complete $diff_opt -s s -l report-identical-files -d (_ "Report identical files")
complete $diff_opt -s y -l side-by-side -d (_ "Use side-by-side format")
complete $diff_opt -l suppress-common-lines -d (_ "Suppress common lines in side-by-side")
complete $diff_opt -s u -l unified -d (_ "Use unified format")
complete $diff_opt -x -s U -d (_ "Set context size in unified")
complete $diff_opt -x -s W -l width -d (_ "Set column width for side-by-side format")
complete $diff_opt -s a -l text -d (N_ "Treat all files as text")
complete $diff_opt -s b -l ignore-space-change -d (N_ "Treat all whitespace as one space")
complete $diff_opt -s B -l ignore-blank-lines -d (N_ "Ignore blank line only changes")
complete $diff_opt -l binary -d (N_ "Binary mode")
complete $diff_opt -l brief -d (N_ "Report only whether files differ")
complete $diff_opt -s c -d (N_ "Use context format")
complete $diff_opt -r -s C -d (N_ "Set context size")
complete $diff_opt -l context -d (N_ "Set context format and, optionally, size")
complete $diff_opt -l changed-group-format -d (N_ "Set line group format")
complete $diff_opt -s d -l minimal -d (N_ "Try to find a smaller set of changes")
complete $diff_opt -s e -l ed -d (N_ "Make output a valid ed script")
complete $diff_opt -s t -l expand-tabs -d (N_ "Expand tabs to spaces")
complete $diff_opt -s f -l forward-ed -d (N_ "Output that looks like an ed script")
complete $diff_opt -x -s F -d (N_ "Set regexp for context, unified formats")
complete $diff_opt -s H -l speed-large-files -d (N_ "Speed handling of large files with small changes")
complete $diff_opt -x -l horizon-lines -d (N_ "Set horizon lines")
complete $diff_opt -s i -l ignore-case -d (N_ "Ignore changes in case")
complete $diff_opt -x -s I -l ignore-matching-lines -d (N_ "Ignore changes matching regexp")
complete $diff_opt -x -l ifdef -d (N_ "Make ifdef from diff")
complete $diff_opt -s w -l ignore-all-space -d (N_ "Ignore whitespace")
complete $diff_opt -s T -l initial-tab -d (N_ "Start lines with a tab")
complete $diff_opt -x -s L -l label -d (N_ "Use label instead of filename in output")
complete $diff_opt -l left-column -d (N_ "Print only left column")
complete $diff_opt -x -l line-format -d (N_ "Use format to produce if-then-else output")
complete $diff_opt -s n -l rcs -d (N_ "Produce RCS-style diffs")
complete $diff_opt -s N -l new-file -d (N_ "Treat files absent from one dir as empty")
complete $diff_opt -l new-group-format -l new-line-format -l old-group-format -l old-line-format -d (N_ "Specifies line formatting")
complete $diff_opt -s p -l show-c-function -d (N_ "Identify the C function each change is in")
complete $diff_opt -s s -l report-identical-files -d (N_ "Report identical files")
complete $diff_opt -s y -l side-by-side -d (N_ "Use side-by-side format")
complete $diff_opt -l suppress-common-lines -d (N_ "Suppress common lines in side-by-side")
complete $diff_opt -s u -l unified -d (N_ "Use unified format")
complete $diff_opt -x -s U -d (N_ "Set context size in unified")
complete $diff_opt -x -s W -l width -d (N_ "Set column width for side-by-side format")
#
# cvs export options.
#
set -l export_opt -c cvs -n 'contains export (commandline -poc)'
complete $export_opt -x -s d -d (_ "Name directory for working files")
complete $export_opt -s N -d (_ "For -d. Don't shorten paths")
complete $export_opt -x -s d -d (N_ "Name directory for working files")
complete $export_opt -s N -d (N_ "For -d. Don't shorten paths")
#
# cvs history options.
@ -188,64 +188,64 @@ complete $export_opt -s N -d (_ "For -d. Don't shorten paths")
#
set -l history_opt -c cvs -n 'contains history (commandline -poc)'
complete $history_opt -s c -d (_ "Report on each commit")
complete $history_opt -s e -d (_ "Report on everything")
complete $history_opt -x -s m -d (_ "Report on a module")
complete $history_opt -s o -d (_ "Report on checked-out modules")
complete $history_opt -s T -d (_ "Report on all tags")
complete $history_opt -x -s x -d (_ "Specify record type") -a "F\trelease O\tcheckout E\texport T\trtag C\tcollisions G\tmerge U\t'Working file copied from repository' P\t'Working file patched to repository' W\t'Working copy deleted during update' A\t'New file added' M\t'File modified' R\t'File removed.'"
complete $history_opt -s a -d (_ "Show history for all users")
complete $history_opt -s l -d (_ "Show last modification only")
complete $history_opt -s w -d (_ "Show only records for this directory")
complete $history_opt -s c -d (N_ "Report on each commit")
complete $history_opt -s e -d (N_ "Report on everything")
complete $history_opt -x -s m -d (N_ "Report on a module")
complete $history_opt -s o -d (N_ "Report on checked-out modules")
complete $history_opt -s T -d (N_ "Report on all tags")
complete $history_opt -x -s x -d (N_ "Specify record type") -a "F\trelease O\tcheckout E\texport T\trtag C\tcollisions G\tmerge U\t'Working file copied from repository' P\t'Working file patched to repository' W\t'Working copy deleted during update' A\t'New file added' M\t'File modified' R\t'File removed.'"
complete $history_opt -s a -d (N_ "Show history for all users")
complete $history_opt -s l -d (N_ "Show last modification only")
complete $history_opt -s w -d (N_ "Show only records for this directory")
#
# cvs import options.
#
set -l import_opt -c cvs -n 'contains import (commandline -poc)'
complete $import_opt -x -s b -d (_ "Multiple vendor branch")
complete $import_opt -r -s I -d (_ "Files to ignore during import")
complete $import_opt -x -s b -d (N_ "Multiple vendor branch")
complete $import_opt -r -s I -d (N_ "Files to ignore during import")
#
# cvs log options.
#
set -l log_opt -c cvs -n 'contains log (commandline -poc)'
complete $log_opt -s b -d (_ "Print info about revision on default branch")
complete $log_opt -x -s d -d (_ "Specify date range for query")
complete $log_opt -s h -d (_ "Print only file info")
complete $log_opt -s N -d (_ "Do not print tags")
complete $log_opt -s R -d (_ "Print only rcs filename")
complete $log_opt -x -s r -d (_ "Print only given revisions")
complete $log_opt -s S -d (_ "Suppress header if no revisions found")
complete $log_opt -x -s s -d (_ "Specify revision states")
complete $log_opt -s t -d (_ "Same as -h, plus descriptive text")
complete $log_opt -x -s w -d (_ "Specify users for query")
complete $log_opt -s b -d (N_ "Print info about revision on default branch")
complete $log_opt -x -s d -d (N_ "Specify date range for query")
complete $log_opt -s h -d (N_ "Print only file info")
complete $log_opt -s N -d (N_ "Do not print tags")
complete $log_opt -s R -d (N_ "Print only rcs filename")
complete $log_opt -x -s r -d (N_ "Print only given revisions")
complete $log_opt -s S -d (N_ "Suppress header if no revisions found")
complete $log_opt -x -s s -d (N_ "Specify revision states")
complete $log_opt -s t -d (N_ "Same as -h, plus descriptive text")
complete $log_opt -x -s w -d (N_ "Specify users for query")
#
# cvs rdiff options.
#
set -l rdiff_opt -c cvs -n 'contains rdiff (commandline -poc)'
complete $rdiff_opt -s c -d (_ "Use context diff format")
complete $rdiff_opt -s s -d (_ "Create summary change report")
complete $rdiff_opt -s t -d (_ "diff top two revisions")
complete $rdiff_opt -s u -d (_ "Use unidiff format")
complete $rdiff_opt -s c -d (N_ "Use context diff format")
complete $rdiff_opt -s s -d (N_ "Create summary change report")
complete $rdiff_opt -s t -d (N_ "diff top two revisions")
complete $rdiff_opt -s u -d (N_ "Use unidiff format")
#
# cvs release options.
#
complete -c cvs -n 'contains release (commandline -poc)' -s d -d (_ "Delete working copy if release succeeds")
complete -c cvs -n 'contains release (commandline -poc)' -s d -d (N_ "Delete working copy if release succeeds")
#
# cvs update options.
#
set -l update_opt -c cvs -n 'contains update (commandline -poc)'
complete $update_opt -s A -d (_ "Reset sticky tags, dates, and k-opts")
complete $update_opt -s C -d (_ "Overwrite modified files with clean copies")
complete $update_opt -s d -d (_ "Create any missing directories")
complete $update_opt -x -s I -d (_ "Specify files to ignore")
complete $update_opt -x -s j -d (_ "Merge revisions")
complete $update_opt -s A -d (N_ "Reset sticky tags, dates, and k-opts")
complete $update_opt -s C -d (N_ "Overwrite modified files with clean copies")
complete $update_opt -s d -d (N_ "Create any missing directories")
complete $update_opt -x -s I -d (N_ "Specify files to ignore")
complete $update_opt -x -s j -d (N_ "Merge revisions")

View file

@ -58,179 +58,179 @@ complete -c darcs -n '__fish_use_subcommand' -xa 'repair\t"'(_ "Repair the corru
#
# These switches are universal
#
complete -c darcs -s h -l help -d (_ "Shows brief description of command and its arguments")
complete -c darcs -l disable -d (_ "Disable this command")
complete -c darcs -l repodir -d (_ "Specify the repository directory in which to run") -x -a '(__fish_complete_directory (commandline -ct))'
complete -c darcs -s v -l verbose -d (_ "Verbose mode")
complete -c darcs -l standard-verbosity -d (_ "Neither verbose nor quiet output")
complete -c darcs -s h -l help -d (N_ "Shows brief description of command and its arguments")
complete -c darcs -l disable -d (N_ "Disable this command")
complete -c darcs -l repodir -d (N_ "Specify the repository directory in which to run") -x -a '(__fish_complete_directory (commandline -ct))'
complete -c darcs -s v -l verbose -d (N_ "Verbose mode")
complete -c darcs -l standard-verbosity -d (N_ "Neither verbose nor quiet output")
#
# Here follows a huge list of subcommand-specific completions. These are incomplete.
#
set -l record_opt -c darcs -n 'contains record (commandline -poc)'
complete $record_opt -s m -l patch-name -d (_ "Name of patch") -x
complete $record_opt -s A -l author -d (_ "Specify author id") -x
complete $record_opt -l logfile -d (_ "Give patch name and comment in file") -r
complete $record_opt -s a -l all -d (_ "Answer yes to all patches")
complete $record_opt -s l -l look-for-adds -d (_ "In addition to modifications, look for files that are not boring, and thus are potentially pending addition")
complete $record_opt -l delete-logfile -d (_ "Delete the logfile when done")
complete $record_opt -l no-test -d (_ "Don't run the test script")
complete $record_opt -l test -d (_ "Run the test script")
complete $record_opt -l leave-test-directory -d (_ "Don't remove the test directory")
complete $record_opt -l remove-test-directory -d (_ "Remove the test directory")
complete $record_opt -l compress -d (_ "Create compressed patches")
complete $record_opt -l dont-compress -d (_ "Don't create compressed patches")
complete $record_opt -l pipe -d (_ "Expect to receive input from a pipe")
complete $record_opt -l interactive -d (_ "Prompt user interactively")
complete $record_opt -l ask-deps -d (_ "Ask for extra dependencies")
complete $record_opt -l no-ask-deps -d (_ "Don't ask for extra dependencies")
complete $record_opt -l edit-long-comment -d (_ "Edit the long comment by default")
complete $record_opt -l skip-long-comment -d (_ "Don't give a long comment")
complete $record_opt -l prompt-long-comment -d (_ "Prompt for whether to edit the long comment")
complete $record_opt -l ignore-times -d (_ "Don't trust the file modification times")
complete $record_opt -l dont-look-for-adds -d (_ "Don't look for any files or directories that could be added, and don't add them automatically")
complete $record_opt -s m -l patch-name -d (N_ "Name of patch") -x
complete $record_opt -s A -l author -d (N_ "Specify author id") -x
complete $record_opt -l logfile -d (N_ "Give patch name and comment in file") -r
complete $record_opt -s a -l all -d (N_ "Answer yes to all patches")
complete $record_opt -s l -l look-for-adds -d (N_ "In addition to modifications, look for files that are not boring, and thus are potentially pending addition")
complete $record_opt -l delete-logfile -d (N_ "Delete the logfile when done")
complete $record_opt -l no-test -d (N_ "Don't run the test script")
complete $record_opt -l test -d (N_ "Run the test script")
complete $record_opt -l leave-test-directory -d (N_ "Don't remove the test directory")
complete $record_opt -l remove-test-directory -d (N_ "Remove the test directory")
complete $record_opt -l compress -d (N_ "Create compressed patches")
complete $record_opt -l dont-compress -d (N_ "Don't create compressed patches")
complete $record_opt -l pipe -d (N_ "Expect to receive input from a pipe")
complete $record_opt -l interactive -d (N_ "Prompt user interactively")
complete $record_opt -l ask-deps -d (N_ "Ask for extra dependencies")
complete $record_opt -l no-ask-deps -d (N_ "Don't ask for extra dependencies")
complete $record_opt -l edit-long-comment -d (N_ "Edit the long comment by default")
complete $record_opt -l skip-long-comment -d (N_ "Don't give a long comment")
complete $record_opt -l prompt-long-comment -d (N_ "Prompt for whether to edit the long comment")
complete $record_opt -l ignore-times -d (N_ "Don't trust the file modification times")
complete $record_opt -l dont-look-for-adds -d (N_ "Don't look for any files or directories that could be added, and don't add them automatically")
set -l pull_opt -c darcs -n 'contains pull (commandline -poc)'
complete $pull_opt -s p -l patches -d (_ "Select patches matching REGEXP") -x
complete $pull_opt -s t -l tags -d (_ "Select tags matching REGEXP") -x
complete $pull_opt -s a -l all -d (_ "Answer yes to all patches")
complete $pull_opt -s s -l summary -d (_ "Summarize changes")
complete $pull_opt -s q -l quiet -d (_ "Suppress informational output")
complete $pull_opt -l matches -d (_ "Select patches matching PATTERN") -x
complete $pull_opt -l external-merge -d (_ "Use external tool to merge conflicts") -x
complete $pull_opt -l interactive -d (_ "Prompt user interactively")
complete $pull_opt -l compress -d (_ "Create compressed patches")
complete $pull_opt -l dont-compress -d (_ "Don't create compressed patches")
complete $pull_opt -l test -d (_ "Run the test script")
complete $pull_opt -l no-test -d (_ "Don't run the test script")
complete $pull_opt -l dry-run -d (_ "Don't actually take the action")
complete $pull_opt -l no-summary -d (_ "Don't summarize changes")
complete $pull_opt -l ignore-times -d (_ "Don't trust the file modification times")
complete $pull_opt -l no-deps -d (_ "Don't automatically fulfill dependencies")
complete $pull_opt -l set-default -d (_ "Set default repository [DEFAULT]")
complete $pull_opt -l no-set-default -d (_ "Don't set default repository")
complete $pull_opt -l set-scripts-executable -d (_ "Make scripts executable")
complete $pull_opt -l dont-set-scripts-executable -d (_ "Don't make scripts executable")
complete $pull_opt -s p -l patches -d (N_ "Select patches matching REGEXP") -x
complete $pull_opt -s t -l tags -d (N_ "Select tags matching REGEXP") -x
complete $pull_opt -s a -l all -d (N_ "Answer yes to all patches")
complete $pull_opt -s s -l summary -d (N_ "Summarize changes")
complete $pull_opt -s q -l quiet -d (N_ "Suppress informational output")
complete $pull_opt -l matches -d (N_ "Select patches matching PATTERN") -x
complete $pull_opt -l external-merge -d (N_ "Use external tool to merge conflicts") -x
complete $pull_opt -l interactive -d (N_ "Prompt user interactively")
complete $pull_opt -l compress -d (N_ "Create compressed patches")
complete $pull_opt -l dont-compress -d (N_ "Don't create compressed patches")
complete $pull_opt -l test -d (N_ "Run the test script")
complete $pull_opt -l no-test -d (N_ "Don't run the test script")
complete $pull_opt -l dry-run -d (N_ "Don't actually take the action")
complete $pull_opt -l no-summary -d (N_ "Don't summarize changes")
complete $pull_opt -l ignore-times -d (N_ "Don't trust the file modification times")
complete $pull_opt -l no-deps -d (N_ "Don't automatically fulfill dependencies")
complete $pull_opt -l set-default -d (N_ "Set default repository [DEFAULT]")
complete $pull_opt -l no-set-default -d (N_ "Don't set default repository")
complete $pull_opt -l set-scripts-executable -d (N_ "Make scripts executable")
complete $pull_opt -l dont-set-scripts-executable -d (N_ "Don't make scripts executable")
set -l apply_opt -c darcs -n 'contains apply (commandline -poc)'
complete $apply_opt -s a -l all -d (_ "Answer yes to all patches")
complete $apply_opt -l verify -d (_ "Verify that the patch was signed by a key in PUBRING") -r
complete $apply_opt -l verify-ssl -d (_ "Verify using openSSL with authorized keys from specified file") -r
complete $apply_opt -l sendmail-command -d (_ "Specify sendmail command") -r
complete $apply_opt -l reply -d (_ "Reply to email-based patch using FROM address") -x
complete $apply_opt -l cc -d (_ "Mail results to additional EMAIL(s). Requires --reply") -x
complete $apply_opt -l external-merge -d (_ "Use external tool to merge conflicts") -r
complete $apply_opt -l no-verify -d (_ "Don't verify patch signature")
complete $apply_opt -l ignore-times -d (_ "Don't trust the file modification times")
complete $apply_opt -l compress -d (_ "Create compressed patches")
complete $apply_opt -l dont-compress -d (_ "Don't create compressed patches")
complete $apply_opt -l interactive -d (_ "Prompt user interactively")
complete $apply_opt -l mark-conflicts -d (_ "Mark conflicts")
complete $apply_opt -l allow-conflicts -d (_ "Allow conflicts, but don't mark them")
complete $apply_opt -l dont-allow-conflicts -d (_ "Fail on patches that create conflicts [DEFAULT]")
complete $apply_opt -l no-test -d (_ "Don't run the test script")
complete $apply_opt -l test -d (_ "Run the test script")
complete $apply_opt -l happy-forwarding -d (_ "Forward unsigned messages without extra header")
complete $apply_opt -l leave-test-directory -d (_ "Don't remove the test directory")
complete $apply_opt -l remove-test-directory -d (_ "Remove the test directory")
complete $apply_opt -l set-scripts-executable -d (_ "Make scripts executable")
complete $apply_opt -l dont-set-scripts-executable -d (_ "Don't make scripts executable")
complete $apply_opt -s a -l all -d (N_ "Answer yes to all patches")
complete $apply_opt -l verify -d (N_ "Verify that the patch was signed by a key in PUBRING") -r
complete $apply_opt -l verify-ssl -d (N_ "Verify using openSSL with authorized keys from specified file") -r
complete $apply_opt -l sendmail-command -d (N_ "Specify sendmail command") -r
complete $apply_opt -l reply -d (N_ "Reply to email-based patch using FROM address") -x
complete $apply_opt -l cc -d (N_ "Mail results to additional EMAIL(s). Requires --reply") -x
complete $apply_opt -l external-merge -d (N_ "Use external tool to merge conflicts") -r
complete $apply_opt -l no-verify -d (N_ "Don't verify patch signature")
complete $apply_opt -l ignore-times -d (N_ "Don't trust the file modification times")
complete $apply_opt -l compress -d (N_ "Create compressed patches")
complete $apply_opt -l dont-compress -d (N_ "Don't create compressed patches")
complete $apply_opt -l interactive -d (N_ "Prompt user interactively")
complete $apply_opt -l mark-conflicts -d (N_ "Mark conflicts")
complete $apply_opt -l allow-conflicts -d (N_ "Allow conflicts, but don't mark them")
complete $apply_opt -l dont-allow-conflicts -d (N_ "Fail on patches that create conflicts [DEFAULT]")
complete $apply_opt -l no-test -d (N_ "Don't run the test script")
complete $apply_opt -l test -d (N_ "Run the test script")
complete $apply_opt -l happy-forwarding -d (N_ "Forward unsigned messages without extra header")
complete $apply_opt -l leave-test-directory -d (N_ "Don't remove the test directory")
complete $apply_opt -l remove-test-directory -d (N_ "Remove the test directory")
complete $apply_opt -l set-scripts-executable -d (N_ "Make scripts executable")
complete $apply_opt -l dont-set-scripts-executable -d (N_ "Don't make scripts executable")
set -l check_opt -c darcs -n 'contains check (commandline -poc)'
complete $check_opt -s v -l verbose -d (_ "Verbose mode")
complete $check_opt -s q -l quiet -d (_ "Suppress informational output")
complete $check_opt -l complete -d (_ "Check the entire repository")
complete $check_opt -l partial -d (_ "Check patches since latest checkpoint")
complete $check_opt -l no-test -d (_ "Don't run the test script")
complete $check_opt -l test -d (_ "Run the test script")
complete $check_opt -l leave-test-directory -d (_ "Don't remove the test directory")
complete $check_opt -l remove-test-directory -d (_ "Remove the test directory")
complete $check_opt -s v -l verbose -d (N_ "Verbose mode")
complete $check_opt -s q -l quiet -d (N_ "Suppress informational output")
complete $check_opt -l complete -d (N_ "Check the entire repository")
complete $check_opt -l partial -d (N_ "Check patches since latest checkpoint")
complete $check_opt -l no-test -d (N_ "Don't run the test script")
complete $check_opt -l test -d (N_ "Run the test script")
complete $check_opt -l leave-test-directory -d (N_ "Don't remove the test directory")
complete $check_opt -l remove-test-directory -d (N_ "Remove the test directory")
set -l mv_opt -c darcs -n 'contains mv (commandline -poc)'
complete $mv_opt -s v -l verbose -d (_ "Verbose mode")
complete $mv_opt -l case-ok -d (_ "Don't refuse to add files differing only in case")
complete $mv_opt -s v -l verbose -d (N_ "Verbose mode")
complete $mv_opt -l case-ok -d (N_ "Don't refuse to add files differing only in case")
set -l send_opt -c darcs -n 'contains send (commandline -poc)'
complete $send_opt -s v -l verbose -d (_ "Verbose mode")
complete $send_opt -s q -l quiet -d (_ "Suppress informational output")
complete $send_opt -xs p -l patches -d (_ "Select patches matching REGEXP")
complete $send_opt -xs t -l tags -d (_ "Select tags matching REGEXP")
complete $send_opt -s a -l all -d (_ "Answer yes to all patches")
complete $send_opt -xs A -l author -d (_ "Specify author id")
complete $send_opt -rs o -l output -d (_ "Specify output filename")
complete $send_opt -s u -l unified -d (_ "Output patch in a darcs-specific format similar to diff -u")
complete $send_opt -s s -l summary -d (_ "Summarize changes")
complete $send_opt -xl matches -d (_ "Select patches matching PATTERN")
complete $send_opt -l interactive -d (_ "Prompt user interactively")
complete $send_opt -xl from -d (_ "Specify email address")
complete $send_opt -xl to -d (_ "Specify destination email")
complete $send_opt -xl cc -d (_ "Mail results to additional EMAIL(s). Requires --reply")
complete $send_opt -l sign -d (_ "Sign the patch with your gpg key")
complete $send_opt -xl sign-as -d (_ "Sign the patch with a given keyid")
complete $send_opt -rl sign-ssl -d (_ "Sign the patch using openssl with a given private key")
complete $send_opt -l dont-sign -d (_ "Do not sign the patch")
complete $send_opt -l dry-run -d (_ "Don't actually take the action")
complete $send_opt -l no-summary -d (_ "Don't summarize changes")
complete $send_opt -rl context -d (_ "Send to context stored in FILENAME")
complete $send_opt -l edit-description -d (_ "Edit the patch bundle description")
complete $send_opt -l set-default -d (_ "Set default repository [DEFAULT]")
complete $send_opt -l no-set-default -d (_ "Don't set default repository")
complete $send_opt -rl sendmail-command -d (_ "Specify sendmail command")
complete $send_opt -s v -l verbose -d (N_ "Verbose mode")
complete $send_opt -s q -l quiet -d (N_ "Suppress informational output")
complete $send_opt -xs p -l patches -d (N_ "Select patches matching REGEXP")
complete $send_opt -xs t -l tags -d (N_ "Select tags matching REGEXP")
complete $send_opt -s a -l all -d (N_ "Answer yes to all patches")
complete $send_opt -xs A -l author -d (N_ "Specify author id")
complete $send_opt -rs o -l output -d (N_ "Specify output filename")
complete $send_opt -s u -l unified -d (N_ "Output patch in a darcs-specific format similar to diff -u")
complete $send_opt -s s -l summary -d (N_ "Summarize changes")
complete $send_opt -xl matches -d (N_ "Select patches matching PATTERN")
complete $send_opt -l interactive -d (N_ "Prompt user interactively")
complete $send_opt -xl from -d (N_ "Specify email address")
complete $send_opt -xl to -d (N_ "Specify destination email")
complete $send_opt -xl cc -d (N_ "Mail results to additional EMAIL(s). Requires --reply")
complete $send_opt -l sign -d (N_ "Sign the patch with your gpg key")
complete $send_opt -xl sign-as -d (N_ "Sign the patch with a given keyid")
complete $send_opt -rl sign-ssl -d (N_ "Sign the patch using openssl with a given private key")
complete $send_opt -l dont-sign -d (N_ "Do not sign the patch")
complete $send_opt -l dry-run -d (N_ "Don't actually take the action")
complete $send_opt -l no-summary -d (N_ "Don't summarize changes")
complete $send_opt -rl context -d (N_ "Send to context stored in FILENAME")
complete $send_opt -l edit-description -d (N_ "Edit the patch bundle description")
complete $send_opt -l set-default -d (N_ "Set default repository [DEFAULT]")
complete $send_opt -l no-set-default -d (N_ "Don't set default repository")
complete $send_opt -rl sendmail-command -d (N_ "Specify sendmail command")
set -l init_opt -c darcs -n 'contains initialize (commandline -poc)'
complete $init_opt -l plain-pristine-tree -d (_ "Use a plain pristine tree [DEFAULT]")
complete $init_opt -l no-pristine-tree -d (_ "Use no pristine tree")
complete $init_opt -l plain-pristine-tree -d (N_ "Use a plain pristine tree [DEFAULT]")
complete $init_opt -l no-pristine-tree -d (N_ "Use no pristine tree")
set -l annotate_opt -c darcs -n 'contains annotate (commandline -poc)'
complete $annotate_opt -s s -l summary -d (_ "Summarize changes")
complete $annotate_opt -l no-summary -d (_ "Don't summarize changes")
complete $annotate_opt -s u -l unified -d (_ "Output patch in a darcs-specific format similar to diff -u")
complete $annotate_opt -l human-readable -d (_ "Give human readable output")
complete $annotate_opt -l xml-output -d (_ "Generate XML formatted output")
complete $annotate_opt -l match -x -d (_ "Select patch matching PATTERN")
complete $annotate_opt -s p -l patch -x -d (_ "Select patch matching REGEXP")
complete $annotate_opt -s t -l tag -x -d (_ "Select tag matching REGEXP")
complete $annotate_opt -l creator-hash -x -d (_ "Specify hash of creator patch (see docs)")
complete $annotate_opt -s s -l summary -d (N_ "Summarize changes")
complete $annotate_opt -l no-summary -d (N_ "Don't summarize changes")
complete $annotate_opt -s u -l unified -d (N_ "Output patch in a darcs-specific format similar to diff -u")
complete $annotate_opt -l human-readable -d (N_ "Give human readable output")
complete $annotate_opt -l xml-output -d (N_ "Generate XML formatted output")
complete $annotate_opt -l match -x -d (N_ "Select patch matching PATTERN")
complete $annotate_opt -s p -l patch -x -d (N_ "Select patch matching REGEXP")
complete $annotate_opt -s t -l tag -x -d (N_ "Select tag matching REGEXP")
complete $annotate_opt -l creator-hash -x -d (N_ "Specify hash of creator patch (see docs)")
set -l changes_opt -c darcs -n 'contains changes (commandline -poc)'
complete $changes_opt -l to-match -x -d (_ "Select changes up to a patch matching PATTERN")
complete $changes_opt -l to-patch -x -d (_ "Select changes up to a patch matching REGEXP")
complete $changes_opt -l to-tag -x -d (_ "Select changes up to a tag matching REGEXP")
complete $changes_opt -l from-match -x -d (_ "Select changes starting with a patch matching PATTERN")
complete $changes_opt -l from-patch -x -d (_ "Select changes starting with a patch matching REGEXP")
complete $changes_opt -l from-tag -x -d (_ "Select changes starting with a tag matching REGEXP")
complete $changes_opt -l last -x -d (_ "Select the last NUMBER patches")
complete $changes_opt -l matches -x -d (_ "Select patches matching PATTERN")
complete $changes_opt -s p -l patches -x -d (_ "Select patches matching REGEXP")
complete $changes_opt -s t -l tags -x -d (_ "Select tags matching REGEXP")
complete $changes_opt -l context -d (_ "Give output suitable for get --context")
complete $changes_opt -l xml-output -d (_ "Generate XML formatted output")
complete $changes_opt -l human-readable -d (_ "Give human-readable output")
complete $changes_opt -s s -l summary -d (_ "Summarize changes")
complete $changes_opt -l no-summary -d (_ "Don't summarize changes")
complete $changes_opt -s q -l quiet -d (_ "Suppress informational output")
complete $changes_opt -l reverse -d (_ "Show changes in reverse order")
complete $changes_opt -l repo -x -d (_ "Specify the repository URL")
complete $changes_opt -l to-match -x -d (N_ "Select changes up to a patch matching PATTERN")
complete $changes_opt -l to-patch -x -d (N_ "Select changes up to a patch matching REGEXP")
complete $changes_opt -l to-tag -x -d (N_ "Select changes up to a tag matching REGEXP")
complete $changes_opt -l from-match -x -d (N_ "Select changes starting with a patch matching PATTERN")
complete $changes_opt -l from-patch -x -d (N_ "Select changes starting with a patch matching REGEXP")
complete $changes_opt -l from-tag -x -d (N_ "Select changes starting with a tag matching REGEXP")
complete $changes_opt -l last -x -d (N_ "Select the last NUMBER patches")
complete $changes_opt -l matches -x -d (N_ "Select patches matching PATTERN")
complete $changes_opt -s p -l patches -x -d (N_ "Select patches matching REGEXP")
complete $changes_opt -s t -l tags -x -d (N_ "Select tags matching REGEXP")
complete $changes_opt -l context -d (N_ "Give output suitable for get --context")
complete $changes_opt -l xml-output -d (N_ "Generate XML formatted output")
complete $changes_opt -l human-readable -d (N_ "Give human-readable output")
complete $changes_opt -s s -l summary -d (N_ "Summarize changes")
complete $changes_opt -l no-summary -d (N_ "Don't summarize changes")
complete $changes_opt -s q -l quiet -d (N_ "Suppress informational output")
complete $changes_opt -l reverse -d (N_ "Show changes in reverse order")
complete $changes_opt -l repo -x -d (N_ "Specify the repository URL")
set -l add_opt -c darcs -n 'contains add (commandline -poc)'
complete $add_opt -l boring -d (_ "Don't skip boring files")
complete $add_opt -l case-ok -d (_ "Don't refuse to add files differing only in case")
complete $add_opt -s r -l recursive -d (_ "Add contents of subdirectories")
complete $add_opt -l not-recursive -d (_ "Don't add contents of subdirectories")
complete $add_opt -l date-trick -d (_ "Add files with date appended to avoid conflict. [EXPERIMENTAL]")
complete $add_opt -l no-date-trick -d (_ "Don't use experimental date appending trick. [DEFAULT]")
complete $add_opt -s q -l quiet -d (_ "Suppress informational output")
complete $add_opt -l dry-run -d (_ "Don't actually take the action")
complete $add_opt -s q -l quiet -d (_ "Suppress informational output")
complete $add_opt -l boring -d (N_ "Don't skip boring files")
complete $add_opt -l case-ok -d (N_ "Don't refuse to add files differing only in case")
complete $add_opt -s r -l recursive -d (N_ "Add contents of subdirectories")
complete $add_opt -l not-recursive -d (N_ "Don't add contents of subdirectories")
complete $add_opt -l date-trick -d (N_ "Add files with date appended to avoid conflict. [EXPERIMENTAL]")
complete $add_opt -l no-date-trick -d (N_ "Don't use experimental date appending trick. [DEFAULT]")
complete $add_opt -s q -l quiet -d (N_ "Suppress informational output")
complete $add_opt -l dry-run -d (N_ "Don't actually take the action")
complete $add_opt -s q -l quiet -d (N_ "Suppress informational output")

View file

@ -1,11 +1,11 @@
complete -c date -s d -l date -d (_ "Display date described by string") -x
complete -c date -s f -l file -d (_ "Display date for each line in file") -r
complete -c date -s I -l iso-8601 -d (_ "Output in ISO 8601 format") -x -a "date hours minutes seconds"
complete -c date -s s -l set -d (_ "Set time") -x
complete -c date -s R -l rfc-2822 -d (_ "Output RFC-2822 compliant date string")
complete -c date -s r -l reference -d (_ "Display the last modification time of file") -r
complete -c date -s u -l utc -d (_ "Print or set Coordinated Universal Time")
complete -c date -l universal -d (_ "Print or set Coordinated Universal Time")
complete -c date -s h -l help -d (_ "Display help and exit")
complete -c date -s v -l version -d (_ "Display version and exit")
complete -c date -s d -l date -d (N_ "Display date described by string") -x
complete -c date -s f -l file -d (N_ "Display date for each line in file") -r
complete -c date -s I -l iso-8601 -d (N_ "Output in ISO 8601 format") -x -a "date hours minutes seconds"
complete -c date -s s -l set -d (N_ "Set time") -x
complete -c date -s R -l rfc-2822 -d (N_ "Output RFC-2822 compliant date string")
complete -c date -s r -l reference -d (N_ "Display the last modification time of file") -r
complete -c date -s u -l utc -d (N_ "Print or set Coordinated Universal Time")
complete -c date -l universal -d (N_ "Print or set Coordinated Universal Time")
complete -c date -s h -l help -d (N_ "Display help and exit")
complete -c date -s v -l version -d (N_ "Display version and exit")

View file

@ -9,30 +9,30 @@
set -l is_gnu
df --version >/dev/null ^/dev/null; and set is_gnu --is-gnu
__fish_gnu_complete -c df -s h -l human-readable -d (_ "Human readable sizes") $is_gnu
__fish_gnu_complete -c df -s i -l inodes -d (_ "List inode information") $is_gnu
__fish_gnu_complete -c df -s k -d (_ "Use 1kB block size") $is_gnu
__fish_gnu_complete -c df -s l -l local -d (_ "List only local filesystems") $is_gnu
__fish_gnu_complete -c df -s P -l portability -d (_ "Use Posix format") $is_gnu
__fish_gnu_complete -c df -s t -l type -r -d (_ "Show filesystems of specified type") $is_gnu -x -a "(__fish_print_filesystems)"
__fish_gnu_complete -c df -s h -l human-readable -d (N_ "Human readable sizes") $is_gnu
__fish_gnu_complete -c df -s i -l inodes -d (N_ "List inode information") $is_gnu
__fish_gnu_complete -c df -s k -d (N_ "Use 1kB block size") $is_gnu
__fish_gnu_complete -c df -s l -l local -d (N_ "List only local filesystems") $is_gnu
__fish_gnu_complete -c df -s P -l portability -d (N_ "Use Posix format") $is_gnu
__fish_gnu_complete -c df -s t -l type -r -d (N_ "Show filesystems of specified type") $is_gnu -x -a "(__fish_print_filesystems)"
if test -n "$is_gnu"
complete -c df -s a -l all -d (_ "Include empty filesystems")
complete -c df -s B -l block-size -r -d (_ "Block size")
complete -c df -s H -l si -d (_ "Human readable sizes, powers of 1000")
complete -c df -l no-sync -d (_ "Do not sync before getting usage info")
complete -c df -l sync -d (_ "Sync before getting usage info")
complete -c df -s T -l print-type -d (_ "Print filesystem type")
complete -c df -s x -l exclude-type -d (_ "Excluded filesystem type") -r -x -a "(__fish_print_filesystems)"
complete -c df -l help -d (_ "Display help and exit")
complete -c df -l version -d (_ "Display version and exit")
complete -c df -s a -l all -d (N_ "Include empty filesystems")
complete -c df -s B -l block-size -r -d (N_ "Block size")
complete -c df -s H -l si -d (N_ "Human readable sizes, powers of 1000")
complete -c df -l no-sync -d (N_ "Do not sync before getting usage info")
complete -c df -l sync -d (N_ "Sync before getting usage info")
complete -c df -s T -l print-type -d (N_ "Print filesystem type")
complete -c df -s x -l exclude-type -d (N_ "Excluded filesystem type") -r -x -a "(__fish_print_filesystems)"
complete -c df -l help -d (N_ "Display help and exit")
complete -c df -l version -d (N_ "Display version and exit")
else
complete -c df -s a -d (_ "Show all filesystems")
complete -c df -s g -d (_ "Show sizes in gigabytes")
complete -c df -s m -d (_ "Show sizes in megabytes")
complete -c df -s n -d (_ "Print out the previously obtained statistics from the file systems")
complete -c df -s a -d (N_ "Show all filesystems")
complete -c df -s g -d (N_ "Show sizes in gigabytes")
complete -c df -s m -d (N_ "Show sizes in megabytes")
complete -c df -s n -d (N_ "Print out the previously obtained statistics from the file systems")
end

View file

@ -1,26 +1,26 @@
# Completions for diff
complete -c diff -s i -l ignore-case -d (_ "Ignore case differences")
complete -c diff -l ignore-file-name-case -d (_ "Ignore case when comparing file names")
complete -c diff -l no-ignore-file-name-case -d (_ "Consider case when comparing file names")
complete -c diff -s E -l ignore-tab-expansion -d (_ "Ignore changes due to tab expansion")
complete -c diff -s b -l ignore-space-change -d (_ "Ignore changes in the amount of white space")
complete -c diff -s w -l ignore-all-space -d (_ "Ignore all white space")
complete -c diff -s B -l ignore-blank-lines -d (_ "Ignore changes whose lines are all blank")
complete -c diff -s I -l ignore-matching-lines -x -d (_ "Ignore changes whose lines match the REGEX")
complete -c diff -s a -l text -d (_ "Treat all files as text")
complete -c diff -s r -l recursive -d (_ "Recursively compare subdirectories")
complete -c diff -s N -l new-file -d (_ "Treat absent files as empty")
complete -c diff -s C -l context -x -d (_ "Output NUM lines of copied context")
complete -c diff -s c -d (_ "Output 3 lines of copied context")
complete -c diff -s U -l unified -x -d (_ "Output NUM lines of unified context")
complete -c diff -s u -d (_ "Output 3 lines of unified context")
complete -c diff -s q -l brief -d (_ "Output only whether the files differ")
complete -c diff -l normal -d (_ "Output a normal diff")
complete -c diff -s y -l side-by-side -d (_ "Output in two columns")
complete -c diff -s W -l width -x -d (_ "Output at most NUM print columns")
complete -c diff -s d -l minimal -d (_ "Try to find a smaller set of changes")
complete -c diff -l from-file -r -d (_ "Compare FILE1 to all operands")
complete -c diff -l to-file -r -d (_ "Compare FILE2 to all operands")
complete -c diff -s l -l paginate -d (_ "Pass the output through 'pr'")
complete -c diff -s v -l version -d (_ "Display version and exit")
complete -c diff -l help -d (_ "Display help and exit")
complete -c diff -s i -l ignore-case -d (N_ "Ignore case differences")
complete -c diff -l ignore-file-name-case -d (N_ "Ignore case when comparing file names")
complete -c diff -l no-ignore-file-name-case -d (N_ "Consider case when comparing file names")
complete -c diff -s E -l ignore-tab-expansion -d (N_ "Ignore changes due to tab expansion")
complete -c diff -s b -l ignore-space-change -d (N_ "Ignore changes in the amount of white space")
complete -c diff -s w -l ignore-all-space -d (N_ "Ignore all white space")
complete -c diff -s B -l ignore-blank-lines -d (N_ "Ignore changes whose lines are all blank")
complete -c diff -s I -l ignore-matching-lines -x -d (N_ "Ignore changes whose lines match the REGEX")
complete -c diff -s a -l text -d (N_ "Treat all files as text")
complete -c diff -s r -l recursive -d (N_ "Recursively compare subdirectories")
complete -c diff -s N -l new-file -d (N_ "Treat absent files as empty")
complete -c diff -s C -l context -x -d (N_ "Output NUM lines of copied context")
complete -c diff -s c -d (N_ "Output 3 lines of copied context")
complete -c diff -s U -l unified -x -d (N_ "Output NUM lines of unified context")
complete -c diff -s u -d (N_ "Output 3 lines of unified context")
complete -c diff -s q -l brief -d (N_ "Output only whether the files differ")
complete -c diff -l normal -d (N_ "Output a normal diff")
complete -c diff -s y -l side-by-side -d (N_ "Output in two columns")
complete -c diff -s W -l width -x -d (N_ "Output at most NUM print columns")
complete -c diff -s d -l minimal -d (N_ "Try to find a smaller set of changes")
complete -c diff -l from-file -r -d (N_ "Compare FILE1 to all operands")
complete -c diff -l to-file -r -d (N_ "Compare FILE2 to all operands")
complete -c diff -s l -l paginate -d (N_ "Pass the output through 'pr'")
complete -c diff -s v -l version -d (N_ "Display version and exit")
complete -c diff -l help -d (N_ "Display help and exit")

View file

@ -1,20 +1,20 @@
complete -c du -s a -l all -d (_ "Write size for all files")
complete -c du -l apparent-size -d (_ "Print file size, not disk usage")
complete -c du -s B -l block-size -d (_ "Block size")
complete -c du -s b -l bytes -d (_ "Use 1B block size")
complete -c du -s c -l total -d (_ "Produce grand total")
complete -c du -s D -l dereference-args -d (_ "Dereference file symlinks")
complete -c du -s h -l human-readable -d (_ "Human readable sizes")
complete -c du -s H -l si -d (_ "Human readable sizes, powers of 1000")
complete -c du -s k -d (_ "Use 1kB block size")
complete -c du -s l -l count-links -d (_ "Count hard links multiple times")
complete -c du -s L -l dereference -d (_ "Dereference all symlinks")
complete -c du -s S -l separate-dirs -d (_ "Do not include subdirectory size")
complete -c du -s s -l summarize -d (_ "Display only a total for each argument")
complete -c du -s x -l one-file-system -d (_ "Skip other filesystems")
complete -c du -s X -l exclude-from -r -d (_ "Exclude files thet match pattern in file")
complete -c du -l exclude -r -d (_ "Exclude files that match pattern")
complete -c du -l max-depth -r -d (_ "Recursion limit")
complete -c du -l help -d (_ "Display help and exit")
complete -c du -l version -d (_ "Display version and exit")
complete -c du -s a -l all -d (N_ "Write size for all files")
complete -c du -l apparent-size -d (N_ "Print file size, not disk usage")
complete -c du -s B -l block-size -d (N_ "Block size")
complete -c du -s b -l bytes -d (N_ "Use 1B block size")
complete -c du -s c -l total -d (N_ "Produce grand total")
complete -c du -s D -l dereference-args -d (N_ "Dereference file symlinks")
complete -c du -s h -l human-readable -d (N_ "Human readable sizes")
complete -c du -s H -l si -d (N_ "Human readable sizes, powers of 1000")
complete -c du -s k -d (N_ "Use 1kB block size")
complete -c du -s l -l count-links -d (N_ "Count hard links multiple times")
complete -c du -s L -l dereference -d (N_ "Dereference all symlinks")
complete -c du -s S -l separate-dirs -d (N_ "Do not include subdirectory size")
complete -c du -s s -l summarize -d (N_ "Display only a total for each argument")
complete -c du -s x -l one-file-system -d (N_ "Skip other filesystems")
complete -c du -s X -l exclude-from -r -d (N_ "Exclude files thet match pattern in file")
complete -c du -l exclude -r -d (N_ "Exclude files that match pattern")
complete -c du -l max-depth -r -d (N_ "Recursion limit")
complete -c du -l help -d (N_ "Display help and exit")
complete -c du -l version -d (N_ "Display version and exit")

View file

@ -1,5 +1,5 @@
complete -c echo -s n -d (_ "No newline")
complete -c echo -s e -d (_ "Use backslash escaped characters")
complete -c echo -s E -d (_ "Do not use backslash escaped characters")
complete -c echo -l help -d (_ "Display help and exit")
complete -c echo -l version -d (_ "Display version and exit")
complete -c echo -s n -d (N_ "No newline")
complete -c echo -s e -d (N_ "Use backslash escaped characters")
complete -c echo -s E -d (N_ "Do not use backslash escaped characters")
complete -c echo -l help -d (N_ "Display help and exit")
complete -c echo -l version -d (N_ "Display version and exit")

View file

@ -1,10 +1,10 @@
#
# These completions are uncomplete
#
complete -c emacs -s q -d (_ "Do not load init files")
complete -c emacs -s u -d (_ "Load users init file") -xa "(__fish_complete_users)"
complete -c emacs -s t -d (_ "Use file as terminal") -r
complete -c emacs -s f -d (_ "Execute Lisp function") -x
complete -c emacs -s l -d (_ "Load Lisp code from file") -r
complete -c emacs -o nw -d (_ "Do not use X interface")
complete -uc emacs -s d -o display -d (_ "Create window on the specified display") -x
complete -c emacs -s q -d (N_ "Do not load init files")
complete -c emacs -s u -d (N_ "Load users init file") -xa "(__fish_complete_users)"
complete -c emacs -s t -d (N_ "Use file as terminal") -r
complete -c emacs -s f -d (N_ "Execute Lisp function") -x
complete -c emacs -s l -d (N_ "Load Lisp code from file") -r
complete -c emacs -o nw -d (N_ "Do not use X interface")
complete -uc emacs -s d -o display -d (N_ "Create window on the specified display") -x

View file

@ -1,6 +1,6 @@
#Completions for emerge
function __fish_emerge_use_package -d (_ 'Test if emerge command should have packages as potential completion')
function __fish_emerge_use_package -d (N_ 'Test if emerge command should have packages as potential completion')
for i in (commandline -opc)
if contains -- $i -a --ask -p --pretend --oneshot -O --nodeps -f --fetchonly
return 0
@ -9,7 +9,7 @@ function __fish_emerge_use_package -d (_ 'Test if emerge command should have pac
return 1
end
function __fish_emerge_manipulate_package -d (_ 'Tests if emerge command should have package as potential completion for removal')
function __fish_emerge_manipulate_package -d (N_ 'Tests if emerge command should have package as potential completion for removal')
for i in (commandline -opc)
if contains -- $i -u --update -C --unmerge -P --prune
return 0
@ -18,51 +18,51 @@ function __fish_emerge_manipulate_package -d (_ 'Tests if emerge command should
return 1
end
function __fish_emerge_print_installed_pkgs -d (_ 'Prints completions for installed packages on the system from /var/db/pkg')
function __fish_emerge_print_installed_pkgs -d (N_ 'Prints completions for installed packages on the system from /var/db/pkg')
if test -d /var/db/pkg
find /var/db/pkg/ -type d | cut -d'/' -f6 | sort | uniq | sed 's/-[0-9]\{1,\}\..*$//'
return
end
end
complete -f -c emerge -n '__fish_emerge_use_package' -a '(__fish_print_packages)' -d (_ 'Package')
complete -f -c emerge -n '__fish_emerge_manipulate_package' -a '(__fish_emerge_print_installed_pkgs)' -d (_ 'Package')
complete -c emerge -s h -l help -d (_ "Display help and exit")
complete -c emerge -s c -l clean -d (_ "Cleans the system by removing outdated packages")
complete -c emerge -l depclean -d (_ "Cleans the system by removing packages that are not associated with explicitly merged packages")
complete -c emerge -l info -d (_ "Displays important portage variables that will be exported to ebuild.sh when performing merges")
complete -c emerge -l metadata -d (_ "Causes portage to process all the metacache files as is normally done on the tail end of an rsync update using emerge --sync")
complete -c emerge -s P -l prune -d (_ "Removes all but the most recently installed version of a package from your system")
complete -c emerge -l regen -d (_ "Causes portage to check and update the dependency cache of all ebuilds in the portage tree")
complete -c emerge -s s -l search -d (_ "Searches for matches of the supplied string in the current local portage tree")
complete -c emerge -s C -l unmerge -d (_ "Removes all matching packages completely from your system")
complete -c emerge -s a -l ask -d (_ "Before performing the merge, display what ebuilds and tbz2s will be installed, in the same format as when using --pretend")
complete -c emerge -s b -l buildpkg -d (_ "Tell emerge to build binary packages for all ebuilds processed in addition to actually merging the packages")
complete -c emerge -s B -l buildpkgonly -d (_ "Creates a binary package, but does not merge it to the system")
complete -c emerge -s l -l changelog -d (_ "When pretending, also display the ChangeLog entries for packages that will be upgraded")
complete -c emerge -l columns -d (_ "Display the pretend output in a tabular form")
complete -c emerge -s d -l debug -d (_ "Tell emerge to run the ebuild command in --debug mode")
complete -c emerge -s D -l deep -d (_ "When used in conjunction with --update, this flag forces emerge to consider the entire dependency tree of packages, instead of checking only the immediate dependencies of the packages")
complete -c emerge -s e -l emptytree -d (_ "Virtually tweaks the tree of installed packages to contain nothing")
complete -c emerge -s f -l fetchonly -d (_ "Instead of doing any package building, just perform fetches for all packages (main package as well as all dependencies)")
complete -c emerge -l fetch-all-uri -d (_ "Same as --fetchonly except that all package files, including those not required to build the package, will be processed")
complete -c emerge -s g -l getbinpkg -d (_ "Using the server and location defined in PORTAGE_BINHOST, portage will download the information from each binary file there and it will use that information to help build the dependency list")
complete -c emerge -s G -l getbinpkgonly -d (_ "This option is identical to -g, except it will not use ANY information from the local machine")
complete -c emerge -s N -l newuse -d (_ "Tells emerge to include installed packages where USE flags have changed since installation")
complete -c emerge -l noconfmem -d (_ "Merge files in CONFIG_PROTECT to the live fs instead of silently dropping them")
complete -c emerge -s O -l nodeps -d (_ "Merge specified packages, but don't merge any dependencies")
complete -c emerge -s n -l noreplace -d (_ "Skip the packages specified on the command-line that have already been installed")
complete -c emerge -l nospinner -d (_ "Disables the spinner regardless of terminal type")
complete -c emerge -l oneshot -d (_ "Emerge as normal, but don't add packages to the world profile")
complete -c emerge -s o -l onlydeps -d (_ "Only merge (or pretend to merge) the dependencies of the specified packages, not the packages themselves")
complete -c emerge -s p -l pretend -d (_ "Do not merge, display what ebuilds and tbz2s would have been installed")
complete -c emerge -s q -l quiet -d (_ "Reduced output from portage's displays")
complete -c emerge -l resume -d (_ "Resumes the last merge operation")
complete -c emerge -s S -l searchdesc -d (_ "Matches the search string against the description field as well the package's name")
complete -c emerge -l skipfirst -d (_ "Remove the first package in the resume list so that a merge may continue in the presence of an uncorrectable or inconsequential error")
complete -c emerge -s t -l tree -d (_ "Shows the dependency tree using indentation for dependencies")
complete -c emerge -s u -l update -d (_ "Updates packages to the best version available")
complete -c emerge -s k -l usepkg -d (_ "Tell emerge to use binary packages (from $PKGDIR) if they are available, thus possibly avoiding some time-consuming compiles")
complete -c emerge -s K -l usepkgonly -d (_ "Like --usepkg, except this only allows the use of binary packages, and it will abort the emerge if the package is not available at the time of dependency calculation")
complete -c emerge -s v -l verbose -d (_ "Increased or expanded display of content in portage's displays")
complete -c emerge -s V -l version -d (_ "Displays the currently installed version of portage along with other information useful for quick reference on a system")
complete -f -c emerge -n '__fish_emerge_use_package' -a '(__fish_print_packages)' -d (N_ 'Package')
complete -f -c emerge -n '__fish_emerge_manipulate_package' -a '(__fish_emerge_print_installed_pkgs)' -d (N_ 'Package')
complete -c emerge -s h -l help -d (N_ "Display help and exit")
complete -c emerge -s c -l clean -d (N_ "Cleans the system by removing outdated packages")
complete -c emerge -l depclean -d (N_ "Cleans the system by removing packages that are not associated with explicitly merged packages")
complete -c emerge -l info -d (N_ "Displays important portage variables that will be exported to ebuild.sh when performing merges")
complete -c emerge -l metadata -d (N_ "Causes portage to process all the metacache files as is normally done on the tail end of an rsync update using emerge --sync")
complete -c emerge -s P -l prune -d (N_ "Removes all but the most recently installed version of a package from your system")
complete -c emerge -l regen -d (N_ "Causes portage to check and update the dependency cache of all ebuilds in the portage tree")
complete -c emerge -s s -l search -d (N_ "Searches for matches of the supplied string in the current local portage tree")
complete -c emerge -s C -l unmerge -d (N_ "Removes all matching packages completely from your system")
complete -c emerge -s a -l ask -d (N_ "Before performing the merge, display what ebuilds and tbz2s will be installed, in the same format as when using --pretend")
complete -c emerge -s b -l buildpkg -d (N_ "Tell emerge to build binary packages for all ebuilds processed in addition to actually merging the packages")
complete -c emerge -s B -l buildpkgonly -d (N_ "Creates a binary package, but does not merge it to the system")
complete -c emerge -s l -l changelog -d (N_ "When pretending, also display the ChangeLog entries for packages that will be upgraded")
complete -c emerge -l columns -d (N_ "Display the pretend output in a tabular form")
complete -c emerge -s d -l debug -d (N_ "Tell emerge to run the ebuild command in --debug mode")
complete -c emerge -s D -l deep -d (N_ "When used in conjunction with --update, this flag forces emerge to consider the entire dependency tree of packages, instead of checking only the immediate dependencies of the packages")
complete -c emerge -s e -l emptytree -d (N_ "Virtually tweaks the tree of installed packages to contain nothing")
complete -c emerge -s f -l fetchonly -d (N_ "Instead of doing any package building, just perform fetches for all packages (main package as well as all dependencies)")
complete -c emerge -l fetch-all-uri -d (N_ "Same as --fetchonly except that all package files, including those not required to build the package, will be processed")
complete -c emerge -s g -l getbinpkg -d (N_ "Using the server and location defined in PORTAGE_BINHOST, portage will download the information from each binary file there and it will use that information to help build the dependency list")
complete -c emerge -s G -l getbinpkgonly -d (N_ "This option is identical to -g, except it will not use ANY information from the local machine")
complete -c emerge -s N -l newuse -d (N_ "Tells emerge to include installed packages where USE flags have changed since installation")
complete -c emerge -l noconfmem -d (N_ "Merge files in CONFIG_PROTECT to the live fs instead of silently dropping them")
complete -c emerge -s O -l nodeps -d (N_ "Merge specified packages, but don't merge any dependencies")
complete -c emerge -s n -l noreplace -d (N_ "Skip the packages specified on the command-line that have already been installed")
complete -c emerge -l nospinner -d (N_ "Disables the spinner regardless of terminal type")
complete -c emerge -l oneshot -d (N_ "Emerge as normal, but don't add packages to the world profile")
complete -c emerge -s o -l onlydeps -d (N_ "Only merge (or pretend to merge) the dependencies of the specified packages, not the packages themselves")
complete -c emerge -s p -l pretend -d (N_ "Do not merge, display what ebuilds and tbz2s would have been installed")
complete -c emerge -s q -l quiet -d (N_ "Reduced output from portage's displays")
complete -c emerge -l resume -d (N_ "Resumes the last merge operation")
complete -c emerge -s S -l searchdesc -d (N_ "Matches the search string against the description field as well the package's name")
complete -c emerge -l skipfirst -d (N_ "Remove the first package in the resume list so that a merge may continue in the presence of an uncorrectable or inconsequential error")
complete -c emerge -s t -l tree -d (N_ "Shows the dependency tree using indentation for dependencies")
complete -c emerge -s u -l update -d (N_ "Updates packages to the best version available")
complete -c emerge -s k -l usepkg -d (N_ "Tell emerge to use binary packages (from $PKGDIR) if they are available, thus possibly avoiding some time-consuming compiles")
complete -c emerge -s K -l usepkgonly -d (N_ "Like --usepkg, except this only allows the use of binary packages, and it will abort the emerge if the package is not available at the time of dependency calculation")
complete -c emerge -s v -l verbose -d (N_ "Increased or expanded display of content in portage's displays")
complete -c emerge -s V -l version -d (N_ "Displays the currently installed version of portage along with other information useful for quick reference on a system")

View file

@ -1,6 +1,6 @@
complete -c fish -s c -l "command" -d (_ "Run fish with this command")
complete -c fish -s h -l help -d (_ "Display help and exit")
complete -c fish -s v -l version -d (_ "Display version and exit")
complete -c fish -s i -l interactive -d (_ "Run in interactive mode")
complete -c fish -s l -l login -d (_ "Run in login mode")
complete -c fish -s p -l profile -d (_ "Output profiling information to specified file") -f
complete -c fish -s c -l "command" -d (N_ "Run fish with this command")
complete -c fish -s h -l help -d (N_ "Display help and exit")
complete -c fish -s v -l version -d (N_ "Display version and exit")
complete -c fish -s i -l interactive -d (N_ "Run in interactive mode")
complete -c fish -s l -l login -d (N_ "Run in login mode")
complete -c fish -s p -l profile -d (N_ "Output profiling information to specified file") -f

View file

@ -1,8 +1,8 @@
complete -c function -s d -l description -d (_ "Set function description") -x
complete -c function -xa "(functions -n)" -d (_ "Function")
complete -c function -xa "(builtin -n)" -d (_ "Builtin")
complete -c function -s j -l on-job-exit -d (_ "Make the function a job exit event handler") -x
complete -c function -s p -l on-process-exit -d (_ "Make the function a process exit event handler") -x
complete -c function -s s -l on-signal -d (_ "Make the function a signal event handler") -x
complete -c function -s v -l on-variable -d (_ "Make the function a variable update event handler") -x
complete -c function -s b -l key-binding -d (_ "Allow dash (-) in function name")
complete -c function -s d -l description -d (N_ "Set function description") -x
complete -c function -xa "(functions -n)" -d (N_ "Function")
complete -c function -xa "(builtin -n)" -d (N_ "Builtin")
complete -c function -s j -l on-job-exit -d (N_ "Make the function a job exit event handler") -x
complete -c function -s p -l on-process-exit -d (N_ "Make the function a process exit event handler") -x
complete -c function -s s -l on-signal -d (N_ "Make the function a signal event handler") -x
complete -c function -s v -l on-variable -d (N_ "Make the function a variable update event handler") -x
complete -c function -s b -l key-binding -d (N_ "Allow dash (-) in function name")

View file

@ -1,6 +1,6 @@
complete -c functions -s e -l erase -d (_ "Erase function") -x -a "(functions -n)"
complete -c functions -xa "(functions -na)" -d (_ "Function")
complete -c functions -s a -l all -d (_ "Show hidden functions")
complete -c functions -s h -l help -d (_ "Display help and exit")
complete -c functions -s d -l description -d (_ "Set function description") -x
complete -c functions -s e -l erase -d (N_ "Erase function") -x -a "(functions -n)"
complete -c functions -xa "(functions -na)" -d (N_ "Function")
complete -c functions -s a -l all -d (N_ "Show hidden functions")
complete -c functions -s h -l help -d (N_ "Display help and exit")
complete -c functions -s d -l description -d (N_ "Set function description") -x

View file

@ -3,15 +3,15 @@
#
# Find mount points, borrowed from umount.fish
#
complete -c fusermount -d (_ "Mount point") -x -a '
complete -c fusermount -d (N_ "Mount point") -x -a '
(
cat /etc/mtab | grep "^sshfs" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|grep "^/"
)
'
complete -c fusermount -s h -d (_ "Display help and exit")
complete -c fusermount -s v -d (_ "Display version and exit")
complete -c fusermount -s o -x -d (_ "Mount options")
complete -c fusermount -s u -d (_ "Unmount")
complete -c fusermount -s q -d (_ "Quiet")
complete -c fusermount -s z -d (_ "Lazy unmount")
complete -c fusermount -s h -d (N_ "Display help and exit")
complete -c fusermount -s v -d (N_ "Display version and exit")
complete -c fusermount -s o -x -d (N_ "Mount options")
complete -c fusermount -s u -d (N_ "Unmount")
complete -c fusermount -s q -d (N_ "Quiet")
complete -c fusermount -s z -d (N_ "Lazy unmount")

View file

@ -2,7 +2,7 @@
# The gcc completion list is incomplete. There are just so many of them...
#
complete -c gcc -s x -d (_ "Language") -x -a '
complete -c gcc -s x -d (N_ "Language") -x -a '
c
c-header
cpp-output
@ -20,16 +20,16 @@ complete -c gcc -s x -d (_ "Language") -x -a '
treelang
none
'
complete -c gcc -o pass-exit-codes -d (_ "Pass program exit codes")
complete -c gcc -s c -d (_ "Stop after assembler")
complete -c gcc -s S -d (_ "Stop after compile")
complete -c gcc -s E -d (_ "Stop after preprocessor")
complete -c gcc -s o -r -d (_ "Output file")
complete -c gcc -s v -d (_ "Print commands to stderr")
complete -c gcc -o \#\#\# -d (_ "Print quoted commands to stderr, do not run")
complete -c gcc -o pipe -d (_ "Use pipes")
complete -c gcc -o ansi -d (_ "Use ansi mode")
complete -c gcc -o std -d (_ "Standard mode") -x -a '
complete -c gcc -o pass-exit-codes -d (N_ "Pass program exit codes")
complete -c gcc -s c -d (N_ "Stop after assembler")
complete -c gcc -s S -d (N_ "Stop after compile")
complete -c gcc -s E -d (N_ "Stop after preprocessor")
complete -c gcc -s o -r -d (N_ "Output file")
complete -c gcc -s v -d (N_ "Print commands to stderr")
complete -c gcc -o \#\#\# -d (N_ "Print quoted commands to stderr, do not run")
complete -c gcc -o pipe -d (N_ "Use pipes")
complete -c gcc -o ansi -d (N_ "Use ansi mode")
complete -c gcc -o std -d (N_ "Standard mode") -x -a '
c89\t"ISO C90"
iso9899:1990\t"ISO C90"
iso9899:199409\t"ISO C90 as modified in amendment 1"
@ -43,54 +43,54 @@ complete -c gcc -o std -d (_ "Standard mode") -x -a '
c++98\t"ISO C++98"
gnu++98\t"ISO C++98 plus GNU extentions"
'
complete -c gcc -o aux-info -r -d (_ "Write prototypes to file")
complete -c gcc -o fno-asm -d (_ "Do not recognize asm, inline or typeof keywords")
complete -c gcc -o fno-builtin -d (_ "Do not use builtin functions")
complete -c gcc -o fhosted -d (_ "Assert hosted environment")
complete -c gcc -o ffreestanding -d (_ "Assert freestanding environment")
complete -c gcc -o fms-extensions -d (_ "Use Microsoft extensions")
complete -c gcc -o trigraphs -d (_ "Use ANSI trigraphs")
complete -c gcc -o no-integrated-cpp -d (_ "Do not use integrated preprocessor")
complete -c gcc -o funsigned-char -d (_ "char is unsigned")
complete -c gcc -o fsigned-char -d (_ "char is signed")
complete -c gcc -o funsigned-bitfields -d (_ "bitfield is unsigned")
complete -c gcc -o fsigned-bitfields -d (_ "bitfield is signed")
complete -c gcc -o fno-unsigned-bitfields -d (_ "All bitfields are signed")
complete -c gcc -o fno-signed-bitfields -d (_ "All bitfields are unsigned")
complete -c gcc -o fwritable-strings -d (_ "String constants are not const")
complete -c gcc -o fabi-version -d (_ "C++ ABI version") -r -x -a '1 0'
complete -c gcc -o fno-access-control -d (_ "Turn off access checking")
complete -c gcc -o fcheck-new -d (_ "Check pointer returned by new")
complete -c gcc -o fconserve-space -d (_ "Put globals in the common segment")
complete -c gcc -o fno-const-strings -d (_ "String constants are not const")
complete -c gcc -o fdollars-in-identifiers -d (_ "Accept \$ in identifiers")
complete -c gcc -o fno-dollars-in-identifiers -d (_ "Reject \$ in identifiers")
complete -c gcc -o fno-elide-constructors -d (_ "Do not omit unneeded temporarys")
complete -c gcc -o fno-enforce-eh-specs -d (_ "Allow exception violations")
complete -c gcc -o ffor-scope -d (_ "Do not extend for-loop scope")
complete -c gcc -o fno-for-scope -d (_ "Extend for-loop scope")
complete -c gcc -o fno-gnu-keywords -d (_ "Do not recognize typeof as keyword")
complete -c gcc -o fno-implicit-templates -d (_ "Do not emit code for implicit templates")
complete -c gcc -o fno-implicit-inline-templates -d (_ "Do not emit code for implicit inline templates")
complete -c gcc -o fno-implement-inlines -d (_ "Do not emit out-of-line code for inline functions")
complete -c gcc -o fms-extensions -d (_ "Disable warnings about MFC")
complete -c gcc -o fno-nonansi-builtins -d (_ "Disable some built-in functions")
complete -c gcc -o fno-operator-names -d (_ "Disable operator keywords")
complete -c gcc -o fno-optional-diags -d (_ "Disable optional diagnostics")
complete -c gcc -o fpermissive -d (_ "Downgrade some errors to warnings")
complete -c gcc -o frepo -d (_ "Enable automatic template instantiation at link time")
complete -c gcc -o fno-rtti -d (_ "Disable generation of C++ runtime type information")
#complete -c gcc -o fstats -d (_ "Emit front-end usage statistics")
complete -c gcc -o aux-info -r -d (N_ "Write prototypes to file")
complete -c gcc -o fno-asm -d (N_ "Do not recognize asm, inline or typeof keywords")
complete -c gcc -o fno-builtin -d (N_ "Do not use builtin functions")
complete -c gcc -o fhosted -d (N_ "Assert hosted environment")
complete -c gcc -o ffreestanding -d (N_ "Assert freestanding environment")
complete -c gcc -o fms-extensions -d (N_ "Use Microsoft extensions")
complete -c gcc -o trigraphs -d (N_ "Use ANSI trigraphs")
complete -c gcc -o no-integrated-cpp -d (N_ "Do not use integrated preprocessor")
complete -c gcc -o funsigned-char -d (N_ "char is unsigned")
complete -c gcc -o fsigned-char -d (N_ "char is signed")
complete -c gcc -o funsigned-bitfields -d (N_ "bitfield is unsigned")
complete -c gcc -o fsigned-bitfields -d (N_ "bitfield is signed")
complete -c gcc -o fno-unsigned-bitfields -d (N_ "All bitfields are signed")
complete -c gcc -o fno-signed-bitfields -d (N_ "All bitfields are unsigned")
complete -c gcc -o fwritable-strings -d (N_ "String constants are not const")
complete -c gcc -o fabi-version -d (N_ "C++ ABI version") -r -x -a '1 0'
complete -c gcc -o fno-access-control -d (N_ "Turn off access checking")
complete -c gcc -o fcheck-new -d (N_ "Check pointer returned by new")
complete -c gcc -o fconserve-space -d (N_ "Put globals in the common segment")
complete -c gcc -o fno-const-strings -d (N_ "String constants are not const")
complete -c gcc -o fdollars-in-identifiers -d (N_ "Accept \$ in identifiers")
complete -c gcc -o fno-dollars-in-identifiers -d (N_ "Reject \$ in identifiers")
complete -c gcc -o fno-elide-constructors -d (N_ "Do not omit unneeded temporarys")
complete -c gcc -o fno-enforce-eh-specs -d (N_ "Allow exception violations")
complete -c gcc -o ffor-scope -d (N_ "Do not extend for-loop scope")
complete -c gcc -o fno-for-scope -d (N_ "Extend for-loop scope")
complete -c gcc -o fno-gnu-keywords -d (N_ "Do not recognize typeof as keyword")
complete -c gcc -o fno-implicit-templates -d (N_ "Do not emit code for implicit templates")
complete -c gcc -o fno-implicit-inline-templates -d (N_ "Do not emit code for implicit inline templates")
complete -c gcc -o fno-implement-inlines -d (N_ "Do not emit out-of-line code for inline functions")
complete -c gcc -o fms-extensions -d (N_ "Disable warnings about MFC")
complete -c gcc -o fno-nonansi-builtins -d (N_ "Disable some built-in functions")
complete -c gcc -o fno-operator-names -d (N_ "Disable operator keywords")
complete -c gcc -o fno-optional-diags -d (N_ "Disable optional diagnostics")
complete -c gcc -o fpermissive -d (N_ "Downgrade some errors to warnings")
complete -c gcc -o frepo -d (N_ "Enable automatic template instantiation at link time")
complete -c gcc -o fno-rtti -d (N_ "Disable generation of C++ runtime type information")
#complete -c gcc -o fstats -d (N_ "Emit front-end usage statistics")
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17;
complete -c gcc -o ftemplate-depth-1 -d (printf (_ "Set maximum template depth to %s") $i);
complete -c gcc -o ftemplate-depth-1 -d (N_ "Set maximum template depth")
end;
complete -c gcc -o fno-threadsafe-statistics -d (_ "Do not emit code for thread-safe initialization of local statics")
complete -c gcc -o fuse-cxa-atexit -d (_ "Use __cxa_atexit for destructors")
complete -c gcc -o fvisibility-inlines-hidden -d (_ "Hides inline methods from export table")
complete -c gcc -o fno-weak -d (_ "Do not use weak symbol support")
complete -c gcc -o fno-threadsafe-statistics -d (N_ "Do not emit code for thread-safe initialization of local statics")
complete -c gcc -o fuse-cxa-atexit -d (N_ "Use __cxa_atexit for destructors")
complete -c gcc -o fvisibility-inlines-hidden -d (N_ "Hides inline methods from export table")
complete -c gcc -o fno-weak -d (N_ "Do not use weak symbol support")
# gcc completion listing is incomplete.
#complete -c gcc -o -d (_ "")
#complete -c gcc -o -d (N_ "")

View file

@ -45,280 +45,280 @@ end
# gpg subcommands
#
complete -c gpg -s s -l sign -d (_ "Make a signature")
complete -c gpg -l clearsign -d (_ "Make a clear text signature")
complete -c gpg -s b -l detach-sign -d (_ "Make a detached signature")
complete -c gpg -s e -l encrypt -d (_ "Encrypt data")
complete -c gpg -s c -l symmetric -d (_ "Encrypt with a symmetric cipher using a passphrase")
complete -c gpg -l store -d (_ "Store only (make a simple RFC1991 packet)")
complete -c gpg -l decrypt -d (_ "Decrypt specified file or stdin")
complete -c gpg -l verify -d (_ "Assume specified file or stdin is sigfile and verify it")
complete -c gpg -l multifile -d (_ "Modify certain other commands to accept multiple files for processing")
complete -c gpg -l verify-files -d (_ "Identical to '--multifile --verify'")
complete -c gpg -l encrypt-files -d (_ "Identical to '--multifile --encrypt'")
complete -c gpg -l decrypt-files -d (_ "Identical to --multifile --decrypt")
complete -c gpg -s s -l sign -d (N_ "Make a signature")
complete -c gpg -l clearsign -d (N_ "Make a clear text signature")
complete -c gpg -s b -l detach-sign -d (N_ "Make a detached signature")
complete -c gpg -s e -l encrypt -d (N_ "Encrypt data")
complete -c gpg -s c -l symmetric -d (N_ "Encrypt with a symmetric cipher using a passphrase")
complete -c gpg -l store -d (N_ "Store only (make a simple RFC1991 packet)")
complete -c gpg -l decrypt -d (N_ "Decrypt specified file or stdin")
complete -c gpg -l verify -d (N_ "Assume specified file or stdin is sigfile and verify it")
complete -c gpg -l multifile -d (N_ "Modify certain other commands to accept multiple files for processing")
complete -c gpg -l verify-files -d (N_ "Identical to '--multifile --verify'")
complete -c gpg -l encrypt-files -d (N_ "Identical to '--multifile --encrypt'")
complete -c gpg -l decrypt-files -d (N_ "Identical to --multifile --decrypt")
complete -c gpg -l list-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (_ "List all keys from the public keyrings, or just the ones given on the command line")
complete -c gpg -l list-public-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (_ "List all keys from the public keyrings, or just the ones given on the command line")
complete -c gpg -s K -l list-secret-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (_ "List all keys from the secret keyrings, or just the ones given on the command line")
complete -c gpg -l list-sigs -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (_ "Same as --list-keys, but the signatures are listed too")
complete -c gpg -l list-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (N_ "List all keys from the public keyrings, or just the ones given on the command line")
complete -c gpg -l list-public-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (N_ "List all keys from the public keyrings, or just the ones given on the command line")
complete -c gpg -s K -l list-secret-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (N_ "List all keys from the secret keyrings, or just the ones given on the command line")
complete -c gpg -l list-sigs -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (N_ "Same as --list-keys, but the signatures are listed too")
complete -c gpg -l check-sigs -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (_ "Same as --list-keys, but the signatures are listed and verified")
complete -c gpg -l fingerprint -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (_ "List all keys with their fingerprints")
complete -c gpg -l gen-key -d (_ "Generate a new key pair")
complete -c gpg -l check-sigs -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (N_ "Same as --list-keys, but the signatures are listed and verified")
complete -c gpg -l fingerprint -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (N_ "List all keys with their fingerprints")
complete -c gpg -l gen-key -d (N_ "Generate a new key pair")
complete -c gpg -l edit-key -d (_ "Present a menu which enables you to do all key related tasks") -xa "(__fish_complete_gpg_user_id)"
complete -c gpg -l edit-key -d (N_ "Present a menu which enables you to do all key related tasks") -xa "(__fish_complete_gpg_user_id)"
complete -c gpg -l sign-key -xa "(__fish_complete_gpg_user_id)" -d (_ "Sign a public key with your secret key")
complete -c gpg -l lsign-key -xa "(__fish_complete_gpg_user_id)" -d (_ "Sign a public key with your secret key but mark it as non exportable")
complete -c gpg -l sign-key -xa "(__fish_complete_gpg_user_id)" -d (N_ "Sign a public key with your secret key")
complete -c gpg -l lsign-key -xa "(__fish_complete_gpg_user_id)" -d (N_ "Sign a public key with your secret key but mark it as non exportable")
complete -c gpg -l delete-key -xa "(__fish_complete_gpg_user_id)" -d (_ "Remove key from the public keyring")
complete -c gpg -l delete-secret-key -xa "(__fish_complete_gpg_user_id)" -d (_ "Remove key from the secret and public keyring")
complete -c gpg -l delete-secret-and-public-key -xa "(__fish_complete_gpg_user_id)" -d (_ "Same as --delete-key, but if a secret key exists, it will be removed first")
complete -c gpg -l delete-key -xa "(__fish_complete_gpg_user_id)" -d (N_ "Remove key from the public keyring")
complete -c gpg -l delete-secret-key -xa "(__fish_complete_gpg_user_id)" -d (N_ "Remove key from the secret and public keyring")
complete -c gpg -l delete-secret-and-public-key -xa "(__fish_complete_gpg_user_id)" -d (N_ "Same as --delete-key, but if a secret key exists, it will be removed first")
complete -c gpg -l gen-revoke -xa "(__fish_complete_gpg_user_id)" -d (_ "Generate a revocation certificate for the complete key")
complete -c gpg -l desig-revoke -xa "(__fish_complete_gpg_user_id)" -d (_ "Generate a designated revocation certificate for a key")
complete -c gpg -l gen-revoke -xa "(__fish_complete_gpg_user_id)" -d (N_ "Generate a revocation certificate for the complete key")
complete -c gpg -l desig-revoke -xa "(__fish_complete_gpg_user_id)" -d (N_ "Generate a designated revocation certificate for a key")
complete -c gpg -l export -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (_ "Export all or the given keys from all keyrings" )
complete -c gpg -l send-keys -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (_ "Same as --export but sends the keys to a keyserver")
complete -c gpg -l export-secret-keys -xa "(__fish_complete_gpg_user_id)" -d (_ "Same as --export, but exports the secret keys instead")
complete -c gpg -l export-secret-subkeys -xa "(__fish_complete_gpg_user_id)" -d (_ "Same as --export, but exports the secret keys instead")
complete -c gpg -l export -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (N_ "Export all or the given keys from all keyrings" )
complete -c gpg -l send-keys -xa "(__fish_append , (__fish_complete_gpg_user_id))" -d (N_ "Same as --export but sends the keys to a keyserver")
complete -c gpg -l export-secret-keys -xa "(__fish_complete_gpg_user_id)" -d (N_ "Same as --export, but exports the secret keys instead")
complete -c gpg -l export-secret-subkeys -xa "(__fish_complete_gpg_user_id)" -d (N_ "Same as --export, but exports the secret keys instead")
complete -c gpg -l import -xa "(__fish_complete_gpg_user_id)" -d (_ "Import/merge keys" )
complete -c gpg -l fast-import -xa "(__fish_complete_gpg_user_id)" -d (_ "Import/merge keys" )
complete -c gpg -l import -xa "(__fish_complete_gpg_user_id)" -d (N_ "Import/merge keys" )
complete -c gpg -l fast-import -xa "(__fish_complete_gpg_user_id)" -d (N_ "Import/merge keys" )
complete -c gpg -l recv-keys -xa "(__fish_complete_gpg_key_id)" -d (_ "Import the keys with the given key IDs from a keyserver")
complete -c gpg -l refresh-keys -xa "(__fish_complete_gpg_key_id)" -d (_ "Request updates from a keyserver for keys that already exist on the local keyring")
complete -c gpg -l search-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (_ "Search the keyserver for the given names")
complete -c gpg -l update-trustdb -d (_ "Do trust database maintenance")
complete -c gpg -l check-trustdb -d (_ "Do trust database maintenance without user interaction")
complete -c gpg -l recv-keys -xa "(__fish_complete_gpg_key_id)" -d (N_ "Import the keys with the given key IDs from a keyserver")
complete -c gpg -l refresh-keys -xa "(__fish_complete_gpg_key_id)" -d (N_ "Request updates from a keyserver for keys that already exist on the local keyring")
complete -c gpg -l search-keys -xa "(__fish_append , (__fish_complete_gpg_user_id) )" -d (N_ "Search the keyserver for the given names")
complete -c gpg -l update-trustdb -d (N_ "Do trust database maintenance")
complete -c gpg -l check-trustdb -d (N_ "Do trust database maintenance without user interaction")
complete -c gpg -l export-ownertrust -d (_ "Send the ownertrust values to stdout")
complete -c gpg -l import-ownertrust -d (_ "Update the trustdb with the ownertrust values stored in specified files or stdin")
complete -c gpg -l export-ownertrust -d (N_ "Send the ownertrust values to stdout")
complete -c gpg -l import-ownertrust -d (N_ "Update the trustdb with the ownertrust values stored in specified files or stdin")
complete -c gpg -l rebuild-keydb-caches -d (_ "Create signature caches in the keyring")
complete -c gpg -l rebuild-keydb-caches -d (N_ "Create signature caches in the keyring")
complete -c gpg -l print-md -xa "(__fish_print_gpg_algo Hash)" -d (_ "Print message digest of specified algorithm for all given files or stdin")
complete -c gpg -l print-mds -d (_ "Print message digest of all algorithms for all given files or stdin")
complete -c gpg -l print-md -xa "(__fish_print_gpg_algo Hash)" -d (N_ "Print message digest of specified algorithm for all given files or stdin")
complete -c gpg -l print-mds -d (N_ "Print message digest of all algorithms for all given files or stdin")
complete -c gpg -l gen-random -xa "0 1 2" -d (_ "Emit specified number of random bytes of the given quality level")
complete -c gpg -l gen-random -xa "0 1 2" -d (N_ "Emit specified number of random bytes of the given quality level")
complete -c gpg -l version -d (_ "Display version and supported algorithms, and exit")
complete -c gpg -l warranty -d (_ "Display warranty and exit")
complete -c gpg -s h -l help -d (_ "Display help and exit")
complete -c gpg -l version -d (N_ "Display version and supported algorithms, and exit")
complete -c gpg -l warranty -d (N_ "Display warranty and exit")
complete -c gpg -s h -l help -d (N_ "Display help and exit")
#
# gpg options
#
complete -c gpg -s a -l armor -d (_ "Create ASCII armored output")
complete -c gpg -s o -l output -r -d (_ "Write output to specified file")
complete -c gpg -s a -l armor -d (N_ "Create ASCII armored output")
complete -c gpg -s o -l output -r -d (N_ "Write output to specified file")
complete -c gpg -l max-output -d (_ "Sets a limit on the number of bytes that will be generated when processing a file") -x
complete -c gpg -l max-output -d (N_ "Sets a limit on the number of bytes that will be generated when processing a file") -x
complete -c gpg -s u -l local-user -xa "(__fish_complete_gpg_user_id)" -d (_ "Use specified key as the key to sign with")
complete -c gpg -l default-key -xa "(__fish_complete_gpg_user_id)" -d (_ "Use specified key as the default key to sign with")
complete -c gpg -s u -l local-user -xa "(__fish_complete_gpg_user_id)" -d (N_ "Use specified key as the key to sign with")
complete -c gpg -l default-key -xa "(__fish_complete_gpg_user_id)" -d (N_ "Use specified key as the default key to sign with")
complete -c gpg -s r -l recipient -xa "(__fish_complete_gpg_user_id)" -d (_ "Encrypt for specified user id")
complete -c gpg -s R -l hidden-recipient -xa "(__fish_complete_gpg_user_id)" -d (_ "Encrypt for specified user id, but hide the keyid of the key")
complete -c gpg -l default-recipient -xa "(__fish_complete_gpg_user_id)" -d (_ "Use specified user id as default recipient")
complete -c gpg -l default-recipient-self -d (_ "Use the default key as default recipient")
complete -c gpg -l no-default-recipient -d (_ "Reset --default-recipient and --default-recipient-self")
complete -c gpg -s r -l recipient -xa "(__fish_complete_gpg_user_id)" -d (N_ "Encrypt for specified user id")
complete -c gpg -s R -l hidden-recipient -xa "(__fish_complete_gpg_user_id)" -d (N_ "Encrypt for specified user id, but hide the keyid of the key")
complete -c gpg -l default-recipient -xa "(__fish_complete_gpg_user_id)" -d (N_ "Use specified user id as default recipient")
complete -c gpg -l default-recipient-self -d (N_ "Use the default key as default recipient")
complete -c gpg -l no-default-recipient -d (N_ "Reset --default-recipient and --default-recipient-self")
complete -c gpg -s v -l verbose -d (_ "Give more information during processing")
complete -c gpg -s q -l quiet -d (_ "Quiet mode")
complete -c gpg -s v -l verbose -d (N_ "Give more information during processing")
complete -c gpg -s q -l quiet -d (N_ "Quiet mode")
complete -c gpg -s z -d (_ "Compression level") -xa "(seq 1 9)"
complete -c gpg -l compress-level -d (_ "Compression level") -xa "(seq 1 9)"
complete -c gpg -l bzip2-compress-level -d (_ "Compression level") -xa "(seq 1 9)"
complete -c gpg -l bzip2-decompress-lowmem -d (_ "Use a different decompression method for BZIP2 compressed files")
complete -c gpg -s z -d (N_ "Compression level") -xa "(seq 1 9)"
complete -c gpg -l compress-level -d (N_ "Compression level") -xa "(seq 1 9)"
complete -c gpg -l bzip2-compress-level -d (N_ "Compression level") -xa "(seq 1 9)"
complete -c gpg -l bzip2-decompress-lowmem -d (N_ "Use a different decompression method for BZIP2 compressed files")
complete -c gpg -s t -l textmode -d (_ "Treat input files as text and store them in the OpenPGP canonical text form with standard 'CRLF' line endings")
complete -c gpg -l no-textmode -d (_ "Don't treat input files as text and store them in the OpenPGP canonical text form with standard 'CRLF' line endings")
complete -c gpg -s t -l textmode -d (N_ "Treat input files as text and store them in the OpenPGP canonical text form with standard 'CRLF' line endings")
complete -c gpg -l no-textmode -d (N_ "Don't treat input files as text and store them in the OpenPGP canonical text form with standard 'CRLF' line endings")
complete -c gpg -s n -l dry-run -d (_ "Don't make any changes (this is not completely implemented)")
complete -c gpg -s n -l dry-run -d (N_ "Don't make any changes (this is not completely implemented)")
complete -c gpg -s i -l interactive -d (_ "Prompt before overwrite")
complete -c gpg -s i -l interactive -d (N_ "Prompt before overwrite")
complete -c gpg -l batch -d (_ "Batch mode")
complete -c gpg -l no-batch -d (_ "Don't use batch mode")
complete -c gpg -l no-tty -d (_ "Never write output to terminal")
complete -c gpg -l batch -d (N_ "Batch mode")
complete -c gpg -l no-batch -d (N_ "Don't use batch mode")
complete -c gpg -l no-tty -d (N_ "Never write output to terminal")
complete -c gpg -l yes -d (_ "Assume yes on most questions")
complete -c gpg -l no -d (_ "Assume no on most questions")
complete -c gpg -l yes -d (N_ "Assume yes on most questions")
complete -c gpg -l no -d (N_ "Assume no on most questions")
complete -c gpg -l ask-cert-level -d (_ "Prompt for a certification level when making a key signature")
complete -c gpg -l no-ask-cert-level -d (_ "Don't prompt for a certification level when making a key signature")
complete -c gpg -l default-cert-level -xa "0\t'Not verified' 1\t'Not verified' 2\t'Caual verification' 3\t'Extensive verification'" -d (_ "The default certification level to use for the level check when signing a key")
complete -c gpg -l min-cert-level -xa "0 1 2 3" -d (_ "Disregard any signatures with a certification level below specified level when building the trust database")
complete -c gpg -l ask-cert-level -d (N_ "Prompt for a certification level when making a key signature")
complete -c gpg -l no-ask-cert-level -d (N_ "Don't prompt for a certification level when making a key signature")
complete -c gpg -l default-cert-level -xa "0\t'Not verified' 1\t'Not verified' 2\t'Caual verification' 3\t'Extensive verification'" -d (N_ "The default certification level to use for the level check when signing a key")
complete -c gpg -l min-cert-level -xa "0 1 2 3" -d (N_ "Disregard any signatures with a certification level below specified level when building the trust database")
complete -c gpg -l trusted-key -xa "(__fish_complete_gpg_key_id)" -d (_ "Assume that the specified key is as trustworthy as one of your own secret keys")
complete -c gpg -l trust-model -xa "pgp classic direct always" -d (_ "Specify trust model")
complete -c gpg -l trusted-key -xa "(__fish_complete_gpg_key_id)" -d (N_ "Assume that the specified key is as trustworthy as one of your own secret keys")
complete -c gpg -l trust-model -xa "pgp classic direct always" -d (N_ "Specify trust model")
complete -c gpg -l keyid-format -xa "short 0xshort long 0xlong" -d (_ "Select how to display key IDs")
complete -c gpg -l keyid-format -xa "short 0xshort long 0xlong" -d (N_ "Select how to display key IDs")
complete -c gpg -l keyserver -x -d (_ "Use specified keyserver")
complete -c gpg -l keyserver-options -xa "(__fish_append , include-revoked include-disabled honor-keyserver-url include-subkeys use-temp-files keep-temp-files verbose timeout http-proxy auto-key-retrieve)" -d (_ "Options for the keyserver")
complete -c gpg -l keyserver -x -d (N_ "Use specified keyserver")
complete -c gpg -l keyserver-options -xa "(__fish_append , include-revoked include-disabled honor-keyserver-url include-subkeys use-temp-files keep-temp-files verbose timeout http-proxy auto-key-retrieve)" -d (N_ "Options for the keyserver")
complete -c gpg -l import-options -xa "(__fish_append , import-local-sigs repair-pks-subkey-bug merge-only)" -d (_ "Options for importing keys")
complete -c gpg -l export-options -xa "(__fish_append , export-local-sigs export-attributes export-sensitive-revkeys export-minimal)" -d (_ "Options for exporting keys")
complete -c gpg -l list-options -xa "(__fish_append , show-photos show-policy-urls show-notations show-std-notations show-user-notations show-keyserver-urls show-uid-validity show-unusable-uids show-unusable-subkeys show-keyring show-sig-expire show-sig-subpackets )" -d (_ "Options for listing keys and signatures")
complete -c gpg -l verify-options -xa "(__fish_append , show-photos show-policy-urls show-notations show-std-notations show-user-notations show-keyserver-urls show-uid-validity show-unusable-uids)" -d (_ "Options for verifying signatures")
complete -c gpg -l import-options -xa "(__fish_append , import-local-sigs repair-pks-subkey-bug merge-only)" -d (N_ "Options for importing keys")
complete -c gpg -l export-options -xa "(__fish_append , export-local-sigs export-attributes export-sensitive-revkeys export-minimal)" -d (N_ "Options for exporting keys")
complete -c gpg -l list-options -xa "(__fish_append , show-photos show-policy-urls show-notations show-std-notations show-user-notations show-keyserver-urls show-uid-validity show-unusable-uids show-unusable-subkeys show-keyring show-sig-expire show-sig-subpackets )" -d (N_ "Options for listing keys and signatures")
complete -c gpg -l verify-options -xa "(__fish_append , show-photos show-policy-urls show-notations show-std-notations show-user-notations show-keyserver-urls show-uid-validity show-unusable-uids)" -d (N_ "Options for verifying signatures")
complete -c gpg -l photo-viewer -r -d (_ "The command line that should be run to view a photo ID")
complete -c gpg -l exec-path -r -d (_ "Sets a list of directories to search for photo viewers and keyserver helpers")
complete -c gpg -l photo-viewer -r -d (N_ "The command line that should be run to view a photo ID")
complete -c gpg -l exec-path -r -d (N_ "Sets a list of directories to search for photo viewers and keyserver helpers")
complete -c gpg -l show-keyring -d (_ "Display the keyring name at the head of key listings to show which keyring a given key resides on")
complete -c gpg -l keyring -r -d (_ "Add specified file to the current list of keyrings")
complete -c gpg -l show-keyring -d (N_ "Display the keyring name at the head of key listings to show which keyring a given key resides on")
complete -c gpg -l keyring -r -d (N_ "Add specified file to the current list of keyrings")
complete -c gpg -l secret-keyring -r -d (_ "Add specified file to the current list of secret keyrings")
complete -c gpg -l primary-keyring -r -d (_ "Designate specified file as the primary public keyring")
complete -c gpg -l secret-keyring -r -d (N_ "Add specified file to the current list of secret keyrings")
complete -c gpg -l primary-keyring -r -d (N_ "Designate specified file as the primary public keyring")
complete -c gpg -l trustdb-name -r -d (_ "Use specified file instead of the default trustdb")
complete -c gpg -l homedir -xa "(__fish_complete_directory (commandline -ct))" -d (_ "Set the home directory")
complete -c gpg -l display-charset -xa " iso-8859-1 iso-8859-2 iso-8859-15 koi8-r utf-8 " -d (_ "Set the native character set")
complete -c gpg -l trustdb-name -r -d (N_ "Use specified file instead of the default trustdb")
complete -c gpg -l homedir -xa "(__fish_complete_directory (commandline -ct))" -d (N_ "Set the home directory")
complete -c gpg -l display-charset -xa " iso-8859-1 iso-8859-2 iso-8859-15 koi8-r utf-8 " -d (N_ "Set the native character set")
complete -c gpg -l utf8-strings -d (_ "Assume that following command line arguments are given in UTF8")
complete -c gpg -l no-utf8-strings -d (_ "Assume that following arguments are encoded in the character set specified by --display-charset")
complete -c gpg -l options -r -d (_ "Read options from specified file, do not read the default options file")
complete -c gpg -l no-options -d (_ "Shortcut for '--options /dev/null'")
complete -c gpg -l load-extension -x -d (_ "Load an extension module")
complete -c gpg -l utf8-strings -d (N_ "Assume that following command line arguments are given in UTF8")
complete -c gpg -l no-utf8-strings -d (N_ "Assume that following arguments are encoded in the character set specified by --display-charset")
complete -c gpg -l options -r -d (N_ "Read options from specified file, do not read the default options file")
complete -c gpg -l no-options -d (N_ "Shortcut for '--options /dev/null'")
complete -c gpg -l load-extension -x -d (N_ "Load an extension module")
complete -c gpg -l status-fd -x -d (_ "Write special status strings to the specified file descriptor")
complete -c gpg -l logger-fd -x -d (_ "Write log output to the specified file descriptor")
complete -c gpg -l attribute-fd -d (_ "Write attribute subpackets to the specified file descriptor")
complete -c gpg -l status-fd -x -d (N_ "Write special status strings to the specified file descriptor")
complete -c gpg -l logger-fd -x -d (N_ "Write log output to the specified file descriptor")
complete -c gpg -l attribute-fd -d (N_ "Write attribute subpackets to the specified file descriptor")
complete -c gpg -l sk-comments -d (_ "Include secret key comment packets when exporting secret keys")
complete -c gpg -l no-sk-comments -d (_ "Don't include secret key comment packets when exporting secret keys")
complete -c gpg -l sk-comments -d (N_ "Include secret key comment packets when exporting secret keys")
complete -c gpg -l no-sk-comments -d (N_ "Don't include secret key comment packets when exporting secret keys")
complete -c gpg -l comment -x -d (_ "Use specified string as comment string")
complete -c gpg -l no-comments -d (_ "Don't use a comment string")
complete -c gpg -l comment -x -d (N_ "Use specified string as comment string")
complete -c gpg -l no-comments -d (N_ "Don't use a comment string")
complete -c gpg -l emit-version -d (_ "Include the version string in ASCII armored output")
complete -c gpg -l no-emit-version -d (_ "Don't include the version string in ASCII armored output")
complete -c gpg -l emit-version -d (N_ "Include the version string in ASCII armored output")
complete -c gpg -l no-emit-version -d (N_ "Don't include the version string in ASCII armored output")
complete -c gpg -l sig-notation -x
complete -c gpg -l cert-notation -x
complete -c gpg -s N -l set-notation -x -d (_ "Put the specified name value pair into the signature as notation data")
complete -c gpg -l sig-policy-url -x -d (_ "Set signature policy")
complete -c gpg -l cert-policy-url -x -d (_ "Set certificate policy")
complete -c gpg -l set-policy-url -x -d (_ "Set signature and certificate policy")
complete -c gpg -l sig-keyserver-url -x -d (_ "Use specified URL as a preferred keyserver for data signatures")
complete -c gpg -s N -l set-notation -x -d (N_ "Put the specified name value pair into the signature as notation data")
complete -c gpg -l sig-policy-url -x -d (N_ "Set signature policy")
complete -c gpg -l cert-policy-url -x -d (N_ "Set certificate policy")
complete -c gpg -l set-policy-url -x -d (N_ "Set signature and certificate policy")
complete -c gpg -l sig-keyserver-url -x -d (N_ "Use specified URL as a preferred keyserver for data signatures")
complete -c gpg -l set-filename -x -d (_ "Use specified string as the filename which is stored inside messages")
complete -c gpg -l set-filename -x -d (N_ "Use specified string as the filename which is stored inside messages")
complete -c gpg -l for-your-eyes-only -d (_ "Set the 'for your eyes only' flag in the message")
complete -c gpg -l no-for-your-eyes-only -d (_ "Clear the 'for your eyes only' flag in the message")
complete -c gpg -l for-your-eyes-only -d (N_ "Set the 'for your eyes only' flag in the message")
complete -c gpg -l no-for-your-eyes-only -d (N_ "Clear the 'for your eyes only' flag in the message")
complete -c gpg -l use-embedded-filename -d (_ "Create file with name as given in data")
complete -c gpg -l no-use-embedded-filename -d (_ "Don't create file with name as given in data")
complete -c gpg -l use-embedded-filename -d (N_ "Create file with name as given in data")
complete -c gpg -l no-use-embedded-filename -d (N_ "Don't create file with name as given in data")
complete -c gpg -l completes-needed -x -d (_ "Number of completely trusted users to introduce a new key signer (defaults to 1)")
complete -c gpg -l marginals-needed -x -d (_ "Number of marginally trusted users to introduce a new key signer (defaults to 3)")
complete -c gpg -l completes-needed -x -d (N_ "Number of completely trusted users to introduce a new key signer (defaults to 1)")
complete -c gpg -l marginals-needed -x -d (N_ "Number of marginally trusted users to introduce a new key signer (defaults to 3)")
complete -c gpg -l max-cert-depth -x -d (_ "Maximum depth of a certification chain (default is 5)")
complete -c gpg -l max-cert-depth -x -d (N_ "Maximum depth of a certification chain (default is 5)")
complete -c gpg -l cipher-algo -xa "(__fish_print_gpg_algo Cipher)" -d (_ "Use specified cipher algorithm")
complete -c gpg -l digest-algo -xa "(__fish_print_gpg_algo Hash)" -d (_ "Use specified message digest algorithm")
complete -c gpg -l compress-algo -xa "(__fish_print_gpg_algo Compression)" -d (_ "Use specified compression algorithm")
complete -c gpg -l cert-digest-algo -xa "(__fish_print_gpg_algo Hash)" -d (_ "Use specified message digest algorithm when signing a key")
complete -c gpg -l s2k-cipher-algo -xa "(__fish_print_gpg_algo Cipher)" -d (_ "Use specified cipher algorithm to protect secret keys")
complete -c gpg -l s2k-digest-algo -xa "(__fish_print_gpg_algo Hash)" -d (_ "Use specified digest algorithm to mangle the passphrases")
complete -c gpg -l s2k-mode -xa "0\t'Plain passphrase' 1\t'Salted passphrase' 3\t'Repeated salted mangling'" -d (_ "Selects how passphrases are mangled")
complete -c gpg -l cipher-algo -xa "(__fish_print_gpg_algo Cipher)" -d (N_ "Use specified cipher algorithm")
complete -c gpg -l digest-algo -xa "(__fish_print_gpg_algo Hash)" -d (N_ "Use specified message digest algorithm")
complete -c gpg -l compress-algo -xa "(__fish_print_gpg_algo Compression)" -d (N_ "Use specified compression algorithm")
complete -c gpg -l cert-digest-algo -xa "(__fish_print_gpg_algo Hash)" -d (N_ "Use specified message digest algorithm when signing a key")
complete -c gpg -l s2k-cipher-algo -xa "(__fish_print_gpg_algo Cipher)" -d (N_ "Use specified cipher algorithm to protect secret keys")
complete -c gpg -l s2k-digest-algo -xa "(__fish_print_gpg_algo Hash)" -d (N_ "Use specified digest algorithm to mangle the passphrases")
complete -c gpg -l s2k-mode -xa "0\t'Plain passphrase' 1\t'Salted passphrase' 3\t'Repeated salted mangling'" -d (N_ "Selects how passphrases are mangled")
complete -c gpg -l simple-sk-checksum -d (_ "Integrity protect secret keys by using a SHA-1 checksum" )
complete -c gpg -l simple-sk-checksum -d (N_ "Integrity protect secret keys by using a SHA-1 checksum" )
complete -c gpg -l disable-cipher-algo -xa "(__fish_print_gpg_algo Cipher)" -d (_ "Never allow the use of specified cipher algorithm")
complete -c gpg -l disable-pubkey-algo -xa "(__fish_print_gpg_algo Pubkey)" -d (_ "Never allow the use of specified public key algorithm")
complete -c gpg -l disable-cipher-algo -xa "(__fish_print_gpg_algo Cipher)" -d (N_ "Never allow the use of specified cipher algorithm")
complete -c gpg -l disable-pubkey-algo -xa "(__fish_print_gpg_algo Pubkey)" -d (N_ "Never allow the use of specified public key algorithm")
complete -c gpg -l no-sig-cache -d (_ "Do not cache the verification status of key signatures")
complete -c gpg -l no-sig-create-check -d (_ "Do not verify each signature right after creation")
complete -c gpg -l no-sig-cache -d (N_ "Do not cache the verification status of key signatures")
complete -c gpg -l no-sig-create-check -d (N_ "Do not verify each signature right after creation")
complete -c gpg -l auto-check-trustdb -d (_ "Automatically run the --check-trustdb command internally when needed")
complete -c gpg -l no-auto-check-trustdb -d (_ "Never automatically run the --check-trustdb")
complete -c gpg -l auto-check-trustdb -d (N_ "Automatically run the --check-trustdb command internally when needed")
complete -c gpg -l no-auto-check-trustdb -d (N_ "Never automatically run the --check-trustdb")
complete -c gpg -l throw-keyids -d (_ "Do not put the recipient keyid into encrypted packets")
complete -c gpg -l no-throw-keyids -d (_ "Put the recipient keyid into encrypted packets")
complete -c gpg -l not-dash-escaped -d (_ "Change the behavior of cleartext signatures so that they can be used for patch files")
complete -c gpg -l throw-keyids -d (N_ "Do not put the recipient keyid into encrypted packets")
complete -c gpg -l no-throw-keyids -d (N_ "Put the recipient keyid into encrypted packets")
complete -c gpg -l not-dash-escaped -d (N_ "Change the behavior of cleartext signatures so that they can be used for patch files")
complete -c gpg -l escape-from-lines -d (_ "Mangle From-field of email headers (default)")
complete -c gpg -l no-escape-from-lines -d (_ "Do not mangle From-field of email headers")
complete -c gpg -l escape-from-lines -d (N_ "Mangle From-field of email headers (default)")
complete -c gpg -l no-escape-from-lines -d (N_ "Do not mangle From-field of email headers")
complete -c gpg -l passphrase-fd -x -d (_ "Read passphrase from specified file descriptor")
complete -c gpg -l command-fd -x -d (_ "Read user input from specified file descriptor")
complete -c gpg -l passphrase-fd -x -d (N_ "Read passphrase from specified file descriptor")
complete -c gpg -l command-fd -x -d (N_ "Read user input from specified file descriptor")
complete -c gpg -l use-agent -d (_ "Try to use the GnuPG-Agent")
complete -c gpg -l no-use-agent -d (_ "Do not try to use the GnuPG-Agent")
complete -c gpg -l gpg-agent-info -x -d (_ "Override value of GPG_AGENT_INFO environment variable")
complete -c gpg -l use-agent -d (N_ "Try to use the GnuPG-Agent")
complete -c gpg -l no-use-agent -d (N_ "Do not try to use the GnuPG-Agent")
complete -c gpg -l gpg-agent-info -x -d (N_ "Override value of GPG_AGENT_INFO environment variable")
complete -c gpg -l force-v3-sigs -d (_ "Force v3 signatures for signatures on data")
complete -c gpg -l no-force-v3-sigs -d (_ "Do not force v3 signatures for signatures on data")
complete -c gpg -l force-v3-sigs -d (N_ "Force v3 signatures for signatures on data")
complete -c gpg -l no-force-v3-sigs -d (N_ "Do not force v3 signatures for signatures on data")
complete -c gpg -l force-v4-certs -d (_ "Always use v4 key signatures even on v3 keys")
complete -c gpg -l no-force-v4-certs -d (_ "Don't use v4 key signatures on v3 keys")
complete -c gpg -l force-v4-certs -d (N_ "Always use v4 key signatures even on v3 keys")
complete -c gpg -l no-force-v4-certs -d (N_ "Don't use v4 key signatures on v3 keys")
complete -c gpg -l force-mdc -d (_ "Force the use of encryption with a modification detection code")
complete -c gpg -l disable-mdc -d (_ "Disable the use of the modification detection code")
complete -c gpg -l force-mdc -d (N_ "Force the use of encryption with a modification detection code")
complete -c gpg -l disable-mdc -d (N_ "Disable the use of the modification detection code")
complete -c gpg -l allow-non-selfsigned-uid -d (_ "Allow the import and use of keys with user IDs which are not self-signed")
complete -c gpg -l no-allow-non-selfsigned-uid -d (_ "Do not allow the import and use of keys with user IDs which are not self-signed")
complete -c gpg -l allow-non-selfsigned-uid -d (N_ "Allow the import and use of keys with user IDs which are not self-signed")
complete -c gpg -l no-allow-non-selfsigned-uid -d (N_ "Do not allow the import and use of keys with user IDs which are not self-signed")
complete -c gpg -l allow-freeform-uid -d (_ "Disable all checks on the form of the user ID while generating a new one")
complete -c gpg -l allow-freeform-uid -d (N_ "Disable all checks on the form of the user ID while generating a new one")
complete -c gpg -l ignore-time-conflict -d (_ "Do not fail if signature is older than key")
complete -c gpg -l ignore-valid-from -d (_ "Allow subkeys that have a timestamp from the future")
complete -c gpg -l ignore-crc-error -d (_ "Ignore CRC errors")
complete -c gpg -l ignore-mdc-error -d (_ "Do not fail on MDC integrity protection failure")
complete -c gpg -l ignore-time-conflict -d (N_ "Do not fail if signature is older than key")
complete -c gpg -l ignore-valid-from -d (N_ "Allow subkeys that have a timestamp from the future")
complete -c gpg -l ignore-crc-error -d (N_ "Ignore CRC errors")
complete -c gpg -l ignore-mdc-error -d (N_ "Do not fail on MDC integrity protection failure")
complete -c gpg -l lock-once -d (_ "Lock the databases the first time a lock is requested and do not release the lock until the process terminates")
complete -c gpg -l lock-multiple -d (_ "Release the locks every time a lock is no longer needed")
complete -c gpg -l lock-once -d (N_ "Lock the databases the first time a lock is requested and do not release the lock until the process terminates")
complete -c gpg -l lock-multiple -d (N_ "Release the locks every time a lock is no longer needed")
complete -c gpg -l no-random-seed-file -d (_ "Do not create an internal pool file for quicker generation of random numbers")
complete -c gpg -l no-verbose -d (_ "Reset verbose level to 0")
complete -c gpg -l no-greeting -d (_ "Suppress the initial copyright message")
complete -c gpg -l no-secmem-warning -d (_ "Suppress the warning about 'using insecure memory'")
complete -c gpg -l no-permission-warning -d (_ "Suppress the warning about unsafe file and home directory (--homedir) permissions")
complete -c gpg -l no-mdc-warning -d (_ "Suppress the warning about missing MDC integrity protection")
complete -c gpg -l no-random-seed-file -d (N_ "Do not create an internal pool file for quicker generation of random numbers")
complete -c gpg -l no-verbose -d (N_ "Reset verbose level to 0")
complete -c gpg -l no-greeting -d (N_ "Suppress the initial copyright message")
complete -c gpg -l no-secmem-warning -d (N_ "Suppress the warning about 'using insecure memory'")
complete -c gpg -l no-permission-warning -d (N_ "Suppress the warning about unsafe file and home directory (--homedir) permissions")
complete -c gpg -l no-mdc-warning -d (N_ "Suppress the warning about missing MDC integrity protection")
complete -c gpg -l require-secmem -d (_ "Refuse to run if GnuPG cannot get secure memory")
complete -c gpg -l require-secmem -d (N_ "Refuse to run if GnuPG cannot get secure memory")
complete -c gpg -l no-require-secmem -d (_ "Do not refuse to run if GnuPG cannot get secure memory (default)")
complete -c gpg -l no-armor -d (_ "Assume the input data is not in ASCII armored format")
complete -c gpg -l no-require-secmem -d (N_ "Do not refuse to run if GnuPG cannot get secure memory (default)")
complete -c gpg -l no-armor -d (N_ "Assume the input data is not in ASCII armored format")
complete -c gpg -l no-default-keyring -d (_ "Do not add the default keyrings to the list of keyrings")
complete -c gpg -l no-default-keyring -d (N_ "Do not add the default keyrings to the list of keyrings")
complete -c gpg -l skip-verify -d (_ "Skip the signature verification step")
complete -c gpg -l skip-verify -d (N_ "Skip the signature verification step")
complete -c gpg -l with-colons -d (_ "Print key listings delimited by colons")
complete -c gpg -l with-key-data -d (_ "Print key listings delimited by colons (like --with-colons) and print the public key data")
complete -c gpg -l with-fingerprint -d (_ "Same as the command --fingerprint but changes only the format of the output and may be used together with another command")
complete -c gpg -l with-colons -d (N_ "Print key listings delimited by colons")
complete -c gpg -l with-key-data -d (N_ "Print key listings delimited by colons (like --with-colons) and print the public key data")
complete -c gpg -l with-fingerprint -d (N_ "Same as the command --fingerprint but changes only the format of the output and may be used together with another command")
complete -c gpg -l fast-list-mode -d (_ "Changes the output of the list commands to work faster")
complete -c gpg -l fixed-list-mode -d (_ "Do not merge primary user ID and primary key in --with-colon listing mode and print all timestamps as UNIX timestamps")
complete -c gpg -l fast-list-mode -d (N_ "Changes the output of the list commands to work faster")
complete -c gpg -l fixed-list-mode -d (N_ "Do not merge primary user ID and primary key in --with-colon listing mode and print all timestamps as UNIX timestamps")
complete -c gpg -l list-only -d (_ "Changes the behaviour of some commands. This is like --dry-run but different")
complete -c gpg -l list-only -d (N_ "Changes the behaviour of some commands. This is like --dry-run but different")
complete -c gpg -l show-session-key -d (_ "Display the session key used for one message")
complete -c gpg -l override-session-key -x -d (_ "Don't use the public key but the specified session key")
complete -c gpg -l show-session-key -d (N_ "Display the session key used for one message")
complete -c gpg -l override-session-key -x -d (N_ "Don't use the public key but the specified session key")
complete -c gpg -l ask-sig-expire -d (_ "Prompt for an expiration time")
complete -c gpg -l no-ask-sig-expire -d (_ "Do not prompt for an expiration time")
complete -c gpg -l ask-sig-expire -d (N_ "Prompt for an expiration time")
complete -c gpg -l no-ask-sig-expire -d (N_ "Do not prompt for an expiration time")
complete -c gpg -l ask-cert-expire -d (_ "Prompt for an expiration time")
complete -c gpg -l no-ask-cert-expire -d (_ "Do not prompt for an expiration time")
complete -c gpg -l ask-cert-expire -d (N_ "Prompt for an expiration time")
complete -c gpg -l no-ask-cert-expire -d (N_ "Do not prompt for an expiration time")
complete -c gpg -l try-all-secrets -d (_ "Don't look at the key ID as stored in the message but try all secret keys in turn to find the right decryption key")
complete -c gpg -l enable-special-filenames -d (_ "Enable a mode in which filenames of the form -&n, where n is a non-negative decimal number, refer to the file descriptor n and not to a file with that name")
complete -c gpg -l try-all-secrets -d (N_ "Don't look at the key ID as stored in the message but try all secret keys in turn to find the right decryption key")
complete -c gpg -l enable-special-filenames -d (N_ "Enable a mode in which filenames of the form -&n, where n is a non-negative decimal number, refer to the file descriptor n and not to a file with that name")
complete -c gpg -l group -x -d (_ "Sets up a named group, which is similar to aliases in email programs")
complete -c gpg -l ungroup -d (_ "Remove a given entry from the --group list")
complete -c gpg -l no-groups -d (_ "Remove all entries from the --group list")
complete -c gpg -l group -x -d (N_ "Sets up a named group, which is similar to aliases in email programs")
complete -c gpg -l ungroup -d (N_ "Remove a given entry from the --group list")
complete -c gpg -l no-groups -d (N_ "Remove all entries from the --group list")
complete -c gpg -l preserve-permissions -d (_ "Don't change the permissions of a secret keyring back to user read/write only")
complete -c gpg -l preserve-permissions -d (N_ "Don't change the permissions of a secret keyring back to user read/write only")
complete -c gpg -l personal-cipher-preferences -x -d (_ "Set the list of personal cipher preferences to the specified string")
complete -c gpg -l personal-digest-preferences -x -d (_ "Set the list of personal digest preferences to the specified string")
complete -c gpg -l personal-compress-preferences -x -d (_ "Set the list of personal compression preferences to the specified string")
complete -c gpg -l default-preference-list -x -d (_ "Set the list of default preferences to the specified string")
complete -c gpg -l personal-cipher-preferences -x -d (N_ "Set the list of personal cipher preferences to the specified string")
complete -c gpg -l personal-digest-preferences -x -d (N_ "Set the list of personal digest preferences to the specified string")
complete -c gpg -l personal-compress-preferences -x -d (N_ "Set the list of personal compression preferences to the specified string")
complete -c gpg -l default-preference-list -x -d (N_ "Set the list of default preferences to the specified string")

View file

@ -1,34 +1,34 @@
complete -c gprof -s A -l annoted-source -d (_ "Print annotated source")
complete -c gprof -s b -l brief -d (_ "Do not print explanations")
complete -c gprof -s C -l exec-counts -d (_ "Print tally")
complete -c gprof -s i -l file-info -d (_ "Display summary")
complete -c gprof -s I -l directory-path -d (_ "Search directories for source")
complete -c gprof -s J -l no-annotated-source -d (_ "No annotated source")
complete -c gprof -s L -l print-path -d (_ "Print full path of source")
complete -c gprof -s p -l flat-profile -d (_ "Print flat profile")
complete -c gprof -s P -l no-flat-profile -d (_ "No flat profile")
complete -c gprof -s q -l graph -d (_ "Print call graph")
complete -c gprof -s Q -l no-graph -d (_ "No call graph")
complete -c gprof -s y -l separate-files -d (_ "Annotate to file")
complete -c gprof -s Z -l no-exec-counts -d (_ "No tally")
complete -c gprof -l function-ordering -d (_ "Suggest function ordering")
complete -rc gprof -l file-ordering -d (_ "Suggest file ordering")
complete -c gprof -s T -l traditional -d (_ "Traditional mode")
complete -xc gprof -s w -l width -d (_ "Set width of output")
complete -c gprof -s x -l all-lines -d (_ "Annotate every line")
complete -xc gprof -l demangle -d (_ "Set demangling style")
complete -c gprof -l no-demangle -d (_ "Turn of demangling")
complete -xc gprof -s a -l no-static -d (_ "Supress static functions")
complete -c gprof -s A -l annoted-source -d (N_ "Print annotated source")
complete -c gprof -s b -l brief -d (N_ "Do not print explanations")
complete -c gprof -s C -l exec-counts -d (N_ "Print tally")
complete -c gprof -s i -l file-info -d (N_ "Display summary")
complete -c gprof -s I -l directory-path -d (N_ "Search directories for source")
complete -c gprof -s J -l no-annotated-source -d (N_ "No annotated source")
complete -c gprof -s L -l print-path -d (N_ "Print full path of source")
complete -c gprof -s p -l flat-profile -d (N_ "Print flat profile")
complete -c gprof -s P -l no-flat-profile -d (N_ "No flat profile")
complete -c gprof -s q -l graph -d (N_ "Print call graph")
complete -c gprof -s Q -l no-graph -d (N_ "No call graph")
complete -c gprof -s y -l separate-files -d (N_ "Annotate to file")
complete -c gprof -s Z -l no-exec-counts -d (N_ "No tally")
complete -c gprof -l function-ordering -d (N_ "Suggest function ordering")
complete -rc gprof -l file-ordering -d (N_ "Suggest file ordering")
complete -c gprof -s T -l traditional -d (N_ "Traditional mode")
complete -xc gprof -s w -l width -d (N_ "Set width of output")
complete -c gprof -s x -l all-lines -d (N_ "Annotate every line")
complete -xc gprof -l demangle -d (N_ "Set demangling style")
complete -c gprof -l no-demangle -d (N_ "Turn of demangling")
complete -xc gprof -s a -l no-static -d (N_ "Supress static functions")
complete -xc gprof -s c -l static-call-graph
complete -xc gprof -s D -l ignore-non-functions -d (_ "Ignore symbols not known to be functions")
complete -xc gprof -s k -r -d (_ "Delete arcs from callgraph")
complete -xc gprof -s l -l line -d (_ "Line by line profiling")
complete -xc gprof -s m -l min-count -r -d (_ "Supress output when executed less than specified times")
complete -xc gprof -s n -l time -d (_ "Only propagate times for matching symbols")
complete -xc gprof -s N -l no-time -d (_ "Do not propagate times for matching symbols")
complete -xc gprof -s z -l display-unused-functions -d (_ "Mention unused functions in flat profile")
complete -xc gprof -s d -l debug -d (_ "Specify debugging options")
complete -xc gprof -s h -l help -d (_ "Display help and exit")
complete -xc gprof -s v -l version -d (_ "Display version and exit")
complete -xc gprof -s O -l file-format -x -a "auto bsd 4.4bsd magic prof" -d (_ "Profile data format")
complete -xc gprof -s s -l sum -d (_ "Print summary")
complete -xc gprof -s D -l ignore-non-functions -d (N_ "Ignore symbols not known to be functions")
complete -xc gprof -s k -r -d (N_ "Delete arcs from callgraph")
complete -xc gprof -s l -l line -d (N_ "Line by line profiling")
complete -xc gprof -s m -l min-count -r -d (N_ "Supress output when executed less than specified times")
complete -xc gprof -s n -l time -d (N_ "Only propagate times for matching symbols")
complete -xc gprof -s N -l no-time -d (N_ "Do not propagate times for matching symbols")
complete -xc gprof -s z -l display-unused-functions -d (N_ "Mention unused functions in flat profile")
complete -xc gprof -s d -l debug -d (N_ "Specify debugging options")
complete -xc gprof -s h -l help -d (N_ "Display help and exit")
complete -xc gprof -s v -l version -d (N_ "Display version and exit")
complete -xc gprof -s O -l file-format -x -a "auto bsd 4.4bsd magic prof" -d (N_ "Profile data format")
complete -xc gprof -s s -l sum -d (N_ "Print summary")

View file

@ -2,49 +2,49 @@
# Completions for the grep command
#
complete -c grep -s A -l after-context -d (_ "Print NUM lines of trailing context")
complete -c grep -s a -l text -d (_ "Process binary file as text")
complete -c grep -s B -l before-context -d (_ "Print NUM lines of leading context")
complete -c grep -s C -l context -d (_ "Print NUM lines of context")
complete -c grep -s b -l byte-offset -d (_ "Print byte offset of matches")
complete -c grep -l binary-files -d (_ "Assume data type for binary files") -x -a "binary text"
complete -c grep -s A -l after-context -d (N_ "Print NUM lines of trailing context")
complete -c grep -s a -l text -d (N_ "Process binary file as text")
complete -c grep -s B -l before-context -d (N_ "Print NUM lines of leading context")
complete -c grep -s C -l context -d (N_ "Print NUM lines of context")
complete -c grep -s b -l byte-offset -d (N_ "Print byte offset of matches")
complete -c grep -l binary-files -d (N_ "Assume data type for binary files") -x -a "binary text"
complete -c grep -l colour -x -a "never always auto"
complete -c grep -l color -x -a "never always auto"
complete -c grep -s c -l count -d (_ "Only print number of matches")
complete -c grep -s D -l devices -x -a "read skip" -d (_ "Action for devices")
complete -c grep -s d -l directories -x -a "read skip recurse" -d (_ "Action for directories")
complete -c grep -s E -l extended-regexp -d (_ "Pattern is extended regexp")
complete -xc grep -s e -l regexp -d (_ "Pattern is a regexp")
complete -c grep -s F -l fixed -d (_ "Pattern is a fixed string")
complete -c grep -s f -l file -r -d (_ "Use pattern from file")
complete -c grep -s G -l basic-regexp -d (_ "Pattern is basic regex")
complete -c grep -s H -l with-filename -d (_ "Print filename")
complete -c grep -s h -l no-filename -d (_ "Supress printing filename")
complete -c grep -l help -d (_ "Display help and exit")
complete -c grep -s I -d (_ "Skip binary files")
complete -c grep -s i -l ignore-case -d (_ "Ignore case")
complete -c grep -s L -l files-without-match -d (_ "Print first non-matching file")
complete -c grep -s l -l files-with-match -d (_ "Print first matching file")
complete -c grep -s m -l max-count -d (_ "Stop reading after NUM matches")
complete -c grep -l mmap -d (_ "Use the mmap system call to read input")
complete -c grep -s n -l line-number -d (_ "Print linenumber")
complete -c grep -s o -l only-matching -d (_ "Show only matching part")
complete -c grep -l label -d (_ "Rename stdin")
complete -c grep -l line-buffered -d (_ "Use line buffering")
complete -c grep -s q -l quiet -d (_ "Do not write anything")
complete -c grep -l silent -d (_ "Do not write anything")
complete -c grep -s R -l recursive -d (_ "Read files under each directory")
complete -c grep -s r -d (_ "Read files under each directory")
complete -c grep -l include -d (_ "Recurse, search file matching PATTERN")
complete -c grep -l exclude -d (_ "Recurse, skip file matching PATTERN")
complete -c grep -s s -l no-messages -d (_ "Suppress error messages")
complete -c grep -s U -l binary -d (_ "Treat files as binary")
complete -c grep -s u -l unix-byte-offsets -d (_ "Report Unix-style byte offsets")
complete -c grep -s V -l version -d (_ "Display version and exit")
complete -c grep -s v -l invert-match -d (_ "Invert the sense of matching")
complete -c grep -s w -l word-regexp -d (_ "Only whole matching words")
complete -c grep -s x -l line-regexp -d (_ "Only whole matching lines")
complete -c grep -s y -d (_ "Synonym for -i")
complete -c grep -s Z -l null -d (_ "Output a zero byte after filename")
complete -c grep -s c -l count -d (N_ "Only print number of matches")
complete -c grep -s D -l devices -x -a "read skip" -d (N_ "Action for devices")
complete -c grep -s d -l directories -x -a "read skip recurse" -d (N_ "Action for directories")
complete -c grep -s E -l extended-regexp -d (N_ "Pattern is extended regexp")
complete -xc grep -s e -l regexp -d (N_ "Pattern is a regexp")
complete -c grep -s F -l fixed -d (N_ "Pattern is a fixed string")
complete -c grep -s f -l file -r -d (N_ "Use pattern from file")
complete -c grep -s G -l basic-regexp -d (N_ "Pattern is basic regex")
complete -c grep -s H -l with-filename -d (N_ "Print filename")
complete -c grep -s h -l no-filename -d (N_ "Supress printing filename")
complete -c grep -l help -d (N_ "Display help and exit")
complete -c grep -s I -d (N_ "Skip binary files")
complete -c grep -s i -l ignore-case -d (N_ "Ignore case")
complete -c grep -s L -l files-without-match -d (N_ "Print first non-matching file")
complete -c grep -s l -l files-with-match -d (N_ "Print first matching file")
complete -c grep -s m -l max-count -d (N_ "Stop reading after NUM matches")
complete -c grep -l mmap -d (N_ "Use the mmap system call to read input")
complete -c grep -s n -l line-number -d (N_ "Print linenumber")
complete -c grep -s o -l only-matching -d (N_ "Show only matching part")
complete -c grep -l label -d (N_ "Rename stdin")
complete -c grep -l line-buffered -d (N_ "Use line buffering")
complete -c grep -s q -l quiet -d (N_ "Do not write anything")
complete -c grep -l silent -d (N_ "Do not write anything")
complete -c grep -s R -l recursive -d (N_ "Read files under each directory")
complete -c grep -s r -d (N_ "Read files under each directory")
complete -c grep -l include -d (N_ "Recurse, search file matching PATTERN")
complete -c grep -l exclude -d (N_ "Recurse, skip file matching PATTERN")
complete -c grep -s s -l no-messages -d (N_ "Suppress error messages")
complete -c grep -s U -l binary -d (N_ "Treat files as binary")
complete -c grep -s u -l unix-byte-offsets -d (N_ "Report Unix-style byte offsets")
complete -c grep -s V -l version -d (N_ "Display version and exit")
complete -c grep -s v -l invert-match -d (N_ "Invert the sense of matching")
complete -c grep -s w -l word-regexp -d (N_ "Only whole matching words")
complete -c grep -s x -l line-regexp -d (N_ "Only whole matching lines")
complete -c grep -s y -d (N_ "Synonym for -i")
complete -c grep -s Z -l null -d (N_ "Output a zero byte after filename")

View file

@ -1,21 +1,21 @@
complete -c gunzip -s c -l stdout -d (_ "Compress to stdout")
complete -c gunzip -s c -l stdout -d (N_ "Compress to stdout")
complete -c gunzip -x -a "(
__fish_complete_suffix (commandline -ct) .gz 'Compressed file'
__fish_complete_suffix (commandline -ct) .tgz 'Compressed archive'
)
"
complete -c gunzip -s f -l force -d (_ "Overwrite")
complete -c gunzip -s h -l help -d (_ "Display help and exit")
complete -c gunzip -s l -l list -d (_ "List compression information")
complete -c gunzip -s L -l license -d (_ "Print license")
complete -c gunzip -s n -l no-name -d (_ "Do not save/restore filename")
complete -c gunzip -s N -l name -d (_ "Save/restore filename")
complete -c gunzip -s q -l quiet -d (_ "Supress warnings")
complete -c gunzip -s r -l recursive -d (_ "Recurse directories")
complete -c gunzip -s S -l suffix -r -d (_ "Suffix")
complete -c gunzip -s t -l test -d (_ "Check integrity")
complete -c gunzip -s v -l verbose -d (_ "Display compression ratios")
complete -c gunzip -s V -l version -d (_ "Display version and exit")
complete -c gunzip -s f -l force -d (N_ "Overwrite")
complete -c gunzip -s h -l help -d (N_ "Display help and exit")
complete -c gunzip -s l -l list -d (N_ "List compression information")
complete -c gunzip -s L -l license -d (N_ "Print license")
complete -c gunzip -s n -l no-name -d (N_ "Do not save/restore filename")
complete -c gunzip -s N -l name -d (N_ "Save/restore filename")
complete -c gunzip -s q -l quiet -d (N_ "Supress warnings")
complete -c gunzip -s r -l recursive -d (N_ "Recurse directories")
complete -c gunzip -s S -l suffix -r -d (N_ "Suffix")
complete -c gunzip -s t -l test -d (N_ "Check integrity")
complete -c gunzip -s v -l verbose -d (N_ "Display compression ratios")
complete -c gunzip -s V -l version -d (N_ "Display version and exit")
complete -c gunzip -x -a "(
__fish_complete_suffix (commandline -ct) .gz 'Compressed file'

View file

@ -1,4 +1,4 @@
complete -c gzip -s c -l stdout -d (_ "Compress to stdout")
complete -c gzip -s c -l stdout -d (N_ "Compress to stdout")
complete -c gzip -s d -l decompress -x -a "
(
__fish_complete_suffix (commandline -ct) .gz 'Compressed file'
@ -6,18 +6,18 @@ complete -c gzip -s d -l decompress -x -a "
)
"
complete -c gzip -s f -l force -d (_ "Overwrite")
complete -c gzip -s h -l help -d (_ "Display help and exit")
complete -c gzip -s l -l list -d (_ "List compression information")
complete -c gzip -s L -l license -d (_ "Print license")
complete -c gzip -s n -l no-name -d (_ "Do not save/restore filename")
complete -c gzip -s N -l name -d (_ "Save/restore filename")
complete -c gzip -s q -l quiet -d (_ "Supress warnings")
complete -c gzip -s r -l recursive -d (_ "Recurse directories")
complete -c gzip -s S -l suffix -r -d (_ "Suffix")
complete -c gzip -s t -l test -d (_ "Check integrity")
complete -c gzip -s v -l verbose -d (_ "Display compression ratios")
complete -c gzip -s V -l version -d (_ "Display version and exit")
complete -c gzip -s 1 -l fast -d (_ "Use fast setting")
complete -c gzip -s 9 -l best -d (_ "Use high compression setting")
complete -c gzip -s f -l force -d (N_ "Overwrite")
complete -c gzip -s h -l help -d (N_ "Display help and exit")
complete -c gzip -s l -l list -d (N_ "List compression information")
complete -c gzip -s L -l license -d (N_ "Print license")
complete -c gzip -s n -l no-name -d (N_ "Do not save/restore filename")
complete -c gzip -s N -l name -d (N_ "Save/restore filename")
complete -c gzip -s q -l quiet -d (N_ "Supress warnings")
complete -c gzip -s r -l recursive -d (N_ "Recurse directories")
complete -c gzip -s S -l suffix -r -d (N_ "Suffix")
complete -c gzip -s t -l test -d (N_ "Check integrity")
complete -c gzip -s v -l verbose -d (N_ "Display compression ratios")
complete -c gzip -s V -l version -d (N_ "Display version and exit")
complete -c gzip -s 1 -l fast -d (N_ "Use fast setting")
complete -c gzip -s 9 -l best -d (N_ "Use high compression setting")

View file

@ -3,34 +3,34 @@
#
for i in (builtin -n)
complete -c help -x -a $i -d (printf (_ "Help for the '%s' builtin") $i)
complete -c help -x -a $i -d (N_ "Help for the specified builtin")
end
for i in count dirh dirs help mimedb nextd open popd prevd pushd set_color psub umask type
complete -c help -x -a $i -d (printf (_ "Help for the '%s' command") $i )
complete -c help -x -a $i -d (N_ "Help for the specified command")
end
for i in syntax todo bugs history;
complete -c help -x -a $i -d (printf (_ "Help section on %s") $i)
complete -c help -x -a $i -d (N_ "Help section" )
end
complete -c help -x -a completion -d (_ "Help on how tab-completion works")
complete -c help -x -a job-control -d (_ "Help on how job control works")
complete -c help -x -a difference -d (_ "Summary on how fish differs from other shells")
complete -c help -x -a completion -d (N_ "Help on how tab-completion works")
complete -c help -x -a job-control -d (N_ "Help on how job control works")
complete -c help -x -a difference -d (N_ "Summary on how fish differs from other shells")
complete -c help -x -a prompt -d (_ "Help on how to set the prompt")
complete -c help -x -a title -d (_ "Help on how to set the titlebar message")
complete -c help -x -a killring -d (_ "Help on how to copy and paste")
complete -c help -x -a editor -d (_ "Help on editor shortcuts")
complete -c help -x -a variables -d (_ "Help on environment variables")
complete -c help -x -a color -d (_ "Help on setting syntax highlighting colors")
complete -c help -x -a builtin-overview -d (_ "A short summary of all builtin commands")
complete -c help -x -a prompt -d (N_ "Help on how to set the prompt")
complete -c help -x -a title -d (N_ "Help on how to set the titlebar message")
complete -c help -x -a killring -d (N_ "Help on how to copy and paste")
complete -c help -x -a editor -d (N_ "Help on editor shortcuts")
complete -c help -x -a variables -d (N_ "Help on environment variables")
complete -c help -x -a color -d (N_ "Help on setting syntax highlighting colors")
complete -c help -x -a builtin-overview -d (N_ "A short summary of all builtin commands")
complete -c help -x -a globbing -d (_ "Help on parameter expansion (Globbing)")
complete -c help -x -a expand -d (_ "Help on parameter expansion (Globbing)")
complete -c help -x -a expand-variable -d (_ "Help on variable expansion \$VARNAME")
complete -c help -x -a expand-home -d (_ "Help on home directory expansion ~USER")
complete -c help -x -a expand-brace -d (_ "Help on brace expansion {a,b,c}")
complete -c help -x -a expand-wildcard -d (_ "Help on wildcard expansion *.*")
complete -c help -x -a expand-command-substitution -d (_ "Help on command substitution (SUBCOMMAND)")
complete -c help -x -a expand-process -d (_ "Help on process expansion %JOB")
complete -c help -x -a globbing -d (N_ "Help on parameter expansion (Globbing)")
complete -c help -x -a expand -d (N_ "Help on parameter expansion (Globbing)")
complete -c help -x -a expand-variable -d (N_ "Help on variable expansion \$VARNAME")
complete -c help -x -a expand-home -d (N_ "Help on home directory expansion ~USER")
complete -c help -x -a expand-brace -d (N_ "Help on brace expansion {a,b,c}")
complete -c help -x -a expand-wildcard -d (N_ "Help on wildcard expansion *.*")
complete -c help -x -a expand-command-substitution -d (N_ "Help on command substitution (SUBCOMMAND)")
complete -c help -x -a expand-process -d (N_ "Help on process expansion %JOB")

View file

@ -1,8 +1,8 @@
complete -c id -s g -l group -d (_ "Print effective group id")
complete -c id -s G -l groups -d (_ "Print all group ids")
complete -c id -s n -l name -d (_ "Print name, not number")
complete -c id -s r -l real -d (_ "Print real ID, not effective")
complete -c id -s u -l user -d (_ "Print effective user ID")
complete -c id -l help -d (_ "Display help and exit")
complete -c id -l version -d (_ "Display version and exit")
complete -c id -s g -l group -d (N_ "Print effective group id")
complete -c id -s G -l groups -d (N_ "Print all group ids")
complete -c id -s n -l name -d (N_ "Print name, not number")
complete -c id -s r -l real -d (N_ "Print real ID, not effective")
complete -c id -s u -l user -d (N_ "Print effective user ID")
complete -c id -l help -d (N_ "Display help and exit")
complete -c id -l version -d (N_ "Display version and exit")

View file

@ -1,5 +1,5 @@
complete -x -c ifconfig -a down -d (_ "Stop interface")
complete -x -c ifconfig -a up -d (_ "Start interface")
complete -x -c ifconfig -a down -d (N_ "Stop interface")
complete -x -c ifconfig -a up -d (N_ "Start interface")
complete -x -c ifconfig -a "
{,-}arp
{,-}promisc
@ -22,4 +22,4 @@ complete -x -c ifconfig -a "
address
txqueuelen
"
complete -x -c ifconfig -a "(__fish_print_interfaces)" -d (_ "Network interface")
complete -x -c ifconfig -a "(__fish_print_interfaces)" -d (N_ "Network interface")

View file

@ -1,6 +1,6 @@
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")
complete -c jobs -s c -l command -d (_ "Show commandname of each job")
complete -c jobs -s l -l last -d (_ "Only show status for last job to be started")
complete -c jobs -s p -l pid -d (N_ "Show the process id of each process in the job")
complete -c jobs -s g -l group -d (N_ "Show group id of job")
complete -c jobs -s c -l command -d (N_ "Show commandname of each job")
complete -c jobs -s l -l last -d (N_ "Only show status for last job to be started")

View file

@ -31,5 +31,5 @@ else
end
complete -c kill -xa '(__fish_complete_pids)'
complete -c kill -s l -d (_ "List names of available signals")
complete -c kill -s l -d (N_ "List names of available signals")

View file

@ -1,52 +1,52 @@
complete -c less -s \? -l help -d (_ "Display help and exit")
complete -c less -s a -l search-skip-screen -d (_ "Search after end of screen")
complete -c less -s b -l buffers -r -d (_ "Buffer space")
complete -c less -s B -l auto-buffers -d (_ "Disable automtic buffer allocation")
complete -c less -s c -l clear-screen -d (_ "Repaint from top")
complete -c less -s C -l CLEAR-SCREEN -d (_ "Clear and repaint from top")
complete -c less -s d -l dumb -d (_ "Supress error for lacking terminal capability")
complete -c less -s e -l quit-at-eof -d (_ "Exit on second EOF")
complete -c less -s E -l QUIT-AT-EOF -d (_ "Exit on EOF")
complete -c less -s f -l force -d (_ "Open non-regular files")
complete -c less -s F -l quit-if-one-screen -d (_ "Quit if file shorter than one screen")
complete -c less -s g -l hilite-search -d (_ "Hilight one search target")
complete -c less -s G -l HILITE-SEARCH -d (_ "No search highlighting")
complete -c less -s h -l max-back-scroll -d (_ "Maximum backward scroll") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
complete -c less -s i -l ignore-case -d (_ "Search ignores lowercase case")
complete -c less -s I -l IGNORE-CASE -d (_ "Search ignores all case")
complete -c less -s j -l jump-target -d (_ "Target line") -r -a "0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 -1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19"
complete -c less -s J -l status-column -d (_ "Display status column")
complete -c less -s k -l lesskey-file -d (_ "Specify key bindings file") -r
complete -c less -s \? -l help -d (N_ "Display help and exit")
complete -c less -s a -l search-skip-screen -d (N_ "Search after end of screen")
complete -c less -s b -l buffers -r -d (N_ "Buffer space")
complete -c less -s B -l auto-buffers -d (N_ "Disable automtic buffer allocation")
complete -c less -s c -l clear-screen -d (N_ "Repaint from top")
complete -c less -s C -l CLEAR-SCREEN -d (N_ "Clear and repaint from top")
complete -c less -s d -l dumb -d (N_ "Supress error for lacking terminal capability")
complete -c less -s e -l quit-at-eof -d (N_ "Exit on second EOF")
complete -c less -s E -l QUIT-AT-EOF -d (N_ "Exit on EOF")
complete -c less -s f -l force -d (N_ "Open non-regular files")
complete -c less -s F -l quit-if-one-screen -d (N_ "Quit if file shorter than one screen")
complete -c less -s g -l hilite-search -d (N_ "Hilight one search target")
complete -c less -s G -l HILITE-SEARCH -d (N_ "No search highlighting")
complete -c less -s h -l max-back-scroll -d (N_ "Maximum backward scroll") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
complete -c less -s i -l ignore-case -d (N_ "Search ignores lowercase case")
complete -c less -s I -l IGNORE-CASE -d (N_ "Search ignores all case")
complete -c less -s j -l jump-target -d (N_ "Target line") -r -a "0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 -1 -2 -3 -4 -5 -6 -7 -8 -9 -10 -11 -12 -13 -14 -15 -16 -17 -18 -19"
complete -c less -s J -l status-column -d (N_ "Display status column")
complete -c less -s k -l lesskey-file -d (N_ "Specify key bindings file") -r
complete -c less -s L -l no-lessopen -d 'Ignore $LESSOPEN'
complete -c less -s m -l long-prompt -d (_ "Prompt with percentage")
complete -c less -s M -l LONG-PROMPT -d (_ "Verbose prompt")
complete -c less -s n -l line-numbers -d (_ "Display line number")
complete -c less -s N -l LINE-NUMBERS -d (_ "Display line number for each line")
complete -c less -s o -l log-file -d (_ "Log input to file") -r
complete -c less -s O -l LOG-FILE -d (_ "Log to file, overwrite") -r
complete -c less -s p -l pattern -d (_ "Start at first occurrence of pattern") -r
complete -c less -s P -l prompt -d (_ "Prompt string") -r
complete -c less -s q -l quiet -d (_ "Silent mode")
complete -c less -l silent -d (_ "Silent mode")
complete -c less -s Q -l QUIET -d (_ "Completly silent mode")
complete -c less -l SILENT -d (_ "Completly silent mode")
complete -c less -s r -l raw-control-chars -d (_ "Display control chars")
complete -c less -s R -l RAW-CONTROL-CHARS -d (_ "Display control chars, guess screen appearance")
complete -c less -s s -l squeeze-blank-lines -d (_ "Multiple blank lines sqeezed")
complete -c less -s S -l chop-long-lines -d (_ "Do not fold long lines")
complete -c less -s t -l tag -d (_ "Edit tag") -r
complete -c less -s T -l tag-file -d (_ "Set tag file") -r
complete -c less -s u -l underline-special -d (_ "Allow backspace and carriage return")
complete -c less -s U -l UNDERLINE-SPECIAL -d (_ "Allow backspace, tab and carriage return")
complete -c less -s V -l version -d (_ "Display version and exit")
complete -c less -s w -l hilite-unread -d (_ "Highlight first unread line on new page")
complete -c less -s W -l HILITE-UNREAD -d (_ "Highlight first unread line on any movement")
complete -c less -s x -l tabs -d (_ "Set tab stops") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16"
complete -c less -s X -l no-init -d (_ "No termcap init")
complete -c less -l no-keypad -d (_ "No keypad init")
complete -c less -s y -l max-forw-scroll -d (_ "Maximum forward scroll") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
complete -c less -s z -l window -d (_ "Max scroll window") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
complete -c less -s \" -l quotes -d (_ "Set quote char") -r
complete -c less -s \~ -l tilde -d (_ "Lines after EOF are blank")
complete -c less -s \# -l shift -d (_ "Characters to scroll on left/right arrows") -a "0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
complete -c less -s m -l long-prompt -d (N_ "Prompt with percentage")
complete -c less -s M -l LONG-PROMPT -d (N_ "Verbose prompt")
complete -c less -s n -l line-numbers -d (N_ "Display line number")
complete -c less -s N -l LINE-NUMBERS -d (N_ "Display line number for each line")
complete -c less -s o -l log-file -d (N_ "Log input to file") -r
complete -c less -s O -l LOG-FILE -d (N_ "Log to file, overwrite") -r
complete -c less -s p -l pattern -d (N_ "Start at first occurrence of pattern") -r
complete -c less -s P -l prompt -d (N_ "Prompt string") -r
complete -c less -s q -l quiet -d (N_ "Silent mode")
complete -c less -l silent -d (N_ "Silent mode")
complete -c less -s Q -l QUIET -d (N_ "Completly silent mode")
complete -c less -l SILENT -d (N_ "Completly silent mode")
complete -c less -s r -l raw-control-chars -d (N_ "Display control chars")
complete -c less -s R -l RAW-CONTROL-CHARS -d (N_ "Display control chars, guess screen appearance")
complete -c less -s s -l squeeze-blank-lines -d (N_ "Multiple blank lines sqeezed")
complete -c less -s S -l chop-long-lines -d (N_ "Do not fold long lines")
complete -c less -s t -l tag -d (N_ "Edit tag") -r
complete -c less -s T -l tag-file -d (N_ "Set tag file") -r
complete -c less -s u -l underline-special -d (N_ "Allow backspace and carriage return")
complete -c less -s U -l UNDERLINE-SPECIAL -d (N_ "Allow backspace, tab and carriage return")
complete -c less -s V -l version -d (N_ "Display version and exit")
complete -c less -s w -l hilite-unread -d (N_ "Highlight first unread line on new page")
complete -c less -s W -l HILITE-UNREAD -d (N_ "Highlight first unread line on any movement")
complete -c less -s x -l tabs -d (N_ "Set tab stops") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16"
complete -c less -s X -l no-init -d (N_ "No termcap init")
complete -c less -l no-keypad -d (N_ "No keypad init")
complete -c less -s y -l max-forw-scroll -d (N_ "Maximum forward scroll") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
complete -c less -s z -l window -d (N_ "Max scroll window") -r -a "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"
complete -c less -s \" -l quotes -d (N_ "Set quote char") -r
complete -c less -s \~ -l tilde -d (N_ "Lines after EOF are blank")
complete -c less -s \# -l shift -d (N_ "Characters to scroll on left/right arrows") -a "0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19"

View file

@ -5,25 +5,25 @@ function __fish_print_make_targets
grep -h -E '^[^#%=$[:space:]][^#%=$]*:([^=]|$)' $files | cut -d ":" -f 1 | sed -e 's/^ *//;s/ *$//;s/ */\n/g' ^/dev/null
end
complete -x -c make -a "(__fish_print_make_targets)" -d (_ "Target")
complete -r -c make -s f -d (_ "Use file as makefile") -r
complete -x -c make -s C -x -a "(__fish_complete_directory (commandline -ct))" -d (_ "Change directory")
complete -c make -s d -d (_ "Debug mode")
complete -c make -s e -d (_ "Environment before makefile")
complete -c make -s i -d (_ "Ignore errors")
complete -x -c make -s I -d (_ "Search directory for makefile") -a "(__fish_complete_directory (commandline -ct))"
complete -x -c make -s j -d (_ "Number of concurrent jobs")
complete -c make -s k -d (_ "Continue after an error")
complete -c make -s l -d (_ "Start when load drops")
complete -c make -s n -d (_ "Do not execute commands")
complete -c make -s o -r -d (_ "Ignore specified file")
complete -c make -s p -d (_ "Print database")
complete -c make -s q -d (_ "Question mode")
complete -c make -s r -d (_ "Eliminate implicit rules")
complete -c make -s s -d (_ "Quiet mode")
complete -c make -s S -d (_ "Don't continue after an error")
complete -c make -s t -d (_ "Touch files, don't run commands")
complete -c make -s v -d (_ "Display version and exit")
complete -c make -s w -d (_ "Print working directory")
complete -c make -s W -r -d (_ "Pretend file is modified")
complete -x -c make -a "(__fish_print_make_targets)" -d (N_ "Target")
complete -r -c make -s f -d (N_ "Use file as makefile") -r
complete -x -c make -s C -x -a "(__fish_complete_directory (commandline -ct))" -d (N_ "Change directory")
complete -c make -s d -d (N_ "Debug mode")
complete -c make -s e -d (N_ "Environment before makefile")
complete -c make -s i -d (N_ "Ignore errors")
complete -x -c make -s I -d (N_ "Search directory for makefile") -a "(__fish_complete_directory (commandline -ct))"
complete -x -c make -s j -d (N_ "Number of concurrent jobs")
complete -c make -s k -d (N_ "Continue after an error")
complete -c make -s l -d (N_ "Start when load drops")
complete -c make -s n -d (N_ "Do not execute commands")
complete -c make -s o -r -d (N_ "Ignore specified file")
complete -c make -s p -d (N_ "Print database")
complete -c make -s q -d (N_ "Question mode")
complete -c make -s r -d (N_ "Eliminate implicit rules")
complete -c make -s s -d (N_ "Quiet mode")
complete -c make -s S -d (N_ "Don't continue after an error")
complete -c make -s t -d (N_ "Touch files, don't run commands")
complete -c make -s v -d (N_ "Display version and exit")
complete -c make -s w -d (N_ "Print working directory")
complete -c make -s W -r -d (N_ "Pretend file is modified")

View file

@ -1,13 +1,13 @@
complete -c makedepend -s D -r -d (_ "Define")
complete -c makedepend -s I -r -d (_ "Include directory")
complete -c makedepend -s Y -r -d (_ "Replace include directories")
complete -c makedepend -s a -d (_ "Append dependencies to makefile")
complete -c makedepend -s f -r -d (_ "Specify makefile")
complete -c makedepend -o include -r -d (_ "Prepend file to input")
complete -c makedepend -s o -r -d (_ "Object file suffix")
complete -c makedepend -s p -r -d (_ "Object file prefix")
complete -c makedepend -s s -r -d (_ "Starting string delimiter")
complete -c makedepend -s w -r -d (_ "Line width")
complete -c makedepend -s v -d (_ "Verbose mode")
complete -c makedepend -s m -d (_ "Warn about multiple inclusion")
complete -c makedepend -s D -r -d (N_ "Define")
complete -c makedepend -s I -r -d (N_ "Include directory")
complete -c makedepend -s Y -r -d (N_ "Replace include directories")
complete -c makedepend -s a -d (N_ "Append dependencies to makefile")
complete -c makedepend -s f -r -d (N_ "Specify makefile")
complete -c makedepend -o include -r -d (N_ "Prepend file to input")
complete -c makedepend -s o -r -d (N_ "Object file suffix")
complete -c makedepend -s p -r -d (N_ "Object file prefix")
complete -c makedepend -s s -r -d (N_ "Starting string delimiter")
complete -c makedepend -s w -r -d (N_ "Line width")
complete -c makedepend -s v -d (N_ "Verbose mode")
complete -c makedepend -s m -d (N_ "Warn about multiple inclusion")

View file

@ -1,36 +1,36 @@
complete -xc man -a "(__fish_complete_man)"
complete -xc man -a 1 -d (_ "Program section")
complete -xc man -a 2 -d (_ "Syscall section")
complete -xc man -a 3 -d (_ "Library section")
complete -xc man -a 4 -d (_ "Device section")
complete -xc man -a 5 -d (_ "File format section")
complete -xc man -a 6 -d (_ "Games section")
complete -xc man -a 7 -d (_ "Misc section")
complete -xc man -a 8 -d (_ "Admin section")
complete -xc man -a 9 -d (_ "Kernel section")
complete -xc man -a tcl -d (_ "Tcl section")
complete -xc man -a n -d (_ "New section")
complete -xc man -a l -d (_ "Local section")
complete -xc man -a 1 -d (N_ "Program section")
complete -xc man -a 2 -d (N_ "Syscall section")
complete -xc man -a 3 -d (N_ "Library section")
complete -xc man -a 4 -d (N_ "Device section")
complete -xc man -a 5 -d (N_ "File format section")
complete -xc man -a 6 -d (N_ "Games section")
complete -xc man -a 7 -d (N_ "Misc section")
complete -xc man -a 8 -d (N_ "Admin section")
complete -xc man -a 9 -d (N_ "Kernel section")
complete -xc man -a tcl -d (N_ "Tcl section")
complete -xc man -a n -d (N_ "New section")
complete -xc man -a l -d (N_ "Local section")
complete -xc man -a p
complete -xc man -a o -d (_ "Old section")
complete -rc man -s C -d (_ "Configuration file")
complete -xc man -s M -a "(__fish_complete_directory (commandline -ct))" -d (_ "Manpath")
complete -rc man -s P -d (_ "Pager")
complete -xc man -s S -d (_ "Manual sections")
complete -c man -s a -d (_ "Display all matches")
complete -c man -s c -d (_ "Always reformat")
complete -c man -s d -d (_ "Debug")
complete -c man -s D -d (_ "Debug and run")
complete -c man -s f -d (_ "Show whatis information")
complete -c man -s F -l preformat -d (_ "Format only")
complete -c man -s h -d (_ "Display help and exit")
complete -c man -s k -d (_ "Show apropos information")
complete -c man -s K -d (_ "Search in all man pages")
complete -xc man -s m -d (_ "Set system")
complete -xc man -s p -d (_ "Preprocessors")
complete -c man -s t -d (_ "Format for printing")
complete -c man -s w -l path -d (_ "Only print locations")
complete -c man -s W -d (_ "Only print locations")
complete -xc man -a o -d (N_ "Old section")
complete -rc man -s C -d (N_ "Configuration file")
complete -xc man -s M -a "(__fish_complete_directory (commandline -ct))" -d (N_ "Manpath")
complete -rc man -s P -d (N_ "Pager")
complete -xc man -s S -d (N_ "Manual sections")
complete -c man -s a -d (N_ "Display all matches")
complete -c man -s c -d (N_ "Always reformat")
complete -c man -s d -d (N_ "Debug")
complete -c man -s D -d (N_ "Debug and run")
complete -c man -s f -d (N_ "Show whatis information")
complete -c man -s F -l preformat -d (N_ "Format only")
complete -c man -s h -d (N_ "Display help and exit")
complete -c man -s k -d (N_ "Show apropos information")
complete -c man -s K -d (N_ "Search in all man pages")
complete -xc man -s m -d (N_ "Set system")
complete -xc man -s p -d (N_ "Preprocessors")
complete -c man -s t -d (N_ "Format for printing")
complete -c man -s w -l path -d (N_ "Only print locations")
complete -c man -s W -d (N_ "Only print locations")

View file

@ -1,9 +1,9 @@
complete -c mimedb -s t -l input-file-data -d (_ "Input is a file, use name and contents to determine mimetype")
complete -c mimedb -s f -l input-filename -d (_ "Input is a file, use name to determine mimetype")
complete -c mimedb -s i -l input-mime -d (_ "Input is a mimetype")
complete -c mimedb -s m -l output-mime -d (_ "Output mimetype")
complete -c mimedb -s d -l output-description -d (_ "Output description of mimetype")
complete -c mimedb -s a -l output-action -d (_ "Output default action for mimetype")
complete -c mimedb -s l -l launch -d (_ "Launch default action for each file")
complete -c mimedb -s h -l help -d (_ "Display help and exit")
complete -c mimedb -s v -l version -d (_ "Display version and exit")
complete -c mimedb -s t -l input-file-data -d (N_ "Input is a file, use name and contents to determine mimetype")
complete -c mimedb -s f -l input-filename -d (N_ "Input is a file, use name to determine mimetype")
complete -c mimedb -s i -l input-mime -d (N_ "Input is a mimetype")
complete -c mimedb -s m -l output-mime -d (N_ "Output mimetype")
complete -c mimedb -s d -l output-description -d (N_ "Output description of mimetype")
complete -c mimedb -s a -l output-action -d (N_ "Output default action for mimetype")
complete -c mimedb -s l -l launch -d (N_ "Launch default action for each file")
complete -c mimedb -s h -l help -d (N_ "Display help and exit")
complete -c mimedb -s v -l version -d (N_ "Display version and exit")

View file

@ -3,24 +3,24 @@
#
complete -c modprobe -d Module -a "(/sbin/modprobe -l | sed -e 's/\/.*\/\([^\/.]*\).*/\1/')"
complete -c modprobe -s v -l verbose -d (_ "Print messages about what the program is doing")
complete -c modprobe -s C -l config -d (_ "Configuration file") -r
complete -c modprobe -s c -l showconfig -d (_ "Dump configuration file")
complete -c modprobe -s n -l dry-run -d (_ "Do not actually insert/remove module")
complete -c modprobe -s i -l ingnore-install -d (_ "Ignore install and remove commands in configuration file")
complete -c modprobe -l ingnore-remove -d (_ "Ignore install and remove commands in configuration file")
complete -c modprobe -s q -l quiet -d (_ "Ignore bogus module names")
complete -c modprobe -s r -l remove -d (_ "Remove modules")
complete -c modprobe -s V -l version -d (_ "Display version and exit")
complete -c modprobe -s f -l force -d (_ "Ignore all version information")
complete -c modprobe -l force-vermagic -d (_ "Ignore version magic information")
complete -c modprobe -l force-modversion -d (_ "Ignore module interface version")
complete -c modprobe -s l -l list -d (_ "List all modules matching the given wildcard")
complete -c modprobe -s a -l all -d (_ "Insert modules matching the given wildcard")
complete -c modprobe -s t -l type -d (_ "Restrict wildcards to specified directory")
complete -c modprobe -s s -l syslog -d (_ "Send error messages through syslog")
complete -c modprobe -l set-version -d (_ "Specify kernel version")
complete -c modprobe -l show-depends -d (_ "List dependencies of module")
complete -c modprobe -s o -l name -d (_ "Rename module")
complete -c modprobe -l first-time -d (_ "Fail if inserting already loaded module")
complete -c modprobe -s v -l verbose -d (N_ "Print messages about what the program is doing")
complete -c modprobe -s C -l config -d (N_ "Configuration file") -r
complete -c modprobe -s c -l showconfig -d (N_ "Dump configuration file")
complete -c modprobe -s n -l dry-run -d (N_ "Do not actually insert/remove module")
complete -c modprobe -s i -l ingnore-install -d (N_ "Ignore install and remove commands in configuration file")
complete -c modprobe -l ingnore-remove -d (N_ "Ignore install and remove commands in configuration file")
complete -c modprobe -s q -l quiet -d (N_ "Ignore bogus module names")
complete -c modprobe -s r -l remove -d (N_ "Remove modules")
complete -c modprobe -s V -l version -d (N_ "Display version and exit")
complete -c modprobe -s f -l force -d (N_ "Ignore all version information")
complete -c modprobe -l force-vermagic -d (N_ "Ignore version magic information")
complete -c modprobe -l force-modversion -d (N_ "Ignore module interface version")
complete -c modprobe -s l -l list -d (N_ "List all modules matching the given wildcard")
complete -c modprobe -s a -l all -d (N_ "Insert modules matching the given wildcard")
complete -c modprobe -s t -l type -d (N_ "Restrict wildcards to specified directory")
complete -c modprobe -s s -l syslog -d (N_ "Send error messages through syslog")
complete -c modprobe -l set-version -d (N_ "Specify kernel version")
complete -c modprobe -l show-depends -d (N_ "List dependencies of module")
complete -c modprobe -s o -l name -d (N_ "Rename module")
complete -c modprobe -l first-time -d (N_ "Fail if inserting already loaded module")

View file

@ -4,26 +4,26 @@
# including mount and df
# Completions for mount
complete -x -c mount -a '(cat /etc/fstab|sed -e "s/^\([^ \t]*\)[ \t]*\([^ \t]*\).*/\1\n\2/"|grep "^/")' -d (_ 'Mount point')
complete -c mount -s V -d (_ 'Display version and exit')
complete -c mount -s h -d (_ 'Display help and exit')
complete -c mount -s v -d (_ 'Verbose mode')
complete -c mount -s a -d (_ 'Mount filesystems in fstab')
complete -c mount -s F -d (_ 'Fork process for each mount')
complete -c mount -s f -d (_ 'Fake mounting')
complete -c mount -s l -d (_ 'Add label to output')
complete -c mount -s n -d (_ 'Do not write mtab')
complete -c mount -s s -d (_ 'Tolerate sloppy mount options')
complete -c mount -s r -d (_ 'Read only')
complete -c mount -s w -d (_ 'Read/Write mode')
complete -x -c mount -s L -d (_ 'Mount partition with specified label')
complete -x -c mount -s U -d (_ 'Mount partition with specified UID')
complete -c mount -s O -x -d (_ 'Exclude filesystems')
complete -c mount -l bind -f -d (_ 'Remount a subtree to a second position')
complete -c mount -l move -f -d (_ 'Move a subtree to a new position')
complete -c mount -x -s t -d (_ 'Filesystem') -a "(__fish_print_filesystems)"
complete -x -c mount -a '(cat /etc/fstab|sed -e "s/^\([^ \t]*\)[ \t]*\([^ \t]*\).*/\1\n\2/"|grep "^/")' -d (N_ 'Mount point')
complete -c mount -s V -d (N_ 'Display version and exit')
complete -c mount -s h -d (N_ 'Display help and exit')
complete -c mount -s v -d (N_ 'Verbose mode')
complete -c mount -s a -d (N_ 'Mount filesystems in fstab')
complete -c mount -s F -d (N_ 'Fork process for each mount')
complete -c mount -s f -d (N_ 'Fake mounting')
complete -c mount -s l -d (N_ 'Add label to output')
complete -c mount -s n -d (N_ 'Do not write mtab')
complete -c mount -s s -d (N_ 'Tolerate sloppy mount options')
complete -c mount -s r -d (N_ 'Read only')
complete -c mount -s w -d (N_ 'Read/Write mode')
complete -x -c mount -s L -d (N_ 'Mount partition with specified label')
complete -x -c mount -s U -d (N_ 'Mount partition with specified UID')
complete -c mount -s O -x -d (N_ 'Exclude filesystems')
complete -c mount -l bind -f -d (N_ 'Remount a subtree to a second position')
complete -c mount -l move -f -d (N_ 'Move a subtree to a new position')
complete -c mount -x -s t -d (N_ 'Filesystem') -a "(__fish_print_filesystems)"
complete -c mount -x -s o -d (_ 'Mount option') -a '(__fish_append , $__fish_mount_opts)'
complete -c mount -x -s o -d (N_ 'Mount option') -a '(__fish_append , $__fish_mount_opts)'
set -g __fish_mount_opts async\tUse\ asynchronous\ I/O atime\tUpdate\ time\ on\ each\ access auto\tMounted\ with\ -a defaults\tUse\ default\ options dev\tInterpret\ character/block\ special\ devices exec\tPermit\ executables _netdev\tFilesystem\ uses\ network noatime\tDo\ not\ update\ time\ on\ each\ access noauto\tNot\ mounted\ by\ -a nodev\tDo\ not\ interpret\ character/block\ special\ devices noexec\tDo\ not\ permit\ executables nosuid\tIgnore\ suid\ bits nouser\tOnly\ root\ may\ mount remount\tRemount\ read-only\ filesystem ro\tMount\ read-only rw\tMount\ read-write suid\tAllow\ suid\ bits sync\tUse\ synchronous\ I/O dirsync\tUse\ synchronous\ directory\ operations user\tAny\ user\ may\ mount users\tAny\ user\ may\ mount\ and\ unmount

View file

@ -24,62 +24,62 @@ set mplayer_lang "
se\Swedish
"
complete -c mplayer -o autoq -d (_ "Dynamically change postprocessing") -x
complete -c mplayer -o autosync -x -d (_ "A/V sync speed")
complete -c mplayer -o framedrop -d (_ "Skip frames to maintain A/V sync")
complete -c mplayer -s h -o help -d (_ "Display help and exit")
complete -c mplayer -o hardframedrop -d (_ "Skip frames to maintain A/V sync")
complete -c mplayer -o loop -x -d (_ "Loop playback") -r -a "0 1 2 3 4 5 6 7 8 9"
complete -c mplayer -o shuffle -d (_ "Play in random order")
complete -c mplayer -o autoq -d (N_ "Dynamically change postprocessing") -x
complete -c mplayer -o autosync -x -d (N_ "A/V sync speed")
complete -c mplayer -o framedrop -d (N_ "Skip frames to maintain A/V sync")
complete -c mplayer -s h -o help -d (N_ "Display help and exit")
complete -c mplayer -o hardframedrop -d (N_ "Skip frames to maintain A/V sync")
complete -c mplayer -o loop -x -d (N_ "Loop playback") -r -a "0 1 2 3 4 5 6 7 8 9"
complete -c mplayer -o shuffle -d (N_ "Play in random order")
complete -c mplayer -s h -o help -d (_ "Display help and exit")
complete -c mplayer -o fs -d (_ "Full screen")
complete -c mplayer -o playlist -d (_ "Set playlist")-r
complete -c mplayer -o alang -d (_ "Audio language") -x -a $mplayer_lang
complete -c mplayer -o audiofile -d (_ "Play audio from file") -r
complete -c mplayer -o cdrom-device -d (_ "Set default CD-ROM drive")
complete -c mplayer -o channels -d (_ "Set number of audio channels") -x -a "2 4 6"
complete -c mplayer -o chapter -d (_ "Set start chapter") -x
complete -c mplayer -o dvd-device -d (_ "Set default DVD-ROM drive")
complete -c mplayer -o dvdangle -d (_ "Set dvd viewing angle") -x -a "1 2 3 4 5 6 7 8"
complete -c mplayer -o forceidx -d (_ "Force rebuilding index")
complete -c mplayer -o fps -d (_ "Override framerate") -x -a "24 25 30"
complete -c mplayer -o idx -d (_ "Build index if unavailable")
complete -c mplayer -o loadidx -d (_ "Load index from file") -r
complete -c mplayer -o ni -d (_ "Force non-interleaved AVI parser")
complete -c mplayer -o saveidx -d (_ "Rebuild index and save to file") -r
complete -c mplayer -o ss -d (_ "Seek to given time position") -x
complete -c mplayer -o tv -d (_ "TV capture mode")
complete -c mplayer -o slang -d (_ "Subtitle language") -x -a $mplayer_lang
complete -c mplayer -o sub -d (_ "Subtitle file") -r
complete -c mplayer -o unicode -d (_ "Handle subtitlefile as unicode")
complete -c mplayer -o utf8 -d (_ "Handle subtitlefile as utf8")
complete -c mplayer -s h -o help -d (N_ "Display help and exit")
complete -c mplayer -o fs -d (N_ "Full screen")
complete -c mplayer -o playlist -d (N_ "Set playlist")-r
complete -c mplayer -o alang -d (N_ "Audio language") -x -a $mplayer_lang
complete -c mplayer -o audiofile -d (N_ "Play audio from file") -r
complete -c mplayer -o cdrom-device -d (N_ "Set default CD-ROM drive")
complete -c mplayer -o channels -d (N_ "Set number of audio channels") -x -a "2 4 6"
complete -c mplayer -o chapter -d (N_ "Set start chapter") -x
complete -c mplayer -o dvd-device -d (N_ "Set default DVD-ROM drive")
complete -c mplayer -o dvdangle -d (N_ "Set dvd viewing angle") -x -a "1 2 3 4 5 6 7 8"
complete -c mplayer -o forceidx -d (N_ "Force rebuilding index")
complete -c mplayer -o fps -d (N_ "Override framerate") -x -a "24 25 30"
complete -c mplayer -o idx -d (N_ "Build index if unavailable")
complete -c mplayer -o loadidx -d (N_ "Load index from file") -r
complete -c mplayer -o ni -d (N_ "Force non-interleaved AVI parser")
complete -c mplayer -o saveidx -d (N_ "Rebuild index and save to file") -r
complete -c mplayer -o ss -d (N_ "Seek to given time position") -x
complete -c mplayer -o tv -d (N_ "TV capture mode")
complete -c mplayer -o slang -d (N_ "Subtitle language") -x -a $mplayer_lang
complete -c mplayer -o sub -d (N_ "Subtitle file") -r
complete -c mplayer -o unicode -d (N_ "Handle subtitlefile as unicode")
complete -c mplayer -o utf8 -d (N_ "Handle subtitlefile as utf8")
complete -c mplayer -o vo -x -d (_ "Video output") -a "
complete -c mplayer -o vo -x -d (N_ "Video output") -a "
(
mplayer -vo help|grep \t.\*\t'\|^ *[a-zA-Z0-9][a-zA-Z0-9]* '|sed -e 's/[\t ]*\([a-zA-Z0-9]*\)[\t ]*\(.*\)/\1\t\2/'
)
"
complete -c mplayer -o ao -x -d (_ "Audio output") -a "
complete -c mplayer -o ao -x -d (N_ "Audio output") -a "
(
mplayer -ao help|grep \t.\*\t'\|^ *[a-zA-Z0-9][a-zA-Z0-9]* '|sed -e 's/[\t ]*\([a-zA-Z0-9]*\)[\t ]*\(.*\)/\1\t\2/'
)
"
complete -c mplayer -o afm -x -d (_ "Audio output") -a "
complete -c mplayer -o afm -x -d (N_ "Audio output") -a "
(
__fish_append ',' (mplayer -afm help|grep \t.\*\t'\|^ *[a-zA-Z0-9][a-zA-Z0-9]* '|sed -e 's/[\t ]*\([a-zA-Z0-9]*\)[\t ]*\(.*\)/\1\t\2/')
)
"
complete -c mplayer -o vfm -x -d (_ "Video output") -a "
complete -c mplayer -o vfm -x -d (N_ "Video output") -a "
(
__fish_append ',' (mplayer -vfm help|grep \t.\*\t'\|^ *[a-zA-Z0-9][a-zA-Z0-9]* '|sed -e 's/[\t ]*\([a-zA-Z0-9]*\)[\t ]*\(.*\)/\1\t\2/')
)
"
complete -c mplayer -l help -d (_ "Display help and exit")
complete -c mplayer -l version -d (_ "Display version and exit")
complete -c mplayer -l help -d (N_ "Display help and exit")
complete -c mplayer -l version -d (N_ "Display version and exit")
set -e mplayer_lang

View file

@ -1,12 +1,12 @@
complete -c mv -s b -l backup -d (_ "Make backup of each existing destination file")
complete -c mv -s f -l force -d (_ "Do not prompt before overwriting")
complete -c mv -s i -l interactive -d (_ "Prompt before overwrite")
complete -c mv -l reply -x -a "yes no query" -d (_ "Answer for overwrite questions")
complete -c mv -l strip-trailing-slashes -d (_ "Remove trailing slashes from source")
complete -c mv -s S -l suffix -r -d (_ "Backup suffix")
complete -c mv -l target-directory -d (_ "Target directory") -x -a "(__fish_complete_directory (commandline -ct) 'Target directory')"
complete -c mv -s u -l update -d (_ "Do not overwrite newer files")
complete -c mv -s v -l vervose -d (_ "Verbose mode")
complete -c mv -l help -d (_ "Display help and exit")
complete -c mv -l version -d (_ "Display version and exit")
complete -c mv -s b -l backup -d (N_ "Make backup of each existing destination file")
complete -c mv -s f -l force -d (N_ "Do not prompt before overwriting")
complete -c mv -s i -l interactive -d (N_ "Prompt before overwrite")
complete -c mv -l reply -x -a "yes no query" -d (N_ "Answer for overwrite questions")
complete -c mv -l strip-trailing-slashes -d (N_ "Remove trailing slashes from source")
complete -c mv -s S -l suffix -r -d (N_ "Backup suffix")
complete -c mv -l target-directory -d (N_ "Target directory") -x -a "(__fish_complete_directory (commandline -ct) 'Target directory')"
complete -c mv -s u -l update -d (N_ "Do not overwrite newer files")
complete -c mv -s v -l vervose -d (N_ "Verbose mode")
complete -c mv -l help -d (N_ "Display help and exit")
complete -c mv -l version -d (N_ "Display version and exit")

View file

@ -1 +1 @@
complete -c nextd -s l -d (_ "Also print directory history")
complete -c nextd -s l -d (N_ "Also print directory history")

View file

@ -1,5 +1,5 @@
complete -c nice -s n -l adjustment -r -d (_ "Increment priority by specified number first")
complete -c nice -l help -d (_ "Display help and exit")
complete -c nice -l version -d (_ "Display version and exit")
complete -c nice -s n -l adjustment -r -d (N_ "Increment priority by specified number first")
complete -c nice -l help -d (N_ "Display help and exit")
complete -c nice -l version -d (N_ "Display version and exit")

View file

@ -1,20 +1,20 @@
complete -c perl -s 0 -d (_ 'Specify record separator')
complete -c perl -s a -d (_ 'Turn on autosplit mode')
complete -c perl -s c -d (_ 'Check syntax')
complete -c perl -s d -d (_ 'Debugger')
complete -c perl -s D -x -d (_ 'Debug option')
complete -c perl -s e -x -d (_ 'Execute command')
complete -c perl -s F -d (_ 'Set regexp used to split input')
complete -c perl -s i -d (_ 'Edit files in-place')
complete -c perl -s I -d (_ 'Include path')
complete -c perl -s l -d (_ 'Automatic line ending processing')
complete -c perl -s n -d (_ 'Loop script')
complete -c perl -s p -d (_ 'Loop script, print $_')
complete -c perl -s P -d (_ 'Invoke CPP')
complete -c perl -s s -d (_ 'Define custom switches')
complete -c perl -s S -d (_ 'Search $PATH for script')
complete -c perl -s T -d (_ 'Taint checking')
complete -c perl -s U -d (_ 'Unsafe mode')
complete -c perl -s v -d (_ 'Display version and exit')
complete -c perl -s x -d (_ 'Extract script')
complete -c perl -s 0 -d (N_ 'Specify record separator')
complete -c perl -s a -d (N_ 'Turn on autosplit mode')
complete -c perl -s c -d (N_ 'Check syntax')
complete -c perl -s d -d (N_ 'Debugger')
complete -c perl -s D -x -d (N_ 'Debug option')
complete -c perl -s e -x -d (N_ 'Execute command')
complete -c perl -s F -d (N_ 'Set regexp used to split input')
complete -c perl -s i -d (N_ 'Edit files in-place')
complete -c perl -s I -d (N_ 'Include path')
complete -c perl -s l -d (N_ 'Automatic line ending processing')
complete -c perl -s n -d (N_ 'Loop script')
complete -c perl -s p -d (N_ 'Loop script, print $_')
complete -c perl -s P -d (N_ 'Invoke CPP')
complete -c perl -s s -d (N_ 'Define custom switches')
complete -c perl -s S -d (N_ 'Search $PATH for script')
complete -c perl -s T -d (N_ 'Taint checking')
complete -c perl -s U -d (N_ 'Unsafe mode')
complete -c perl -s v -d (N_ 'Display version and exit')
complete -c perl -s x -d (N_ 'Extract script')

View file

@ -1,19 +1,19 @@
complete -c pine -s f -d (_ "Open folder") -a "(cd ~/.Mail; ls -d *)"
complete -c pine -s F -d (_ "Open file") -r
complete -c pine -s h -d (_ "Display help and exit")
complete -c pine -s i -d (_ "Start in folder index")
complete -c pine -s I -d (_ "Initial set of keystrokes") -x
complete -c pine -s k -d (_ "Use function keys for commands")
complete -c pine -s l -d (_ "Expand collections in FOLDER LIST display")
complete -c pine -s n -d (_ "Start with specified current message number") -x
complete -c pine -s o -d (_ "Open folder read-only")
complete -c pine -s p -d (_ "Set configuration file") -r
complete -c pine -s P -d (_ "Set global configuration file")
complete -c pine -s r -d (_ "Restricted mode")
complete -c pine -s z -d (_ "Enable suspension support")
complete -c pine -o conf -d (_ "Produce a sample global configuration file")
complete -c pine -o pinerc -d (_ "Produce sample configuration file") -r
complete -c pine -o sort -d (_ "Set mail sort order") -a "
complete -c pine -s f -d (N_ "Open folder") -a "(cd ~/.Mail; ls -d *)"
complete -c pine -s F -d (N_ "Open file") -r
complete -c pine -s h -d (N_ "Display help and exit")
complete -c pine -s i -d (N_ "Start in folder index")
complete -c pine -s I -d (N_ "Initial set of keystrokes") -x
complete -c pine -s k -d (N_ "Use function keys for commands")
complete -c pine -s l -d (N_ "Expand collections in FOLDER LIST display")
complete -c pine -s n -d (N_ "Start with specified current message number") -x
complete -c pine -s o -d (N_ "Open folder read-only")
complete -c pine -s p -d (N_ "Set configuration file") -r
complete -c pine -s P -d (N_ "Set global configuration file")
complete -c pine -s r -d (N_ "Restricted mode")
complete -c pine -s z -d (N_ "Enable suspension support")
complete -c pine -o conf -d (N_ "Produce a sample global configuration file")
complete -c pine -o pinerc -d (N_ "Produce sample configuration file") -r
complete -c pine -o sort -d (N_ "Set mail sort order") -a "
arrival
subject
from
@ -23,4 +23,4 @@ complete -c pine -o sort -d (_ "Set mail sort order") -a "
reverse
"
complete -c pine -o option -d (_ "Config option") -x
complete -c pine -o option -d (N_ "Config option") -x

View file

@ -1,30 +1,30 @@
complete -c ping -a "(__fish_print_hostnames)" -x
complete -c ping -s a -d (_ "Audible ping")
complete -c ping -s A -d (_ "Adaptive ping")
complete -c ping -s b -d (_ "Allow pinging a broadcast address")
complete -c ping -s B -d (_ "Do not allow ping to change source address of probes")
complete -c ping -s c -d (_ "Stop after specified number of ECHO_REQUEST packets") -x
complete -c ping -s d -d (_ "Set the SO_DEBUG option on the socket being used")
complete -c ping -s F -d (_ "Allocate and set 20 bit flow label on ECHO_REQUEST packets") -x
complete -c ping -s f -d (_ "Flood ping")
complete -c ping -s i -d (_ "Wait specified interval of seconds between sending each packet") -x
complete -c ping -s I -d (_ "Set source address to specified interface address") -x -a "(__fish_print_interfaces; fish_print_addresses)"
complete -c ping -s l -d (_ "Send the specified number of packets without waiting for reply") -x
complete -c ping -s L -d (_ "Suppress loopback of multicast packets")
complete -c ping -s n -d (_ "Numeric output only")
complete -c ping -s p -d (_ "Pad packet with empty bytes") -x
complete -c ping -s Q -d (_ "Set Quality of Service -related bits in ICMP datagrams") -x
complete -c ping -s q -d (_ "Quiet mode")
complete -c ping -s R -d (_ "Record route")
complete -c ping -s r -d (_ "Bypass the normal routing tables and send directly to a host on an attached interface")
complete -c ping -s s -d (_ "Specifies the number of data bytes to be sent") -x
complete -c ping -s S -d (_ "Set socket buffer size") -x
complete -c ping -s t -d (_ "Set the IP Time to Live") -x
complete -c ping -s T -d (_ "Set special IP timestamp options") -x
complete -c ping -s M -d (_ "Select Path MTU Discovery strategy") -x -a "do want dont"
complete -c ping -s U -d (_ "Print full user-to-user latency")
complete -c ping -s v -d (_ "Verbose mode")
complete -c ping -s V -d (_ "Display version and exit")
complete -c ping -s w -d (_ "Specify a timeout, in seconds, before ping exits regardless of how many packets have been sent or received") -x
complete -c ping -s W -d (_ "Time to wait for a response, in seconds") -x
complete -c ping -s a -d (N_ "Audible ping")
complete -c ping -s A -d (N_ "Adaptive ping")
complete -c ping -s b -d (N_ "Allow pinging a broadcast address")
complete -c ping -s B -d (N_ "Do not allow ping to change source address of probes")
complete -c ping -s c -d (N_ "Stop after specified number of ECHO_REQUEST packets") -x
complete -c ping -s d -d (N_ "Set the SO_DEBUG option on the socket being used")
complete -c ping -s F -d (N_ "Allocate and set 20 bit flow label on ECHO_REQUEST packets") -x
complete -c ping -s f -d (N_ "Flood ping")
complete -c ping -s i -d (N_ "Wait specified interval of seconds between sending each packet") -x
complete -c ping -s I -d (N_ "Set source address to specified interface address") -x -a "(__fish_print_interfaces; fish_print_addresses)"
complete -c ping -s l -d (N_ "Send the specified number of packets without waiting for reply") -x
complete -c ping -s L -d (N_ "Suppress loopback of multicast packets")
complete -c ping -s n -d (N_ "Numeric output only")
complete -c ping -s p -d (N_ "Pad packet with empty bytes") -x
complete -c ping -s Q -d (N_ "Set Quality of Service -related bits in ICMP datagrams") -x
complete -c ping -s q -d (N_ "Quiet mode")
complete -c ping -s R -d (N_ "Record route")
complete -c ping -s r -d (N_ "Bypass the normal routing tables and send directly to a host on an attached interface")
complete -c ping -s s -d (N_ "Specifies the number of data bytes to be sent") -x
complete -c ping -s S -d (N_ "Set socket buffer size") -x
complete -c ping -s t -d (N_ "Set the IP Time to Live") -x
complete -c ping -s T -d (N_ "Set special IP timestamp options") -x
complete -c ping -s M -d (N_ "Select Path MTU Discovery strategy") -x -a "do want dont"
complete -c ping -s U -d (N_ "Print full user-to-user latency")
complete -c ping -s v -d (N_ "Verbose mode")
complete -c ping -s V -d (N_ "Display version and exit")
complete -c ping -s w -d (N_ "Specify a timeout, in seconds, before ping exits regardless of how many packets have been sent or received") -x
complete -c ping -s W -d (N_ "Time to wait for a response, in seconds") -x

View file

@ -1 +1 @@
complete -c prevd -s l -d (_ "Also print directory history")
complete -c prevd -s l -d (N_ "Also print directory history")

View file

@ -1,37 +1,37 @@
# Completions for ps
complete -c ps -s A -d (_ "Select all")
complete -c ps -s N -d (_ "Invert selection")
complete -c ps -s a -d (_ "Select all processes except session leaders and terminal-less")
complete -c ps -s d -d (_ "Select all processes except session leaders")
complete -c ps -s e -d (_ "Select all")
complete -c ps -l deselect -d (_ "Deselect all processes that do not fulfill conditions")
complete -c ps -s A -d (N_ "Select all")
complete -c ps -s N -d (N_ "Invert selection")
complete -c ps -s a -d (N_ "Select all processes except session leaders and terminal-less")
complete -c ps -s d -d (N_ "Select all processes except session leaders")
complete -c ps -s e -d (N_ "Select all")
complete -c ps -l deselect -d (N_ "Deselect all processes that do not fulfill conditions")
complete -c ps -s C -d (_ "Select by command") -r
complete -c ps -s G -l Group -d (_ "Select by group") -x -a "(__fish_complete_groups)"
complete -c ps -s C -d (N_ "Select by command") -r
complete -c ps -s G -l Group -d (N_ "Select by group") -x -a "(__fish_complete_groups)"
complete -c ps -s U -l User -d (_ "Select by user") -x -a "(__fish_complete_users)"
complete -c ps -s u -l user -d (_ "Select by user") -x -a "(__fish_complete_users)"
complete -c ps -s g -l group -d (_ "Select by group/session") -x -a "(__fish_complete_groups)"
complete -c ps -s p -l pid -d (_ "Select by PID") -x -a "(__fish_complete_pids)"
complete -c ps -l ppid -d (_ "Select by parent PID") -x -a "(__fish_complete_pids)"
complete -c ps -s s -l sid -d (_ "Select by session ID") -x -a "(__fish_complete_pids)"
complete -c ps -s t -l tty -d (_ "Select by tty") -r
complete -c ps -s F -d (_ "Extra full format")
complete -c ps -s O -d (_ "User defined format") -x
complete -c ps -s M -d (_ "Add column for security data")
complete -c ps -s f -d (_ "Full format")
complete -c ps -s j -d (_ "Jobs format")
complete -c ps -s l -d (_ "Long format")
complete -c ps -s o -l format -d (_ "User defined format") -x
complete -c ps -s y -d (_ "Do not show flags")
complete -c ps -s Z -l context -d (_ "Add column for security data")
complete -c ps -s H -l forest -d (_ "Show hierarchy")
complete -c ps -s n -d (_ "Set namelist file") -r
complete -c ps -s w -d (_ "Wide output")
complete -c ps -s L -d (_ "Show threads")
complete -c ps -s T -d (_ "Show threads")
complete -c ps -s V -l version -d (_ "Display version and exit")
complete -c ps -l help -d (_ "Display help and exit")
complete -c ps -l info -d (_ "Display debug info")
complete -c ps -s U -l User -d (N_ "Select by user") -x -a "(__fish_complete_users)"
complete -c ps -s u -l user -d (N_ "Select by user") -x -a "(__fish_complete_users)"
complete -c ps -s g -l group -d (N_ "Select by group/session") -x -a "(__fish_complete_groups)"
complete -c ps -s p -l pid -d (N_ "Select by PID") -x -a "(__fish_complete_pids)"
complete -c ps -l ppid -d (N_ "Select by parent PID") -x -a "(__fish_complete_pids)"
complete -c ps -s s -l sid -d (N_ "Select by session ID") -x -a "(__fish_complete_pids)"
complete -c ps -s t -l tty -d (N_ "Select by tty") -r
complete -c ps -s F -d (N_ "Extra full format")
complete -c ps -s O -d (N_ "User defined format") -x
complete -c ps -s M -d (N_ "Add column for security data")
complete -c ps -s f -d (N_ "Full format")
complete -c ps -s j -d (N_ "Jobs format")
complete -c ps -s l -d (N_ "Long format")
complete -c ps -s o -l format -d (N_ "User defined format") -x
complete -c ps -s y -d (N_ "Do not show flags")
complete -c ps -s Z -l context -d (N_ "Add column for security data")
complete -c ps -s H -l forest -d (N_ "Show hierarchy")
complete -c ps -s n -d (N_ "Set namelist file") -r
complete -c ps -s w -d (N_ "Wide output")
complete -c ps -s L -d (N_ "Show threads")
complete -c ps -s T -d (N_ "Show threads")
complete -c ps -s V -l version -d (N_ "Display version and exit")
complete -c ps -l help -d (N_ "Display help and exit")
complete -c ps -l info -d (N_ "Display debug info")

View file

@ -1,14 +1,14 @@
complete -c python -s c -x -d (_ "Execute argument as command")
complete -c python -s d -d (_ "Debug on")
complete -c python -s E -d (_ "Ignore environment variables")
complete -c python -s h -d (_ "Display help and exit")
complete -c python -s i -d (_ "Interactive mode after executing commands")
complete -c python -s O -d (_ "Enable optimizations")
complete -c python -s Q -x -a "old new" -d (_ "Division control")
complete -c python -s S -d (_ "Disable import of site module")
complete -c python -s t -d (_ "Warn on mixed tabs and spaces")
complete -c python -s u -d (_ "Unbuffered input and output")
complete -c python -s v -d (_ "Verbose mode")
complete -c python -s V -d (_ "Display version and exit")
complete -c python -s W -x -d (_ "Warning control") -a "ignore default all module once error"
complete -c python -s x -d (_ "Ignore first line of input")
complete -c python -s c -x -d (N_ "Execute argument as command")
complete -c python -s d -d (N_ "Debug on")
complete -c python -s E -d (N_ "Ignore environment variables")
complete -c python -s h -d (N_ "Display help and exit")
complete -c python -s i -d (N_ "Interactive mode after executing commands")
complete -c python -s O -d (N_ "Enable optimizations")
complete -c python -s Q -x -a "old new" -d (N_ "Division control")
complete -c python -s S -d (N_ "Disable import of site module")
complete -c python -s t -d (N_ "Warn on mixed tabs and spaces")
complete -c python -s u -d (N_ "Unbuffered input and output")
complete -c python -s v -d (N_ "Verbose mode")
complete -c python -s V -d (N_ "Display version and exit")
complete -c python -s W -x -d (N_ "Warning control") -a "ignore default all module once error"
complete -c python -s x -d (N_ "Ignore first line of input")

View file

@ -1,8 +1,8 @@
complete -c read -s h -l help -d (_ "Display help and exit")
complete -c read -s p -l prompt -d (_ "Set prompt command") -x
complete -c read -s x -l export -d (_ "Export variable to subprocess")
complete -c read -s g -l global -d (_ "Make variable scope global")
complete -c read -s l -l local -d (_ "Make variable scope local")
complete -c read -s U -l universal -d (_ "Make variable scope universal, i.e. share variable with all the users fish processes on this computer")
complete -c read -s u -l unexport -d (_ "Do not export variable to subprocess")
complete -c read -s h -l help -d (N_ "Display help and exit")
complete -c read -s p -l prompt -d (N_ "Set prompt command") -x
complete -c read -s x -l export -d (N_ "Export variable to subprocess")
complete -c read -s g -l global -d (N_ "Make variable scope global")
complete -c read -s l -l local -d (N_ "Make variable scope local")
complete -c read -s U -l universal -d (N_ "Make variable scope universal, i.e. share variable with all the users fish processes on this computer")
complete -c read -s u -l unexport -d (N_ "Do not export variable to subprocess")

View file

@ -1,4 +1,4 @@
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")
complete -c renice -s p -d (N_ "Force following parameters to be process ID's (The default)")
complete -c renice -s g -d (N_ "Force following parameters to be interpreted as process group ID's")
complete -c renice -s u -d (N_ "Force following parameters to be interpreted as user names")

View file

@ -1,11 +1,11 @@
#Completions for rm
complete -c rm -s d -l directory -d (_ "Unlink directory (Only by superuser)")
complete -c rm -s f -l force -d (_ "Never prompt before removal")
complete -c rm -s i -l interactive -d (_ "Prompt before removal")
complete -c rm -s r -l recursive -d (_ "Recursively remove subdirectories")
complete -c rm -s R -d (_ "Recursively remove subdirectories")
complete -c rm -s v -l verbose -d (_ "Explain what is done")
complete -c rm -s h -l help -d (_ "Display help and exit")
complete -c rm -l version -d (_ "Display version and exit")
complete -c rm -s d -l directory -d (N_ "Unlink directory (Only by superuser)")
complete -c rm -s f -l force -d (N_ "Never prompt before removal")
complete -c rm -s i -l interactive -d (N_ "Prompt before removal")
complete -c rm -s r -l recursive -d (N_ "Recursively remove subdirectories")
complete -c rm -s R -d (N_ "Recursively remove subdirectories")
complete -c rm -s v -l verbose -d (N_ "Explain what is done")
complete -c rm -s h -l help -d (N_ "Display help and exit")
complete -c rm -l version -d (N_ "Display version and exit")

View file

@ -1,8 +1,8 @@
#Completions for rmdir
complete -x -c rmdir -a "(__fish_complete_directory (commandline -ct))"
complete -c rmdir -l ignore-fail-on-non-empty -d (_ "Ignore errors from non-empty directories")
complete -c rmdir -s p -l parents -d (_ "Remove each component of path")
complete -c rmdir -s v -l verbose -d (_ "Verbose mode")
complete -c rmdir -l help -d (_ "Display help and exit")
complete -c rmdir -l version -d (_ "Display version and exit")
complete -c rmdir -l ignore-fail-on-non-empty -d (N_ "Ignore errors from non-empty directories")
complete -c rmdir -s p -l parents -d (N_ "Remove each component of path")
complete -c rmdir -s v -l verbose -d (N_ "Verbose mode")
complete -c rmdir -l help -d (N_ "Display help and exit")
complete -c rmdir -l version -d (N_ "Display version and exit")

View file

@ -1,131 +1,131 @@
# Completions for the rpm command. Insanely complicated,
# since rpm has multiple operation modes, and a perverse number of switches.
complete -c rpm -s "?" -l help -d (_ "Display help and exit")
complete -c rpm -l version -d (_ "Display version and exit")
complete -c rpm -l quiet -d (_ "Quiet mode")
complete -c rpm -s v -d (_ "Verbose mode")
complete -c rpm -l rcfile -d (_ "List of rpm configuration files") -f
complete -c rpm -l pipe -d (_ "Pipe output through specified command") -r
complete -c rpm -l dbpath -d (_ "Specify directory for rpm database") -a "
complete -c rpm -s "?" -l help -d (N_ "Display help and exit")
complete -c rpm -l version -d (N_ "Display version and exit")
complete -c rpm -l quiet -d (N_ "Quiet mode")
complete -c rpm -s v -d (N_ "Verbose mode")
complete -c rpm -l rcfile -d (N_ "List of rpm configuration files") -f
complete -c rpm -l pipe -d (N_ "Pipe output through specified command") -r
complete -c rpm -l dbpath -d (N_ "Specify directory for rpm database") -a "
(
__fish_complete_directory (commandline -ct) 'Rpm database directory'
)
"
complete -c rpm -l root -d (_ "Specify root directory for rpm operations") -a "
complete -c rpm -l root -d (N_ "Specify root directory for rpm operations") -a "
(
__fish_complete_directory (commandline -ct) 'Root directory for rpm operations'
)
"
set -- rpm_install -c rpm -n "__fish_contains_opt -s i -s U -s F install upgrade freshen"
complete $rpm_install -l aid -d (_ "Add suggested packages to the transaction set when needed")
complete $rpm_install -l allfiles -d (_ "Installs or upgrades all the files in the package, even if they aren't needed (missingok) and don't exist")
complete $rpm_install -l badreloc -d (_ "Used with --relocate, permit relocations on all file paths, not just those OLD-PATH's included in the binary package relocation hint(s)")
complete $rpm_install -l excludepath -d (_ "Don't install files whose name begins with specified path") -xa "(__fish_complete_directory (commandline -ct) 'Skip installation of files in this directory')"
complete $rpm_install -l excludedocs -d (_ "Don't install any files which are marked as documentation")
complete $rpm_install -l force -d (_ 'Same as using --replacepkgs, --replacefiles, and --oldpackage')
complete $rpm_install -s h -l hash -d (_ 'Print 50 hash marks as the package archive is unpacked')
complete $rpm_install -l ignoresize -d (_ "Don't check for sufficient disk space before installation")
complete $rpm_install -l ignorearch -d (_ "Allow installation or upgrading even if the architectures of the binary package and host don't match")
complete $rpm_install -l ignoreos -d (_ "Allow installation or upgrading even if the operating systems of the binary package and host don't match")
complete $rpm_install -l includedocs -d (_ 'Install documentation files (default)')
complete $rpm_install -l justdb -d (_ 'Update only the database, not the filesystem')
complete $rpm_install -l nodigest -d (_ "Don't verify package or header digests when reading")
complete $rpm_install -l nosignature -d (_ "Don't verify package or header signatures when reading")
complete $rpm_install -l nodeps -d (_ "Don't do a dependency check")
complete $rpm_install -l nosuggest -d (_ "Don't suggest package(s) that provide a missing dependency")
complete $rpm_install -l noorder -d (_ "Don't change the package installation order" )
complete $rpm_install -l noscripts -d (_ "Don't execute scripts")
complete $rpm_install -l nopre -d (_ "Don't execute pre scripts")
complete $rpm_install -l nopost -d (_ "Don't execute post scripts")
complete $rpm_install -l nopreun -d (_ "Don't execute preun scripts")
complete $rpm_install -l nopostun -d (_ "Don't execute postun scripts")
complete $rpm_install -l notriggers -d (_ "Don't execute trigger scriptlets")
complete $rpm_install -l notriggerin -d (_ "Don't execute triggerin scriptlets")
complete $rpm_install -l notriggerun -d (_ "Don't execute triggerun scriptlets")
complete $rpm_install -l notriggerpostun -d (_ "Don't execute triggerpostun scriptlets")
complete $rpm_install -l oldpackage -d (_ 'Allow an upgrade to replace a newer package with an older one')
complete $rpm_install -l percent -d (_ 'Print percentages as files are unpacked from the package archive. This is intended to make rpm easy to run from other tools')
complete $rpm_install -l prefix -d (_ 'For relocatable binary packages, translate all file paths that start with the installation prefix in the package relocation hint(s) to NEWPATH') -xa "(__fish_complete_directory (commandline -ct) 'Directory prefix for relocatable packages')"
complete $rpm_install -l relocate -x -d (_ "Translate all paths that start with first half of following parameter to second half of following parameter" )
complete $rpm_install -l repackage -d (_ 'Re-package the files before erasing')
complete $rpm_install -l replacefiles -d (_ 'Install the packages even if they replace files from other, already installed, packages')
complete $rpm_install -l replacepkgs -d (_ 'Install the packages even if some of them are already installed on this system')
complete $rpm_install -l test -d (_ "Don't install the package, simply check for and report potential conflicts")
complete $rpm_install -l aid -d (N_ "Add suggested packages to the transaction set when needed")
complete $rpm_install -l allfiles -d (N_ "Installs or upgrades all the files in the package, even if they aren't needed (missingok) and don't exist")
complete $rpm_install -l badreloc -d (N_ "Used with --relocate, permit relocations on all file paths, not just those OLD-PATH's included in the binary package relocation hint(s)")
complete $rpm_install -l excludepath -d (N_ "Don't install files whose name begins with specified path") -xa "(__fish_complete_directory (commandline -ct) 'Skip installation of files in this directory')"
complete $rpm_install -l excludedocs -d (N_ "Don't install any files which are marked as documentation")
complete $rpm_install -l force -d (N_ 'Same as using --replacepkgs, --replacefiles, and --oldpackage')
complete $rpm_install -s h -l hash -d (N_ 'Print 50 hash marks as the package archive is unpacked')
complete $rpm_install -l ignoresize -d (N_ "Don't check for sufficient disk space before installation")
complete $rpm_install -l ignorearch -d (N_ "Allow installation or upgrading even if the architectures of the binary package and host don't match")
complete $rpm_install -l ignoreos -d (N_ "Allow installation or upgrading even if the operating systems of the binary package and host don't match")
complete $rpm_install -l includedocs -d (N_ 'Install documentation files (default)')
complete $rpm_install -l justdb -d (N_ 'Update only the database, not the filesystem')
complete $rpm_install -l nodigest -d (N_ "Don't verify package or header digests when reading")
complete $rpm_install -l nosignature -d (N_ "Don't verify package or header signatures when reading")
complete $rpm_install -l nodeps -d (N_ "Don't do a dependency check")
complete $rpm_install -l nosuggest -d (N_ "Don't suggest package(s) that provide a missing dependency")
complete $rpm_install -l noorder -d (N_ "Don't change the package installation order" )
complete $rpm_install -l noscripts -d (N_ "Don't execute scripts")
complete $rpm_install -l nopre -d (N_ "Don't execute pre scripts")
complete $rpm_install -l nopost -d (N_ "Don't execute post scripts")
complete $rpm_install -l nopreun -d (N_ "Don't execute preun scripts")
complete $rpm_install -l nopostun -d (N_ "Don't execute postun scripts")
complete $rpm_install -l notriggers -d (N_ "Don't execute trigger scriptlets")
complete $rpm_install -l notriggerin -d (N_ "Don't execute triggerin scriptlets")
complete $rpm_install -l notriggerun -d (N_ "Don't execute triggerun scriptlets")
complete $rpm_install -l notriggerpostun -d (N_ "Don't execute triggerpostun scriptlets")
complete $rpm_install -l oldpackage -d (N_ 'Allow an upgrade to replace a newer package with an older one')
complete $rpm_install -l percent -d (N_ 'Print percentages as files are unpacked from the package archive. This is intended to make rpm easy to run from other tools')
complete $rpm_install -l prefix -d (N_ 'For relocatable binary packages, translate all file paths that start with the installation prefix in the package relocation hint(s) to NEWPATH') -xa "(__fish_complete_directory (commandline -ct) 'Directory prefix for relocatable packages')"
complete $rpm_install -l relocate -x -d (N_ "Translate all paths that start with first half of following parameter to second half of following parameter" )
complete $rpm_install -l repackage -d (N_ 'Re-package the files before erasing')
complete $rpm_install -l replacefiles -d (N_ 'Install the packages even if they replace files from other, already installed, packages')
complete $rpm_install -l replacepkgs -d (N_ 'Install the packages even if some of them are already installed on this system')
complete $rpm_install -l test -d (N_ "Don't install the package, simply check for and report potential conflicts")
set -e rpm_install
set -- rpm_query -c rpm -n "__fish_contains_opt -s q query"
complete $rpm_query -l changelog -d (_ 'Display change information for the package')
complete $rpm_query -s c -l configfiles -d (_ 'List only configuration files (implies -l)')
complete $rpm_query -s d -l docfiles -d (_ 'List only documentation files (implies -l)')
complete $rpm_query -l dump -d (_ 'Dump file information. Must be used with at least one of -l, -c, -d')
complete $rpm_query -l filesbypkg -d (_ 'List all the files in each selected package')
complete $rpm_query -s i -l info -d (_ 'Display package information, including name, version, and description. Uses --queryformat if specified')
complete $rpm_query -l last -d (_ 'Orders the package listing by install time')
complete $rpm_query -s l -l list -d (_ 'List files in package')
complete $rpm_query -l provides -d (_ 'List capabilities this package provides')
complete $rpm_query -s R -l requires -d (_ 'List packages on which this package depends')
complete $rpm_query -l scripts -d (_ 'List the package specific scriptlets')
complete $rpm_query -s s -l state -d (_ 'Display the states of files in the package. The state of each file is one of normal, not installed, or replaced')
complete $rpm_query -l triggers -d (_ 'Display the trigger scripts contained in the package')
complete $rpm_query -l triggerscripts -d (_ 'Display the trigger scripts contained in the package')
complete $rpm_query -l changelog -d (N_ 'Display change information for the package')
complete $rpm_query -s c -l configfiles -d (N_ 'List only configuration files (implies -l)')
complete $rpm_query -s d -l docfiles -d (N_ 'List only documentation files (implies -l)')
complete $rpm_query -l dump -d (N_ 'Dump file information. Must be used with at least one of -l, -c, -d')
complete $rpm_query -l filesbypkg -d (N_ 'List all the files in each selected package')
complete $rpm_query -s i -l info -d (N_ 'Display package information, including name, version, and description. Uses --queryformat if specified')
complete $rpm_query -l last -d (N_ 'Orders the package listing by install time')
complete $rpm_query -s l -l list -d (N_ 'List files in package')
complete $rpm_query -l provides -d (N_ 'List capabilities this package provides')
complete $rpm_query -s R -l requires -d (N_ 'List packages on which this package depends')
complete $rpm_query -l scripts -d (N_ 'List the package specific scriptlets')
complete $rpm_query -s s -l state -d (N_ 'Display the states of files in the package. The state of each file is one of normal, not installed, or replaced')
complete $rpm_query -l triggers -d (N_ 'Display the trigger scripts contained in the package')
complete $rpm_query -l triggerscripts -d (N_ 'Display the trigger scripts contained in the package')
set -e rpm_query
set -- rpm_select -c rpm -n "__fish_contains_opt -s q -s V query verify"
complete $rpm_select -a "(__fish_print_packages)"
complete $rpm_select -s a -l all -d (_ 'Query all installed packages')
complete $rpm_select -s f -l file -d (_ 'Query package owning specified file') -r
complete $rpm_select -l fileid -d (_ 'Query package that contains a given file identifier, i.e. the MD5 digest of the file contents') -x
complete $rpm_select -s g -l group -d (_ 'Query packages with the specified group') -x
complete $rpm_select -l hdrid -d (_ 'Query package that contains a given header identifier, i.e. the SHA1 digest of the immutable header region') -x
complete $rpm_select -s p -l package -d (_ 'Query an (uninstalled) package in specified file') -xa "(__fish_complete_suffix (commandline -ct) .rpm 'Query package file')"
complete $rpm_select -l pkgid -d (_ 'Query package that contains a given package identifier, i.e. the MD5 digest of the combined header and payload contents') -x
complete $rpm_select -l specfile -d (_ 'Parse and query specified spec-file as if it were a package') -xa "(__fish_complete_suffix (commandline -ct) .spec 'Query package spec file')"
complete $rpm_select -l tid -d (_ 'Query package(s) that have the specified TID (transaction identifier)') -x
complete $rpm_select -l triggeredby -d (_ 'Query packages that are triggered by the specified packages') -x -a "(__fish_print_packages)"
complete $rpm_select -l whatprovides -d (_ 'Query all packages that provide the specified capability') -x
complete $rpm_select -l whatrequires -d (_ 'Query all packages that requires the specified capability for functioning') -x
complete $rpm_select -s a -l all -d (N_ 'Query all installed packages')
complete $rpm_select -s f -l file -d (N_ 'Query package owning specified file') -r
complete $rpm_select -l fileid -d (N_ 'Query package that contains a given file identifier, i.e. the MD5 digest of the file contents') -x
complete $rpm_select -s g -l group -d (N_ 'Query packages with the specified group') -x
complete $rpm_select -l hdrid -d (N_ 'Query package that contains a given header identifier, i.e. the SHA1 digest of the immutable header region') -x
complete $rpm_select -s p -l package -d (N_ 'Query an (uninstalled) package in specified file') -xa "(__fish_complete_suffix (commandline -ct) .rpm 'Query package file')"
complete $rpm_select -l pkgid -d (N_ 'Query package that contains a given package identifier, i.e. the MD5 digest of the combined header and payload contents') -x
complete $rpm_select -l specfile -d (N_ 'Parse and query specified spec-file as if it were a package') -xa "(__fish_complete_suffix (commandline -ct) .spec 'Query package spec file')"
complete $rpm_select -l tid -d (N_ 'Query package(s) that have the specified TID (transaction identifier)') -x
complete $rpm_select -l triggeredby -d (N_ 'Query packages that are triggered by the specified packages') -x -a "(__fish_print_packages)"
complete $rpm_select -l whatprovides -d (N_ 'Query all packages that provide the specified capability') -x
complete $rpm_select -l whatrequires -d (N_ 'Query all packages that requires the specified capability for functioning') -x
set -e rpm_select
set -- rpm_verify -c rpm -n "__fish_contains_opt -s V verify"
complete $rpm_verify -l nodeps -d (_ "Don't verify dependencies of packages")
complete $rpm_verify -l nodigest -d (_ "Don't verify package or header digests when reading")
complete $rpm_verify -l nofiles -d (_ "Don't verify any attributes of package files")
complete $rpm_verify -l noscripts -d (_ "Don't execute the %verifyscript scriptlet")
complete $rpm_verify -l nosignature -d (_ "Don't verify package or header signatures when reading")
complete $rpm_verify -l nolinkto -d (_ "Don't verify linkto attribute")
complete $rpm_verify -l nomd5 -d (_ "Don't verify md5 attribute")
complete $rpm_verify -l nosize -d (_ "Don't verify size attribute")
complete $rpm_verify -l nouser -d (_ "Don't verify user attribute")
complete $rpm_verify -l nogroup -d (_ "Don't verify group attribute")
complete $rpm_verify -l nomtime -d (_ "Don't verify time attribute")
complete $rpm_verify -l nomode -d (_ "Don't verify mode attribute")
complete $rpm_verify -l nordev -d (_ "Don't verify dev attribute")
complete $rpm_verify -l nodeps -d (N_ "Don't verify dependencies of packages")
complete $rpm_verify -l nodigest -d (N_ "Don't verify package or header digests when reading")
complete $rpm_verify -l nofiles -d (N_ "Don't verify any attributes of package files")
complete $rpm_verify -l noscripts -d (N_ "Don't execute the %verifyscript scriptlet")
complete $rpm_verify -l nosignature -d (N_ "Don't verify package or header signatures when reading")
complete $rpm_verify -l nolinkto -d (N_ "Don't verify linkto attribute")
complete $rpm_verify -l nomd5 -d (N_ "Don't verify md5 attribute")
complete $rpm_verify -l nosize -d (N_ "Don't verify size attribute")
complete $rpm_verify -l nouser -d (N_ "Don't verify user attribute")
complete $rpm_verify -l nogroup -d (N_ "Don't verify group attribute")
complete $rpm_verify -l nomtime -d (N_ "Don't verify time attribute")
complete $rpm_verify -l nomode -d (N_ "Don't verify mode attribute")
complete $rpm_verify -l nordev -d (N_ "Don't verify dev attribute")
set -e rpm_verify
set -- rpm_erase -c rpm -n "__fish_contains_opt -s e erase"
complete $rpm_erase -a "(__fish_print_packages)"
complete $rpm_erase -l allmatches -d (_ 'Remove all versions of the package which match specified string')
complete $rpm_erase -l nodeps -d (_ "Don't check dependencies before uninstalling the packages")
complete $rpm_erase -l noscripts -d (_ "Don't execute scriplets")
complete $rpm_erase -l nopreun -d (_ "Don't execute preun scriptlet")
complete $rpm_erase -l nopostun -d (_ "Don't execute postun scriptlet")
complete $rpm_erase -l notriggers -d (_ "Don't execute trigger scriptlets")
complete $rpm_erase -l notriggerun -d (_ "Don't execute triggerun scriptlets")
complete $rpm_erase -l notriggerpostun -d (_ "Don't execute triggerpostun scriptlets")
complete $rpm_erase -l repackage -d (_ 'Re-package the files before erasing')
complete $rpm_erase -l test -d (_ "Don't really uninstall anything" )
complete $rpm_erase -l allmatches -d (N_ 'Remove all versions of the package which match specified string')
complete $rpm_erase -l nodeps -d (N_ "Don't check dependencies before uninstalling the packages")
complete $rpm_erase -l noscripts -d (N_ "Don't execute scriplets")
complete $rpm_erase -l nopreun -d (N_ "Don't execute preun scriptlet")
complete $rpm_erase -l nopostun -d (N_ "Don't execute postun scriptlet")
complete $rpm_erase -l notriggers -d (N_ "Don't execute trigger scriptlets")
complete $rpm_erase -l notriggerun -d (N_ "Don't execute triggerun scriptlets")
complete $rpm_erase -l notriggerpostun -d (N_ "Don't execute triggerpostun scriptlets")
complete $rpm_erase -l repackage -d (N_ 'Re-package the files before erasing')
complete $rpm_erase -l test -d (N_ "Don't really uninstall anything" )
set -e rpm_erase
set -- rpm_mode -c rpm -n '__fish_contains_opt -s e -s i -s F -s V -s U -s q erase install freshen verify upgrade query; if test $status = 0; false; else; true; end'
complete $rpm_mode -s i -l install -d (_ 'Install new package')
complete $rpm_mode -s U -l upgrade -d (_ 'Upgrade existing package')
complete $rpm_mode -s F -l freshen -d (_ 'Upgrade package if already installed')
complete $rpm_mode -s q -l query -d (_ 'Query installed packages')
complete $rpm_mode -s V -l verify -d (_ 'Verify package integrity')
complete $rpm_mode -s e -l erase -d (_ 'Erase package')
complete $rpm_mode -s i -l install -d (N_ 'Install new package')
complete $rpm_mode -s U -l upgrade -d (N_ 'Upgrade existing package')
complete $rpm_mode -s F -l freshen -d (N_ 'Upgrade package if already installed')
complete $rpm_mode -s q -l query -d (N_ 'Query installed packages')
complete $rpm_mode -s V -l verify -d (N_ 'Verify package integrity')
complete $rpm_mode -s e -l erase -d (N_ 'Erase package')
set -e rpm_mode
complete -c rpm -xa '(__fish_complete_suffix (commandline -ct) .rpm (_ "Package") )'

View file

@ -1,25 +1,25 @@
#Completions for ruby
complete -c ruby -s 0 -d (_ 'Specify record separator')
complete -c ruby -s a -d (_ 'Turn on autosplit mode')
complete -c ruby -s c -d (_ 'Check syntax')
complete -c ruby -s K -d (_ 'Kanji code-set')
complete -c ruby -s d -l debug -d (_ 'Debugger')
complete -c ruby -s e -x -d (_ 'Execute command')
complete -c ruby -s h -l help -d (_ 'Display help and exit')
complete -c ruby -s F -d (_ 'Set regexp used to split input')
complete -c ruby -s i -d (_ 'Edit files in-place')
complete -c ruby -s I -d (_ 'Include path')
complete -c ruby -s l -d (_ 'Automatic line ending processing')
complete -c ruby -s n -d (_ 'Loop script')
complete -c ruby -s p -d (_ 'Loop script, print $_')
complete -c ruby -s r -r -d (_ 'Require file')
complete -c ruby -s s -d (_ 'Define custom switches')
complete -c ruby -s S -d (_ 'Search $PATH for script')
complete -c ruby -s T -d (_ 'Taint checking')
complete -c ruby -s v -l verbose -d (_ 'Verbose mode')
complete -c ruby -s w -d (_ 'Verbose mode without message')
complete -c ruby -l version -d (_ 'Display version and exit')
complete -c ruby -s x -d (_ 'Extract script')
complete -c ruby -s X -x -a '(__fish_complete_directory (commandline -ct))' -d (_ 'Directory')
complete -c ruby -s y -l yydebug -d (_ 'Compiler debug mode')
complete -c ruby -s 0 -d (N_ 'Specify record separator')
complete -c ruby -s a -d (N_ 'Turn on autosplit mode')
complete -c ruby -s c -d (N_ 'Check syntax')
complete -c ruby -s K -d (N_ 'Kanji code-set')
complete -c ruby -s d -l debug -d (N_ 'Debugger')
complete -c ruby -s e -x -d (N_ 'Execute command')
complete -c ruby -s h -l help -d (N_ 'Display help and exit')
complete -c ruby -s F -d (N_ 'Set regexp used to split input')
complete -c ruby -s i -d (N_ 'Edit files in-place')
complete -c ruby -s I -d (N_ 'Include path')
complete -c ruby -s l -d (N_ 'Automatic line ending processing')
complete -c ruby -s n -d (N_ 'Loop script')
complete -c ruby -s p -d (N_ 'Loop script, print $_')
complete -c ruby -s r -r -d (N_ 'Require file')
complete -c ruby -s s -d (N_ 'Define custom switches')
complete -c ruby -s S -d (N_ 'Search $PATH for script')
complete -c ruby -s T -d (N_ 'Taint checking')
complete -c ruby -s v -l verbose -d (N_ 'Verbose mode')
complete -c ruby -s w -d (N_ 'Verbose mode without message')
complete -c ruby -l version -d (N_ 'Display version and exit')
complete -c ruby -s x -d (N_ 'Extract script')
complete -c ruby -s X -x -a '(__fish_complete_directory (commandline -ct))' -d (N_ 'Directory')
complete -c ruby -s y -l yydebug -d (N_ 'Compiler debug mode')

View file

@ -25,11 +25,11 @@ complete -c scp -d Hostname -a "
(__fish_print_users)@
"
complete -c scp -s B -d (_ "Batch mode")
complete -c scp -s l -x -d (_ "Bandwidth limit")
complete -c scp -s P -x -d (_ "Port")
complete -c scp -s p -d (_ "Preserves modification times, access times, and modes from the original file")
complete -c scp -s q -d (_ "Do not display progress bar")
complete -c scp -s r -d (_ "Recursively copy")
complete -c scp -s S -d (_ "Encyption program")
complete -c scp -s B -d (N_ "Batch mode")
complete -c scp -s l -x -d (N_ "Bandwidth limit")
complete -c scp -s P -x -d (N_ "Port")
complete -c scp -s p -d (N_ "Preserves modification times, access times, and modes from the original file")
complete -c scp -s q -d (N_ "Do not display progress bar")
complete -c scp -s r -d (N_ "Recursively copy")
complete -c scp -s S -d (N_ "Encyption program")

View file

@ -1,4 +1,4 @@
function __fish_complete_screen -d (_ "Print a list of running screen sessions")
function __fish_complete_screen -d (N_ "Print a list of running screen sessions")
screen -list |grep \^\t.\*\(.\*\)|sed -e 's/\t\(.*\)\t(\(.*\))/\1\tScreen: \2/'
end

View file

@ -9,30 +9,30 @@ sed --version >/dev/null ^/dev/null; and set is_gnu --is-gnu
# Shared ls switches
__fish_gnu_complete -c sed -s n -l quiet -d (_ "Silent mode") $is_gnu
__fish_gnu_complete -c sed -s e -l expression -x -d (_ "Evaluate expression") $is_gnu
__fish_gnu_complete -c sed -s f -l file -r -d (_ "Evalute file") $is_gnu
__fish_gnu_complete -c sed -s i -l in-place -d (_ "Edit files in place") $is_gnu
__fish_gnu_complete -c sed -s n -l quiet -d (N_ "Silent mode") $is_gnu
__fish_gnu_complete -c sed -s e -l expression -x -d (N_ "Evaluate expression") $is_gnu
__fish_gnu_complete -c sed -s f -l file -r -d (N_ "Evalute file") $is_gnu
__fish_gnu_complete -c sed -s i -l in-place -d (N_ "Edit files in place") $is_gnu
if test -n "$is_gnu"
# GNU specific features
complete -c sed -l silent -d (_ "Silent mode")
complete -c sed -s l -l line-length -x -d (_ "Specify line-length")
complete -c sed -l posix -d (_ "Disable all GNU extensions")
complete -c sed -s r -l regexp-extended -d (_ "Use extended regexp")
complete -c sed -s s -l separate -d (_ "Consider files as separate")
complete -c sed -s u -l unbuffered -d (_ "Use minimal IO buffers")
complete -c sed -l help -d (_ "Display help and exit")
complete -c sed -s V -l version -d (_ "Display version and exit")
complete -c sed -l silent -d (N_ "Silent mode")
complete -c sed -s l -l line-length -x -d (N_ "Specify line-length")
complete -c sed -l posix -d (N_ "Disable all GNU extensions")
complete -c sed -s r -l regexp-extended -d (N_ "Use extended regexp")
complete -c sed -s s -l separate -d (N_ "Consider files as separate")
complete -c sed -s u -l unbuffered -d (N_ "Use minimal IO buffers")
complete -c sed -l help -d (N_ "Display help and exit")
complete -c sed -s V -l version -d (N_ "Display version and exit")
else
# If not a GNU system, assume we have standard BSD ls features instead
complete -c sed -s E -d (_ "Use extended regexp")
complete -c sed -s a -d (_ "Delay opening files until a command containing the related 'w' function is applied")
complete -c sed -s l -d (_ "Use line buffering")
complete -c sed -s E -d (N_ "Use extended regexp")
complete -c sed -s a -d (N_ "Delay opening files until a command containing the related 'w' function is applied")
complete -c sed -s l -d (N_ "Use line buffering")
end

View file

@ -1,6 +1,6 @@
# Fist argument is the names of the service, i.e. a file in /etc/init.d
complete -c service -n "test (count (commandline -poc)) = 1" -xa "(command ls /etc/init.d)" -d (_ "Service name")
complete -c service -n "test (count (commandline -poc)) = 1" -xa "(command ls /etc/init.d)" -d (N_ "Service name")
#The second argument is what action to take with the service
complete -c service -n "test (count (commandline -poc)) -gt 1" -xa '$__fish_service_commands'

View file

@ -55,22 +55,22 @@ end
# Regular switches, set only accepts these before the variable name,
# so we need to test using __fish_is_first_token
complete -c set -n '__fish_is_first_token' -s e -l erase -d (_ "Erase variable")
complete -c set -n '__fish_is_first_token' -s x -l export -d (_ "Export variable to subprocess")
complete -c set -n '__fish_is_first_token' -s u -l unexport -d (_ "Do not export variable to subprocess")
complete -c set -n '__fish_is_first_token' -s g -l global -d (_ "Make variable scope global")
complete -c set -n '__fish_is_first_token' -s l -l local -d (_ "Make variable scope local")
complete -c set -n '__fish_is_first_token' -s U -l universal -d (_ "Make variable scope universal, i.e. share variable with all the users fish processes on this computer")
complete -c set -n '__fish_is_first_token' -s q -l query -d (_ "Test if variable is defined")
complete -c set -n '__fish_is_first_token' -s h -l help -d (_ "Display help and exit")
complete -c set -n '__fish_is_first_token' -s e -l erase -d (N_ "Erase variable")
complete -c set -n '__fish_is_first_token' -s x -l export -d (N_ "Export variable to subprocess")
complete -c set -n '__fish_is_first_token' -s u -l unexport -d (N_ "Do not export variable to subprocess")
complete -c set -n '__fish_is_first_token' -s g -l global -d (N_ "Make variable scope global")
complete -c set -n '__fish_is_first_token' -s l -l local -d (N_ "Make variable scope local")
complete -c set -n '__fish_is_first_token' -s U -l universal -d (N_ "Make variable scope universal, i.e. share variable with all the users fish processes on this computer")
complete -c set -n '__fish_is_first_token' -s q -l query -d (N_ "Test if variable is defined")
complete -c set -n '__fish_is_first_token' -s h -l help -d (N_ "Display help and exit")
# Complete using preexisting variable names
complete -c set -n '__fish_is_first_token' -x -a "(set|sed -e 's/ /\tVariable: /')"
# Color completions
complete -c set -n '__fish_set_is_color' -x -a '(set_color --print-colors)' -d (_ Color)
complete -c set -n '__fish_set_is_color' -s b -l background -x -a '(set_color --print-colors)' -d (_ "Change background color")
complete -c set -n '__fish_set_is_color' -s o -l bold -d (_ 'Make font bold')
complete -c set -n '__fish_set_is_color' -x -a '(set_color --print-colors)' -d (N_ Color)
complete -c set -n '__fish_set_is_color' -s b -l background -x -a '(set_color --print-colors)' -d (N_ "Change background color")
complete -c set -n '__fish_set_is_color' -s o -l bold -d (N_ 'Make font bold')
# Locale completions
complete -c set -n '__fish_is_first_token' -x -a '$__fish_locale_vars' -d 'Locale variable'

View file

@ -1,3 +1,3 @@
complete -c set_color -x -d (_ "Color") -a '(set_color --print-colors)'
complete -c set_color -s b -l background -x -a '(set_color --print-colors)' -d (_ "Change background color")
complete -c set_color -s o -l bold -d (_ 'Make font bold')
complete -c set_color -x -d (N_ "Color") -a '(set_color --print-colors)'
complete -c set_color -s b -l background -x -a '(set_color --print-colors)' -d (N_ "Change background color")
complete -c set_color -s o -l bold -d (N_ 'Make font bold')

View file

@ -1,21 +1,21 @@
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")
complete -c sort -s g -l general-numeric-sort -d (_ "Compare general numeric value")
complete -c sort -s i -l ignore-nonprinting -d (_ "Consider only printable")
complete -c sort -s M -l month-sort -d (_ "Compare month names")
complete -c sort -s n -l numeric-sort -d (_ "Compare string numerical value")
complete -c sort -s r -l reverse -d (_ "Reverse results")
complete -c sort -s c -l check -d (_ "Only check if sorted")
complete -c sort -s k -l key -d (_ "Define key")
complete -c sort -s m -l merge -d (_ "Merge sorted files")
complete -c sort -s o -l output -f -d (_ "Write to file")
complete -c sort -s s -l stable -d (_ "Stabilize sort")
complete -c sort -s S -l buffer-size -r -d (_ "Set memory buffer size")
complete -c sort -s t -l field-separator -d (_ "Field separator")
complete -c sort -s T -l temporary-directory -r -d (_ "Set temporary directory")
complete -c sort -s u -l unique -d (_ "Output only first of equal lines")
complete -c sort -s z -l zero-terminated -d (_ "Lines end with 0 byte")
complete -c sort -l help -d (_ "Display help and exit")
complete -c sort -l version -d (_ "Display version and exit")
complete -c sort -s b -l ignore-leading-blanks -d (N_ "Ignore leading blanks")
complete -c sort -s d -l dictionary-order -d (N_ "Consider only blanks and alphanumerics")
complete -c sort -s f -l ignore-case -d (N_ "Ignore case")
complete -c sort -s g -l general-numeric-sort -d (N_ "Compare general numeric value")
complete -c sort -s i -l ignore-nonprinting -d (N_ "Consider only printable")
complete -c sort -s M -l month-sort -d (N_ "Compare month names")
complete -c sort -s n -l numeric-sort -d (N_ "Compare string numerical value")
complete -c sort -s r -l reverse -d (N_ "Reverse results")
complete -c sort -s c -l check -d (N_ "Only check if sorted")
complete -c sort -s k -l key -d (N_ "Define key")
complete -c sort -s m -l merge -d (N_ "Merge sorted files")
complete -c sort -s o -l output -f -d (N_ "Write to file")
complete -c sort -s s -l stable -d (N_ "Stabilize sort")
complete -c sort -s S -l buffer-size -r -d (N_ "Set memory buffer size")
complete -c sort -s t -l field-separator -d (N_ "Field separator")
complete -c sort -s T -l temporary-directory -r -d (N_ "Set temporary directory")
complete -c sort -s u -l unique -d (N_ "Output only first of equal lines")
complete -c sort -s z -l zero-terminated -d (N_ "Lines end with 0 byte")
complete -c sort -l help -d (N_ "Display help and exit")
complete -c sort -l version -d (N_ "Display version and exit")

View file

@ -16,30 +16,30 @@ complete -x -c ssh -d Hostname -a "
(__fish_print_users)@
"
complete -c ssh -s a -d (_ "Disables forwarding of the authentication agent")
complete -c ssh -s A -d (_ "Enables forwarding of the authentication agent")
complete -x -c ssh -s b -d (_ "Interface to transmit from") -a "
complete -c ssh -s a -d (N_ "Disables forwarding of the authentication agent")
complete -c ssh -s A -d (N_ "Enables forwarding of the authentication agent")
complete -x -c ssh -s b -d (N_ "Interface to transmit from") -a "
(
cat /proc/net/arp ^/dev/null| grep -v '^IP'|cut -d ' ' -f 1 ^/dev/null
)
"
complete -x -c ssh -s e -d (_ "Escape character") -a "^ none"
complete -c ssh -s f -d (_ "Go to background")
complete -c ssh -s g -d (_ "Allow remote host to connect to local forwarded ports")
complete -c ssh -s I -d (_ "Smartcard device")
complete -c ssh -s k -d (_ "Disable forwarding of Kerberos tickets")
complete -c ssh -s l -x -a "(__fish_complete_users)" -d (_ "User")
complete -c ssh -s m -d (_ "MAC algorithm")
complete -c ssh -s n -d (_ "Prevent reading from stdin")
complete -c ssh -s N -d (_ "Do not execute remote command")
complete -c ssh -s p -x -d (_ "Port")
complete -c ssh -s q -d (_ "Quiet mode")
complete -c ssh -s s -d (_ "Subsystem")
complete -c ssh -s t -d (_ "Force pseudo-tty allocation")
complete -c ssh -s T -d (_ "Disable pseudo-tty allocation")
complete -c ssh -s x -d (_ "Disable X11 forwarding")
complete -c ssh -s X -d (_ "Enable X11 forwarding")
complete -c ssh -s L -d (_ "Locally forwarded ports")
complete -c ssh -s R -d (_ "Remotely forwarded ports")
complete -c ssh -s D -d (_ "Dynamic port forwarding")
complete -x -c ssh -s e -d (N_ "Escape character") -a "^ none"
complete -c ssh -s f -d (N_ "Go to background")
complete -c ssh -s g -d (N_ "Allow remote host to connect to local forwarded ports")
complete -c ssh -s I -d (N_ "Smartcard device")
complete -c ssh -s k -d (N_ "Disable forwarding of Kerberos tickets")
complete -c ssh -s l -x -a "(__fish_complete_users)" -d (N_ "User")
complete -c ssh -s m -d (N_ "MAC algorithm")
complete -c ssh -s n -d (N_ "Prevent reading from stdin")
complete -c ssh -s N -d (N_ "Do not execute remote command")
complete -c ssh -s p -x -d (N_ "Port")
complete -c ssh -s q -d (N_ "Quiet mode")
complete -c ssh -s s -d (N_ "Subsystem")
complete -c ssh -s t -d (N_ "Force pseudo-tty allocation")
complete -c ssh -s T -d (N_ "Disable pseudo-tty allocation")
complete -c ssh -s x -d (N_ "Disable X11 forwarding")
complete -c ssh -s X -d (N_ "Enable X11 forwarding")
complete -c ssh -s L -d (N_ "Locally forwarded ports")
complete -c ssh -s R -d (N_ "Remotely forwarded ports")
complete -c ssh -s D -d (N_ "Dynamic port forwarding")

View file

@ -17,17 +17,17 @@ complete -x -c sshfs -d Hostname -a "
#
# Mount Points, for neatness, I am only mounting under ~/mnt/
#
complete -c sshfs -d (_ "Mount point") -x -a '(find ~/mnt -type d)'
complete -c sshfs -d (N_ "Mount point") -x -a '(find ~/mnt -type d)'
#
# Command options
#
complete -c sshfs -s V -d (_ "Display version and exit")
complete -c sshfs -s p -x -d (_ "Port")
complete -c sshfs -s C -d (_ "Compression")
complete -c sshfs -s o -x -d (_ "Mount options")
complete -c sshfs -s d -d (_ "Enable debug")
complete -c sshfs -s f -d (_ "Foreground operation")
complete -c sshfs -s s -d (_ "Disable multi-threaded operation")
complete -c sshfs -s r -d (_ "Mount options")
complete -c sshfs -s h -d (_ "Display help and exit")
complete -c sshfs -s V -d (N_ "Display version and exit")
complete -c sshfs -s p -x -d (N_ "Port")
complete -c sshfs -s C -d (N_ "Compression")
complete -c sshfs -s o -x -d (N_ "Mount options")
complete -c sshfs -s d -d (N_ "Enable debug")
complete -c sshfs -s f -d (N_ "Foreground operation")
complete -c sshfs -s s -d (N_ "Disable multi-threaded operation")
complete -c sshfs -s r -d (N_ "Mount options")
complete -c sshfs -s h -d (N_ "Display help and exit")

View file

@ -1,10 +1,10 @@
complete -c status -l is-command-substitution -d (_ "Test if a command substitution is currently evaluated")
complete -c status -l is-block -d (_ "Test if a code block is currently evaluated")
complete -c status -l is-interactive -d (_ "Test if this is an interactive shell")
complete -c status -l is-login -d (_ "Test if this is a login shell")
complete -c status -l is-full-job-control -d (_ "Test if all new jobs are put under job control")
complete -c status -l is-interactive-job-control -d (_ "Test if only interactive new jobs are put under job control")
complete -c status -l is-no-job-control -d (_ "Test if new jobs are never put under job control")
complete -c status -s j -l job-control -xa "full interactive none" -d (_ "Set which jobs are out under job control")
complete -c status -s t -l print-stack-trace -d (_ "Print a list of all function calls leading up to running the current command")
complete -c status -l is-command-substitution -d (N_ "Test if a command substitution is currently evaluated")
complete -c status -l is-block -d (N_ "Test if a code block is currently evaluated")
complete -c status -l is-interactive -d (N_ "Test if this is an interactive shell")
complete -c status -l is-login -d (N_ "Test if this is a login shell")
complete -c status -l is-full-job-control -d (N_ "Test if all new jobs are put under job control")
complete -c status -l is-interactive-job-control -d (N_ "Test if only interactive new jobs are put under job control")
complete -c status -l is-no-job-control -d (N_ "Test if new jobs are never put under job control")
complete -c status -s j -l job-control -xa "full interactive none" -d (N_ "Set which jobs are out under job control")
complete -c status -s t -l print-stack-trace -d (N_ "Print a list of all function calls leading up to running the current command")

Some files were not shown because too many files have changed in this diff Show more