summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/nvim/init.lua17
-rw-r--r--.gitmodules42
-rwxr-xr-x.local/bin/dotfiles5
-rwxr-xr-x.local/bin/dotman6
m---------.local/share/nvim/site/pack/plugins/start/conform0
m---------.local/share/nvim/site/pack/plugins/start/dressing.nvim0
m---------.local/share/nvim/site/pack/plugins/start/fidget.nvim0
m---------.local/share/nvim/site/pack/plugins/start/lazydev0
m---------.local/share/nvim/site/pack/plugins/start/malange0
m---------.local/share/nvim/site/pack/plugins/start/mason0
m---------.local/share/nvim/site/pack/plugins/start/mason-lspconfig0
m---------.local/share/nvim/site/pack/plugins/start/nvim-cmp0
m---------.local/share/nvim/site/pack/plugins/start/nvim-cmp-lsp0
m---------.local/share/nvim/site/pack/plugins/start/nvim-lspconfig0
m---------.local/share/nvim/site/pack/plugins/start/nvim-treesitter0
-rw-r--r--.zcompdump2287
-rw-r--r--.zfunc/_cargo4
-rw-r--r--.zfunc/_rustup1677
-rw-r--r--.zfunc/osc7_prompt5
-rw-r--r--.zprofile12
-rw-r--r--.zshenv10
-rw-r--r--.zshrc3
22 files changed, 4034 insertions, 34 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua
index dc977a9..b763d67 100644
--- a/.config/nvim/init.lua
+++ b/.config/nvim/init.lua
@@ -1,23 +1,6 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-require "paq" {
- { "savq/paq-nvim" },
- { "savq/melange-nvim" },
- { 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate' },
- { 'williamboman/mason.nvim' },
- { 'williamboman/mason-lspconfig.nvim' },
- { 'neovim/nvim-lspconfig' },
- { 'p00f/clangd_extensions.nvim' },
- { 'folke/lazydev.nvim' },
- { 'mrcjkb/rustaceanvim' },
- { 'hrsh7th/nvim-cmp' },
- { 'hrsh7th/cmp-nvim-lsp' },
- { "stevearc/conform.nvim" },
- { 'stevearc/dressing.nvim' },
- { "j-hui/fidget.nvim" },
-}:sync()
-
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.title = true
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..3df7874
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,42 @@
+[submodule "nvim-lspconfig"]
+ path = .local/share/nvim/site/pack/plugins/start/nvim-lspconfig
+ url = https://github.com/neovim/nvim-lspconfig.git
+[submodule "nvim-treesitter"]
+ path = .local/share/nvim/site/pack/plugins/start/nvim-treesitter
+ url = https://github.com/nvim-treesitter/nvim-treesitter.git
+[submodule "clang_extensions.nvim"]
+ path = .local/share/nvim/site/pack/plugins/start/clang_extensions
+ url = https://github.com/p00f/clangd_extensions.nvim
+[submodule "lazydev.nvim"]
+ path = .local/share/nvim/site/pack/plugins/start/lazydev.nvim
+ url = https://github.com/folke/lazydev.nvim
+[submodule "rustaceanvim"]
+ path = .local/share/nvim/site/pack/plugins/start/rustaceanvim
+ url = https://github.com/mrcjkb/rustaceanvim
+[submodule "nvim-cmp"]
+ path = .local/share/nvim/site/pack/plugins/start/nvim-cmp
+ url = https://github.com/hrsh7th/nvim-cmp
+[submodule "nvim-cmp-lsp"]
+ path = .local/share/nvim/site/pack/plugins/start/nvim-cmp-lsp
+ url = https://github.com/hrsh7th/cmp-nvim-lsp
+[submodule "conform"]
+ path = .local/share/nvim/site/pack/plugins/start/conform
+ url = https://github.com/stevearc/conform.nvim
+[submodule "dressing.nvim"]
+ path = .local/share/nvim/site/pack/plugins/start/dressing.nvim
+ url = https://github.com/stevearc/dressing.nvim
+[submodule "fidget"]
+ path = .local/share/nvim/site/pack/plugins/start/fidget.nvim
+ url = https://github.com/j-hui/fidget.nvim
+[submodule "malange"]
+ path = .local/share/nvim/site/pack/plugins/start/malange
+ url = https://github.com/savq/melange-nvim.git
+[submodule "mason"]
+ path = .local/share/nvim/site/pack/plugins/start/mason
+ url = https://github.com/williamboman/mason.nvim
+[submodule "mason-lspconfig"]
+ path = .local/share/nvim/site/pack/plugins/start/mason-lspconfig
+ url = https://github.com/williamboman/mason-lspconfig.nvim
+[submodule "lazydev"]
+ path = .local/share/nvim/site/pack/plugins/start/lazydev
+ url = https://github.com/folke/lazydev.nvim
diff --git a/.local/bin/dotfiles b/.local/bin/dotfiles
index ae2bf64..dafcfb3 100755
--- a/.local/bin/dotfiles
+++ b/.local/bin/dotfiles
@@ -1,3 +1,6 @@
#!/bin/sh
-exec git --git-dir="$HOME/.dotfiles/" --work-tree="$HOME" "$@"
+export GIT_DIR="$HOME/.dotfiles/"
+export GIT_WORK_TREE="$HOME"
+
+exec git "$@"
diff --git a/.local/bin/dotman b/.local/bin/dotman
deleted file mode 100755
index 21e2fb9..0000000
--- a/.local/bin/dotman
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-export GIT_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/dotman/"
-export GIT_WORK_TREE="$HOME"
-
-exec git "$@"
diff --git a/.local/share/nvim/site/pack/plugins/start/conform b/.local/share/nvim/site/pack/plugins/start/conform
new file mode 160000
+Subproject d28ccf945374edd9f1c34a82f6c22261dbd8ab9
diff --git a/.local/share/nvim/site/pack/plugins/start/dressing.nvim b/.local/share/nvim/site/pack/plugins/start/dressing.nvim
new file mode 160000
+Subproject 1b7921eecc65af1baf8ac1dc06f0794934cbcfb
diff --git a/.local/share/nvim/site/pack/plugins/start/fidget.nvim b/.local/share/nvim/site/pack/plugins/start/fidget.nvim
new file mode 160000
+Subproject e2a175c2abe2d4f65357da1c98c59a5cfb2b543
diff --git a/.local/share/nvim/site/pack/plugins/start/lazydev b/.local/share/nvim/site/pack/plugins/start/lazydev
new file mode 160000
+Subproject d5800897d9180cea800023f2429bce0a94ed606
diff --git a/.local/share/nvim/site/pack/plugins/start/malange b/.local/share/nvim/site/pack/plugins/start/malange
new file mode 160000
+Subproject 706a33f0a883fae9ec00ad648586792248a0575
diff --git a/.local/share/nvim/site/pack/plugins/start/mason b/.local/share/nvim/site/pack/plugins/start/mason
new file mode 160000
+Subproject e2f7f9044ec30067bc11800a9e266664b88cda2
diff --git a/.local/share/nvim/site/pack/plugins/start/mason-lspconfig b/.local/share/nvim/site/pack/plugins/start/mason-lspconfig
new file mode 160000
+Subproject 4d0e5b49363cac187326998b96aa6a2884e0e89
diff --git a/.local/share/nvim/site/pack/plugins/start/nvim-cmp b/.local/share/nvim/site/pack/plugins/start/nvim-cmp
new file mode 160000
+Subproject f17d9b4394027ff4442b298398dfcaab97e40c4
diff --git a/.local/share/nvim/site/pack/plugins/start/nvim-cmp-lsp b/.local/share/nvim/site/pack/plugins/start/nvim-cmp-lsp
new file mode 160000
+Subproject 39e2eda76828d88b773cc27a3f61d2ad782c922
diff --git a/.local/share/nvim/site/pack/plugins/start/nvim-lspconfig b/.local/share/nvim/site/pack/plugins/start/nvim-lspconfig
new file mode 160000
+Subproject 54617a18f4cf46f0c2f6d024fa6feb7515fe036
diff --git a/.local/share/nvim/site/pack/plugins/start/nvim-treesitter b/.local/share/nvim/site/pack/plugins/start/nvim-treesitter
new file mode 160000
+Subproject 38c12cb9ac8e1c547a8472c87df9e9d7c8b1af0
diff --git a/.zcompdump b/.zcompdump
new file mode 100644
index 0000000..b98c2da
--- /dev/null
+++ b/.zcompdump
@@ -0,0 +1,2287 @@
+#files: 1162 version: 5.9
+
+_comps=(
+'-' '_precommand'
+'.' '_source'
+'5g' '_go'
+'5l' '_go'
+'6g' '_go'
+'6l' '_go'
+'8g' '_go'
+'8l' '_go'
+'a2dismod' '_a2utils'
+'a2dissite' '_a2utils'
+'a2enmod' '_a2utils'
+'a2ensite' '_a2utils'
+'a2ps' '_a2ps'
+'aaaa' '_hosts'
+'aap' '_aap'
+'abcde' '_abcde'
+'ack' '_ack'
+'ack2' '_ack'
+'ack-grep' '_ack'
+'ack-standalone' '_ack'
+'acpi' '_acpi'
+'acpitool' '_acpitool'
+'acroread' '_acroread'
+'adb' '_adb'
+'add-zle-hook-widget' '_add-zle-hook-widget'
+'add-zsh-hook' '_add-zsh-hook'
+'admin' '_sccs'
+'afew' '_afew'
+'ali' '_mh'
+'alias' '_alias'
+'amaya' '_webbrowser'
+'analyseplugin' '_analyseplugin'
+'android' '_android'
+'animate' '_imagemagick'
+'anno' '_mh'
+'ansible' '_ansible'
+'ansible-config' '_ansible'
+'ansible-console' '_ansible'
+'ansible-doc' '_ansible'
+'ansible-galaxy' '_ansible'
+'ansible-inventory' '_ansible'
+'ansible-playbook' '_ansible'
+'ansible-pull' '_ansible'
+'ansible-vault' '_ansible'
+'ant' '_ant'
+'antiword' '_antiword'
+'aodh' '_openstack'
+'aoss' '_precommand'
+'apache2ctl' '_apachectl'
+'apachectl' '_apachectl'
+'aplay' '_alsa-utils'
+'apm' '_apm'
+'appletviewer' '_java'
+'apropos' '_man'
+'apt' '_apt'
+'apt-cache' '_apt'
+'apt-cdrom' '_apt'
+'apt-config' '_apt'
+'apt-file' '_apt-file'
+'apt-get' '_apt'
+'aptitude' '_aptitude'
+'apt-mark' '_apt'
+'apt-move' '_apt-move'
+'apt-show-versions' '_apt-show-versions'
+'apvlv' '_pdf'
+'archlinux-java' '_archlinux-java'
+'arduino-ctags' '_ctags'
+'arecord' '_alsa-utils'
+'arena' '_webbrowser'
+'_arguments' '__arguments'
+'arp' '_arp'
+'arping' '_arping'
+'-array-value-' '_value'
+'artisan' '_artisan'
+'asciidoctor' '_asciidoctor'
+'asciinema' '_asciinema'
+'ash' '_sh'
+'-assign-parameter-' '_assign'
+'at' '_at'
+'atach' '_atach'
+'atq' '_at'
+'atrm' '_at'
+'attr' '_attr'
+'augtool' '_augeas'
+'auto-apt' '_auto-apt'
+'autoload' '_typeset'
+'avahi-browse' '_avahi'
+'avahi-browse-domains' '_avahi'
+'avahi-resolve' '_avahi'
+'avahi-resolve-address' '_avahi'
+'avahi-resolve-host-name' '_avahi'
+'awk' '_awk'
+'axi-cache' '_axi-cache'
+'b2sum' '_md5sum'
+'barbican' '_openstack'
+'base32' '_base64'
+'base64' '_base64'
+'basename' '_basename'
+'basenc' '_basenc'
+'bash' '_bash'
+'batch' '_at'
+'baz' '_baz'
+'beadm' '_beadm'
+'beep' '_beep'
+'bg' '_jobs_bg'
+'bibtex' '_bibtex'
+'bindkey' '_bindkey'
+'bison' '_bison'
+'bitcoin-cli' '_bitcoin-cli'
+'bluetoothctl' '_bluetoothctl'
+'bmake' '_make'
+'bogofilter' '_bogofilter'
+'bogotune' '_bogofilter'
+'bogoutil' '_bogofilter'
+'bootctl' '_bootctl'
+'bower' '_bower'
+'bpython' '_bpython'
+'bpython2' '_bpython'
+'bpython2-gtk' '_bpython'
+'bpython2-urwid' '_bpython'
+'bpython3' '_bpython'
+'bpython3-gtk' '_bpython'
+'bpython3-urwid' '_bpython'
+'bpython-gtk' '_bpython'
+'bpython-urwid' '_bpython'
+'-brace-parameter-' '_brace_parameter'
+'brctl' '_brctl'
+'bsdconfig' '_bsdconfig'
+'bsdgrep' '_grep'
+'bsdinstall' '_bsdinstall'
+'bsdtar' '_tar'
+'btdownloadcurses' '_bittorrent'
+'btdownloadgui' '_bittorrent'
+'btdownloadheadless' '_bittorrent'
+'btlaunchmany' '_bittorrent'
+'btlaunchmanycurses' '_bittorrent'
+'btmakemetafile' '_bittorrent'
+'btreannounce' '_bittorrent'
+'btrename' '_bittorrent'
+'btrfs' '_btrfs'
+'bts' '_bts'
+'btshowmetainfo' '_bittorrent'
+'bttrack' '_bittorrent'
+'bug' '_bug'
+'buildhash' '_ispell'
+'builtin' '_builtin'
+'bundle' '_bundle'
+'bunzip2' '_bzip2'
+'burst' '_mh'
+'busctl' '_busctl'
+'bwrap' '_bwrap'
+'bzcat' '_bzip2'
+'bzegrep' '_grep'
+'bzfgrep' '_grep'
+'bzgrep' '_grep'
+'bzip2' '_bzip2'
+'bzip2recover' '_bzip2'
+'bzr' '_bzr'
+'c++' '_gcc'
+'cabal' '_cabal'
+'caffeinate' '_caffeinate'
+'cal' '_cal'
+'calendar' '_calendar'
+'cap' '_cap'
+'cargo' '_cargo'
+'cask' '_cask'
+'cat' '_cat'
+'catchsegv' '_precommand'
+'cc' '_gcc'
+'ccache' '_ccache'
+'ccal' '_ccal'
+'cd' '_cd'
+'cdbs-edit-patch' '_cdbs-edit-patch'
+'cdc' '_sccs'
+'cdcd' '_cdcd'
+'cdr' '_cdr'
+'cdrdao' '_cdrdao'
+'cdrecord' '_cdrecord'
+'ceilometer' '_openstack'
+'certtool' '_gnutls'
+'cf' '_cf'
+'cftp' '_twisted'
+'chage' '_users'
+'chattr' '_chattr'
+'chcon' '_chcon'
+'chdir' '_cd'
+'chflags' '_chflags'
+'chfn' '_users'
+'chgrp' '_chown'
+'chimera' '_webbrowser'
+'chkconfig' '_chkconfig'
+'chkstow' '_stow'
+'chmod' '_chmod'
+'choc' '_choc'
+'choom' '_choom'
+'chown' '_chown'
+'chpass' '_chsh'
+'chromium' '_chromium'
+'chroot' '_chroot'
+'chrt' '_chrt'
+'chsh' '_chsh'
+'ci' '_rcs'
+'cifsiostat' '_sysstat'
+'cinder' '_openstack'
+'ckeygen' '_twisted'
+'cksum' '_cksum'
+'clang' '_gcc'
+'clang++' '_gcc'
+'clay' '_clay'
+'clear' '_nothing'
+'cloudkitty' '_openstack'
+'clusterdb' '_postgresql'
+'cmake' '_cmake'
+'cmp' '_cmp'
+'co' '_rcs'
+'code' '_code'
+'coffee' '_coffee'
+'column' '_column'
+'comb' '_sccs'
+'combine' '_imagemagick'
+'combinediff' '_patchutils'
+'comm' '_comm'
+'-command-' '_autocd'
+'command' '_command'
+'-command-line-' '_normal'
+'comp' '_mh'
+'compadd' '_compadd'
+'compdef' '_compdef'
+'composer' '_composer'
+'composite' '_imagemagick'
+'compress' '_compress'
+'conan' '_conan'
+'conch' '_twisted'
+'concourse' '_concourse'
+'-condition-' '_condition'
+'config.status' '_configure'
+'configure' '_configure'
+'console' '_console'
+'convert' '_imagemagick'
+'coreadm' '_coreadm'
+'coredumpctl' '_coredumpctl'
+'cowsay' '_cowsay'
+'cowthink' '_cowsay'
+'cp' '_cp'
+'cpio' '_cpio'
+'cplay' '_cplay'
+'cppcheck' '_cppcheck'
+'cpupower' '_cpupower'
+'createdb' '_pgsql_utils'
+'createuser' '_pgsql_utils'
+'crontab' '_crontab'
+'crsh' '_cssh'
+'cryptsetup' '_cryptsetup'
+'cscope' '_cscope'
+'csh' '_sh'
+'csplit' '_csplit'
+'cssh' '_cssh'
+'csup' '_csup'
+'ctags' '_ctags'
+'ctags-exuberant' '_ctags'
+'ctags-universal' '_ctags'
+'cu' '_cu'
+'curl' '_curl'
+'cut' '_cut'
+'cvs' '_cvs'
+'cvsup' '_cvsup'
+'cygcheck' '_cygcheck'
+'cygcheck.exe' '_cygcheck'
+'cygpath' '_cygpath'
+'cygpath.exe' '_cygpath'
+'cygrunsrv' '_cygrunsrv'
+'cygrunsrv.exe' '_cygrunsrv'
+'cygserver' '_cygserver'
+'cygserver.exe' '_cygserver'
+'cygstart' '_cygstart'
+'cygstart.exe' '_cygstart'
+'dad' '_dad'
+'dak' '_dak'
+'darcs' '_darcs'
+'dash' '_sh'
+'date' '_date'
+'dbus-launch' '_dbus'
+'dbus-monitor' '_dbus'
+'dbus-send' '_dbus'
+'dch' '_debchange'
+'dchroot' '_dchroot'
+'dchroot-dsa' '_dchroot-dsa'
+'dconf' '_dconf'
+'dcop' '_dcop'
+'dcopclient' '_dcop'
+'dcopfind' '_dcop'
+'dcopobject' '_dcop'
+'dcopref' '_dcop'
+'dcopstart' '_dcop'
+'dcut' '_dcut'
+'dd' '_dd'
+'debchange' '_debchange'
+'debcheckout' '_debcheckout'
+'debdiff' '_debdiff'
+'debfoster' '_debfoster'
+'deborphan' '_deborphan'
+'debsign' '_debsign'
+'debsnap' '_debsnap'
+'debuild' '_debuild'
+'declare' '_typeset'
+'-default-' '_default'
+'defaults' '_defaults'
+'delta' '_sccs'
+'designate' '_openstack'
+'devtodo' '_devtodo'
+'df' '_df'
+'dget' '_dget'
+'dhclient' '_dhclient'
+'dhclient3' '_dhclient'
+'dhcpcd' '_dhcpcd'
+'dhcpinfo' '_dhcpinfo'
+'diana' '_diana'
+'dict' '_dict'
+'diff' '_diff'
+'diff3' '_diff3'
+'diffstat' '_diffstat'
+'dig' '_dig'
+'dillo' '_webbrowser'
+'dircmp' '_directories'
+'dirs' '_dirs'
+'disable' '_disable'
+'disown' '_jobs_fg'
+'display' '_imagemagick'
+'dist' '_mh'
+'django-admin' '_django'
+'django-admin.py' '_django'
+'dkms' '_dkms'
+'dladm' '_dladm'
+'dlocate' '_dlocate'
+'dmake' '_make'
+'dmesg' '_dmesg'
+'dmidecode' '_dmidecode'
+'dnf' '_dnf'
+'dnf-2' '_dnf'
+'dnf-3' '_dnf'
+'doas' '_doas'
+'docpad' '_docpad'
+'domainname' '_yp'
+'dos2unix' '_dos2unix'
+'dosdel' '_floppy'
+'dosread' '_floppy'
+'dpatch-edit-patch' '_dpatch-edit-patch'
+'dpkg' '_dpkg'
+'dpkg-buildpackage' '_dpkg-buildpackage'
+'dpkg-cross' '_dpkg-cross'
+'dpkg-deb' '_dpkg'
+'dpkg-query' '_dpkg'
+'dpkg-reconfigure' '_dpkg'
+'dpkg-repack' '_dpkg-repack'
+'dpkg-source' '_dpkg_source'
+'dput' '_dput'
+'drill' '_drill'
+'dropbox' '_dropbox'
+'dropdb' '_pgsql_utils'
+'dropuser' '_pgsql_utils'
+'drush' '_drush'
+'dscverify' '_dscverify'
+'dsh' '_dsh'
+'dtrace' '_dtrace'
+'dtruss' '_dtruss'
+'du' '_du'
+'dumpadm' '_dumpadm'
+'dumper' '_dumper'
+'dumper.exe' '_dumper'
+'dupload' '_dupload'
+'dvibook' '_dvi'
+'dviconcat' '_dvi'
+'dvicopy' '_dvi'
+'dvidvi' '_dvi'
+'dvipdf' '_dvi'
+'dvips' '_dvi'
+'dviselect' '_dvi'
+'dvitodvi' '_dvi'
+'dvitype' '_dvi'
+'dwb' '_webbrowser'
+'e2label' '_e2label'
+'eatmydata' '_precommand'
+'ecasound' '_ecasound'
+'ecdsautil' '_ecdsautil'
+'echotc' '_echotc'
+'echoti' '_echoti'
+'ed' '_ed'
+'egrep' '_grep'
+'elfdump' '_elfdump'
+'elinks' '_elinks'
+'emulate' '_emulate'
+'emulator' '_emulator'
+'enable' '_enable'
+'enscript' '_enscript'
+'entr' '_entr'
+'env' '_env'
+'envdir' '_envdir'
+'eog' '_eog'
+'epdfview' '_pdf'
+'epsffit' '_psutils'
+'-equal-' '_equal'
+'erb' '_ruby'
+'espeak' '_espeak'
+'etags' '_etags'
+'ethtool' '_ethtool'
+'eu-nm' '_nm'
+'eu-objdump' '_objdump'
+'eu-readelf' '_readelf'
+'eu-strings' '_strings'
+'eval' '_precommand'
+'eview' '_vim'
+'evim' '_vim'
+'evince' '_evince'
+'ex' '_vi'
+'exec' '_exec'
+'expand' '_unexpand'
+'explodepkg' '_pkgtool'
+'export' '_typeset'
+'exportfs' '_exportfs'
+'express' '_webbrowser'
+'extcheck' '_java'
+'extractres' '_psutils'
+'fab' '_fab'
+'fail2ban-client' '_fail2ban-client'
+'fakeroot' '_fakeroot'
+'false' '_nothing'
+'fc' '_fc'
+'fc-list' '_xft_fonts'
+'fc-match' '_xft_fonts'
+'feh' '_feh'
+'fetch' '_fetch'
+'fetchmail' '_fetchmail'
+'ffind' '_ffind'
+'ffmpeg' '_ffmpeg'
+'fg' '_jobs_fg'
+'fgrep' '_grep'
+'figlet' '_figlet'
+'filterdiff' '_patchutils'
+'find' '_find'
+'findaffix' '_ispell'
+'findmnt' '_findmnt'
+'finger' '_finger'
+'fink' '_fink'
+'firefox' '_mozilla'
+'firewall-cmd' '_firewalld'
+'firewall-offline-cmd' '_firewalld'
+'-first-' '_first'
+'fixdlsrps' '_psutils'
+'fixfmps' '_psutils'
+'fixmacps' '_psutils'
+'fixpsditps' '_psutils'
+'fixpspps' '_psutils'
+'fixscribeps' '_psutils'
+'fixtpps' '_psutils'
+'fixwfwps' '_psutils'
+'fixwpps' '_psutils'
+'fixwwps' '_psutils'
+'flac' '_flac'
+'flatpak' '_flatpak'
+'fleetctl' '_fleetctl'
+'flex' '_flex'
+'flex++' '_flex'
+'flipdiff' '_patchutils'
+'flist' '_mh'
+'flists' '_mh'
+'float' '_typeset'
+'flowadm' '_flowadm'
+'flutter' '_flutter'
+'fly' '_concourse'
+'fmadm' '_fmadm'
+'fmt' '_fmt'
+'fmttest' '_mh'
+'fned' '_zed'
+'fnext' '_mh'
+'fold' '_fold'
+'folder' '_mh'
+'folders' '_mh'
+'force' '_force'
+'fortune' '_fortune'
+'forw' '_mh'
+'fprev' '_mh'
+'free' '_free'
+'freebsd-make' '_make'
+'freebsd-update' '_freebsd-update'
+'freezer' '_openstack'
+'fsh' '_fsh'
+'fstat' '_fstat'
+'fs_usage' '_fs_usage'
+'ftp' '_hosts'
+'functions' '_typeset'
+'fuser' '_fuser'
+'fusermount' '_fusermount'
+'fwhois' '_whois'
+'fw_update' '_fw_update'
+'fwupdmgr' '_fwupdmgr'
+'g++' '_gcc'
+'galeon' '_webbrowser'
+'gas' '_gas'
+'gawk' '_awk'
+'gb2sum' '_md5sum'
+'gbase32' '_base64'
+'gbase64' '_base64'
+'gbasename' '_basename'
+'gcat' '_cat'
+'gcc' '_gcc'
+'gccgo' '_go'
+'gchgrp' '_chown'
+'gchmod' '_chmod'
+'gchown' '_chown'
+'gchroot' '_chroot'
+'gcksum' '_cksum'
+'gcmp' '_cmp'
+'gcomm' '_comm'
+'gcore' '_gcore'
+'gcp' '_cp'
+'gcut' '_cut'
+'gdate' '_date'
+'gdb' '_gdb'
+'gdd' '_dd'
+'gdf' '_df'
+'gdiff' '_diff'
+'gdu' '_du'
+'geany' '_geany'
+'gegrep' '_grep'
+'gem' '_gem'
+'genisoimage' '_genisoimage'
+'genv' '_env'
+'get' '_sccs'
+'getafm' '_psutils'
+'getclip' '_getclip'
+'getclip.exe' '_getclip'
+'getconf' '_getconf'
+'getent' '_getent'
+'getfacl' '_getfacl'
+'getfacl.exe' '_getfacl'
+'getfattr' '_attr'
+'getmail' '_getmail'
+'getopt' '_getopt'
+'getopts' '_vars'
+'gex' '_vim'
+'gexpand' '_unexpand'
+'gfgrep' '_grep'
+'gfind' '_find'
+'gfmt' '_fmt'
+'gfold' '_fold'
+'ggetopt' '_getopt'
+'ggrep' '_grep'
+'ggv' '_gnome-gv'
+'gh' '_gh'
+'ghc' '_ghc'
+'ghci' '_ghc'
+'ghc-pkg' '_ghc'
+'ghead' '_head'
+'ghostscript' '_ghostscript'
+'ghostview' '_pspdf'
+'gid' '_id'
+'ginstall' '_install'
+'gist' '_gist'
+'git' '_git'
+'git-buildpackage' '_git-buildpackage'
+'git-cvsserver' '_git'
+'git-flow' '_git-flow'
+'git-journal' '_git-journal'
+'gitk' '_git'
+'git-pulls' '_git-pulls'
+'git-receive-pack' '_git'
+'git-revise' '_git-revise'
+'git-shell' '_git'
+'git-upload-archive' '_git'
+'git-upload-pack' '_git'
+'git-wtf' '_git-wtf'
+'gjoin' '_join'
+'glance' '_openstack'
+'glances' '_glances'
+'gln' '_ln'
+'global' '_global'
+'glocate' '_locate'
+'gls' '_ls'
+'gm' '_graphicsmagick'
+'gmake' '_make'
+'gmd5sum' '_md5sum'
+'gmkdir' '_mkdir'
+'gmkfifo' '_mkfifo'
+'gmknod' '_mknod'
+'gmktemp' '_mktemp'
+'gmplayer' '_mplayer'
+'gmv' '_mv'
+'gnl' '_nl'
+'gnocchi' '_openstack'
+'gnome-gv' '_gnome-gv'
+'gnumfmt' '_numfmt'
+'gnupod_addsong' '_gnupod'
+'gnupod_addsong.pl' '_gnupod'
+'gnupod_check' '_gnupod'
+'gnupod_check.pl' '_gnupod'
+'gnupod_INIT' '_gnupod'
+'gnupod_INIT.pl' '_gnupod'
+'gnupod_search' '_gnupod'
+'gnupod_search.pl' '_gnupod'
+'gnutls-cli' '_gnutls'
+'gnutls-cli-debug' '_gnutls'
+'gnutls-serv' '_gnutls'
+'go' '_golang'
+'god' '_od'
+'gofmt' '_go'
+'google' '_google'
+'gpasswd' '_gpasswd'
+'gpaste' '_paste'
+'gpatch' '_patch'
+'gpg' '_gpg'
+'gpg2' '_gpg'
+'gpgconf' '_gpgconf'
+'gpgv' '_gpg'
+'gpg-zip' '_gpg'
+'gphoto2' '_gphoto2'
+'gprintenv' '_printenv'
+'gprof' '_gprof'
+'gqview' '_gqview'
+'gradle' '_gradle'
+'gradlew' '_gradle'
+'grail' '_webbrowser'
+'greadlink' '_readlink'
+'grep' '_grep'
+'grepdiff' '_patchutils'
+'grep-excuses' '_grep-excuses'
+'grm' '_rm'
+'grmdir' '_rmdir'
+'groff' '_groff'
+'groupadd' '_user_admin'
+'groupdel' '_groups'
+'groupmod' '_user_admin'
+'groups' '_users'
+'growisofs' '_growisofs'
+'gs' '_ghostscript'
+'gsbj' '_pspdf'
+'gsdj' '_pspdf'
+'gsdj500' '_pspdf'
+'gsed' '_sed'
+'gseq' '_seq'
+'gsettings' '_gsettings'
+'gsha1sum' '_md5sum'
+'gsha224sum' '_md5sum'
+'gsha256sum' '_md5sum'
+'gsha384sum' '_md5sum'
+'gsha512sum' '_md5sum'
+'gshred' '_shred'
+'gshuf' '_shuf'
+'gslj' '_pspdf'
+'gslp' '_pspdf'
+'gsnd' '_pspdf'
+'gsort' '_sort'
+'gsplit' '_split'
+'gstat' '_gstat'
+'gstdbuf' '_stdbuf'
+'gstrings' '_strings'
+'gstty' '_stty'
+'gsum' '_cksum'
+'gtac' '_tac'
+'gtail' '_tail'
+'gtar' '_tar'
+'gtee' '_tee'
+'gtimeout' '_timeout'
+'gtk-launch' '_gtk-launch'
+'gtouch' '_touch'
+'gtr' '_tr'
+'gtty' '_tty'
+'guilt' '_guilt'
+'guilt-add' '_guilt'
+'guilt-applied' '_guilt'
+'guilt-delete' '_guilt'
+'guilt-files' '_guilt'
+'guilt-fold' '_guilt'
+'guilt-fork' '_guilt'
+'guilt-header' '_guilt'
+'guilt-help' '_guilt'
+'guilt-import' '_guilt'
+'guilt-import-commit' '_guilt'
+'guilt-init' '_guilt'
+'guilt-new' '_guilt'
+'guilt-next' '_guilt'
+'guilt-patchbomb' '_guilt'
+'guilt-pop' '_guilt'
+'guilt-prev' '_guilt'
+'guilt-push' '_guilt'
+'guilt-rebase' '_guilt'
+'guilt-refresh' '_guilt'
+'guilt-rm' '_guilt'
+'guilt-series' '_guilt'
+'guilt-status' '_guilt'
+'guilt-top' '_guilt'
+'guilt-unapplied' '_guilt'
+'guname' '_uname'
+'gunexpand' '_unexpand'
+'guniq' '_uniq'
+'gunzip' '_gzip'
+'guptime' '_uptime'
+'gv' '_gv'
+'gview' '_vim'
+'gvim' '_vim'
+'gvimdiff' '_vim'
+'gwc' '_wc'
+'gwho' '_who'
+'gxargs' '_xargs'
+'gzcat' '_gzip'
+'gzegrep' '_grep'
+'gzfgrep' '_grep'
+'gzgrep' '_grep'
+'gzilla' '_webbrowser'
+'gzip' '_gzip'
+'hash' '_hash'
+'hd' '_hexdump'
+'hdiutil' '_hdiutil'
+'head' '_head'
+'heat' '_openstack'
+'hello' '_hello'
+'help' '_sccs'
+'hexdump' '_hexdump'
+'hilite' '_precommand'
+'histed' '_zed'
+'history' '_fc'
+'hledger' '_hledger'
+'homestead' '_homestead'
+'host' '_host'
+'hostname' '_hostname'
+'hostnamectl' '_hostnamectl'
+'hotjava' '_webbrowser'
+'htop' '_htop'
+'http' '_httpie'
+'hwinfo' '_hwinfo'
+'ibus' '_ibus'
+'iceweasel' '_mozilla'
+'icombine' '_ispell'
+'iconv' '_iconv'
+'iconvconfig' '_iconvconfig'
+'id' '_id'
+'identify' '_imagemagick'
+'ifconfig' '_ifconfig'
+'ifdown' '_net_interfaces'
+'iftop' '_iftop'
+'ifup' '_net_interfaces'
+'ijoin' '_ispell'
+'import' '_imagemagick'
+'inc' '_mh'
+'includeres' '_psutils'
+'include-what-you-use' '_include-what-you-use'
+'inetadm' '_inetadm'
+'info' '_texinfo'
+'infocmp' '_terminals'
+'initctl' '_initctl'
+'initdb' '_pgsql_utils'
+'insmod' '_modutils'
+'install' '_install'
+'install-info' '_texinfo'
+'installpkg' '_pkgtool'
+'integer' '_typeset'
+'interdiff' '_patchutils'
+'invoke-rc.d' '_invoke-rc.d'
+'inxi' '_inxi'
+'ionice' '_ionice'
+'iostat' '_iostat'
+'ip' '_ip'
+'ip6tables' '_iptables'
+'ip6tables-restore' '_iptables'
+'ip6tables-save' '_iptables'
+'ipadm' '_ipadm'
+'ipfw' '_ipfw'
+'ipkg' '_opkg'
+'ipsec' '_ipsec'
+'ipset' '_ipset'
+'iptables' '_iptables'
+'iptables-restore' '_iptables'
+'iptables-save' '_iptables'
+'irb' '_ruby'
+'ironic' '_openstack'
+'irssi' '_irssi'
+'isag' '_sysstat'
+'ispell' '_ispell'
+'iwconfig' '_iwconfig'
+'jadetex' '_tex'
+'jail' '_jail'
+'jar' '_java'
+'jarsigner' '_java'
+'java' '_java'
+'javac' '_java'
+'javadoc' '_java'
+'javah' '_java'
+'javap' '_java'
+'jdb' '_java'
+'jexec' '_jexec'
+'jls' '_jls'
+'jmeter' '_jmeter'
+'jmeter-plugins' '_jmeter-plugins'
+'jobs' '_jobs_builtin'
+'joe' '_joe'
+'join' '_join'
+'jonas' '_jonas'
+'jot' '_jot'
+'journalctl' '_journalctl'
+'jq' '_jq'
+'jrnl' '_jrnl'
+'kak' '_kak'
+'kdeconnect-cli' '_kdeconnect'
+'kdump' '_kdump'
+'kernel-install' '_kernel-install'
+'keystone' '_openstack'
+'keytool' '_java'
+'kfmclient' '_kfmclient'
+'kill' '_kill'
+'killall' '_killall'
+'killall5' '_killall'
+'kioclient' '_kfmclient'
+'kitchen' '_kitchen'
+'kldload' '_kld'
+'kldunload' '_kld'
+'knife' '_knife'
+'knock' '_knock'
+'konqueror' '_webbrowser'
+'kpartx' '_kpartx'
+'kpdf' '_pdf'
+'ksh' '_sh'
+'ksh88' '_sh'
+'ksh93' '_sh'
+'ktrace' '_ktrace'
+'kvno' '_kvno'
+'last' '_last'
+'lastb' '_last'
+'latex' '_tex'
+'latexmk' '_tex'
+'ldap' '_ldap'
+'ldconfig' '_ldconfig'
+'ldconfig.real' '_ldconfig'
+'ldd' '_ldd'
+'less' '_less'
+'let' '_math'
+'lftp' '_ncftp'
+'lha' '_lha'
+'libinput' '_libinput'
+'light' '_webbrowser'
+'lighty-disable-mod' '_lighttpd'
+'lighty-enable-mod' '_lighttpd'
+'lilypond' '_lilypond'
+'limit' '_limit'
+'links' '_links'
+'links2' '_links'
+'lintian' '_lintian'
+'lintian-info' '_lintian'
+'linux' '_uml'
+'lldb' '_lldb'
+'llvm-g++' '_gcc'
+'llvm-gcc' '_gcc'
+'llvm-objdump' '_objdump'
+'llvm-otool' '_otool'
+'ln' '_ln'
+'loadkeys' '_loadkeys'
+'local' '_typeset'
+'locale' '_locale'
+'localectl' '_localectl'
+'localedef' '_localedef'
+'locate' '_locate'
+'log' '_nothing'
+'logger' '_logger'
+'loginctl' '_loginctl'
+'logname' '_nothing'
+'look' '_look'
+'losetup' '_losetup'
+'lp' '_lp'
+'lpadmin' '_lp'
+'lpinfo' '_lp'
+'lpoptions' '_lp'
+'lpq' '_lp'
+'lpr' '_lp'
+'lprm' '_lp'
+'lpstat' '_lp'
+'ls' '_ls'
+'lsattr' '_lsattr'
+'lsblk' '_lsblk'
+'lscfg' '_lscfg'
+'lsdev' '_lsdev'
+'lsdiff' '_patchutils'
+'lslv' '_lslv'
+'lsmod' '_modutils'
+'lsns' '_lsns'
+'lsof' '_lsof'
+'lspv' '_lspv'
+'lsusb' '_lsusb'
+'lsvg' '_lsvg'
+'ltrace' '_ltrace'
+'lua' '_lua'
+'luarocks' '_luarocks'
+'lunchy' '_lunchy'
+'lynx' '_lynx'
+'lz4' '_lz4'
+'lz4c' '_lz4'
+'lz4c32' '_lz4'
+'lz4cat' '_lz4'
+'lzcat' '_xz'
+'lzma' '_xz'
+'lzop' '_lzop'
+'m-a' '_module-assistant'
+'mac2unix' '_dos2unix'
+'machinectl' '_machinectl'
+'madison' '_madison'
+'magnum' '_openstack'
+'mail' '_mail'
+'Mail' '_mail'
+'mailx' '_mail'
+'make' '_make'
+'makeinfo' '_texinfo'
+'make-kpkg' '_make-kpkg'
+'makepkg' '_pkgtool'
+'man' '_man'
+'manage.py' '_django'
+'manila' '_openstack'
+'mark' '_mh'
+'mat' '_mat'
+'mat2' '_mat2'
+'-math-' '_math'
+'matlab' '_matlab'
+'mattrib' '_mtools'
+'mc' '_mc'
+'mcd' '_mtools'
+'mcopy' '_mtools'
+'md2' '_cksum'
+'md4' '_cksum'
+'md5' '_cksum'
+'md5sum' '_md5sum'
+'mdadm' '_mdadm'
+'mdel' '_mtools'
+'mdeltree' '_mtools'
+'mdfind' '_mdfind'
+'mdir' '_mtools'
+'mdls' '_mdls'
+'mdu' '_mtools'
+'mdutil' '_mdutil'
+'members' '_members'
+'mencal' '_mencal'
+'mere' '_mere'
+'merge' '_rcs'
+'mergechanges' '_mergechanges'
+'meson' '_meson'
+'metaflac' '_flac'
+'mformat' '_mtools'
+'mgv' '_pspdf'
+'mhfixmsg' '_mh'
+'mhlist' '_mh'
+'mhmail' '_mh'
+'mhn' '_mh'
+'mhparam' '_mh'
+'mhpath' '_mh'
+'mhshow' '_mh'
+'mhstore' '_mh'
+'middleman' '_middleman'
+'mii-tool' '_mii-tool'
+'mina' '_mina'
+'mistral' '_openstack'
+'mix' '_mix'
+'mixerctl' '_mixerctl'
+'mkdir' '_mkdir'
+'mkfifo' '_mkfifo'
+'mkisofs' '_growisofs'
+'mknod' '_mknod'
+'mksh' '_sh'
+'mkshortcut' '_mkshortcut'
+'mkshortcut.exe' '_mkshortcut'
+'mktemp' '_mktemp'
+'mktunes' '_gnupod'
+'mktunes.pl' '_gnupod'
+'mkzsh' '_mkzsh'
+'mkzsh.exe' '_mkzsh'
+'mlabel' '_mtools'
+'mlocate' '_locate'
+'mmd' '_mtools'
+'mmm' '_webbrowser'
+'mmount' '_mtools'
+'mmove' '_mtools'
+'modinfo' '_modutils'
+'modprobe' '_modutils'
+'module' '_module'
+'module-assistant' '_module-assistant'
+'mogrify' '_imagemagick'
+'monasca' '_openstack'
+'mondoarchive' '_mondo'
+'montage' '_imagemagick'
+'moosic' '_moosic'
+'Mosaic' '_webbrowser'
+'mosh' '_mosh'
+'mount' '_mount'
+'mozilla' '_mozilla'
+'mozilla-firefox' '_mozilla'
+'mozilla-xremote-client' '_mozilla'
+'mpc' '_mpc'
+'mplayer' '_mplayer'
+'mpstat' '_sysstat'
+'mr' '_myrepos'
+'mrd' '_mtools'
+'mread' '_mtools'
+'mren' '_mtools'
+'msgchk' '_mh'
+'mssh' '_mssh'
+'mt' '_mt'
+'mtn' '_monotone'
+'mtoolstest' '_mtools'
+'mtr' '_mtr'
+'mtype' '_mtools'
+'munchlist' '_ispell'
+'mupdf' '_mupdf'
+'murano' '_openstack'
+'mush' '_mail'
+'mussh' '_mussh'
+'mutt' '_mutt'
+'mux' '_tmuxinator'
+'mv' '_mv'
+'mvim' '_vim'
+'mvn' '_mvn'
+'mvnDebug' '_mvn'
+'mx' '_hosts'
+'mysql' '_mysql_utils'
+'mysqladmin' '_mysql_utils'
+'mysqldiff' '_mysqldiff'
+'mysqldump' '_mysql_utils'
+'mysqlimport' '_mysql_utils'
+'mysqlshow' '_mysql_utils'
+'nail' '_mail'
+'nano' '_nano'
+'nanoc' '_nanoc'
+'native2ascii' '_java'
+'nautilus' '_nautilus'
+'nawk' '_awk'
+'nc' '_netcat'
+'ncal' '_cal'
+'ncftp' '_ncftp'
+'ncl' '_nedit'
+'nedit' '_nedit'
+'nedit-nc' '_nedit'
+'netcat' '_netcat'
+'netrik' '_webbrowser'
+'netscape' '_netscape'
+'netstat' '_netstat'
+'networkctl' '_networkctl'
+'networksetup' '_networksetup'
+'neutron' '_openstack'
+'new' '_mh'
+'newgrp' '_groups'
+'next' '_mh'
+'nft' '_nftables'
+'nginx' '_nginx'
+'ngrep' '_ngrep'
+'nice' '_nice'
+'ninja' '_ninja'
+'nkf' '_nkf'
+'nl' '_nl'
+'nm' '_nm'
+'nmap' '_nmap'
+'nmblookup' '_samba'
+'nmcli' '_networkmanager'
+'nocorrect' '_precommand'
+'node' '_node'
+'noglob' '_precommand'
+'nohup' '_precommand'
+'nova' '_openstack'
+'npm' '_npm'
+'ns' '_hosts'
+'nsenter' '_nsenter'
+'nslookup' '_nslookup'
+'ntalk' '_other_accounts'
+'numfmt' '_numfmt'
+'nvim' '_vim'
+'nvm' '_nvm'
+'_nvme' '_nvme'
+'nvme' '_nvme'
+'nvram' '_nvram'
+'objdump' '_objdump'
+'od' '_od'
+'odme' '_object_classes'
+'odmget' '_object_classes'
+'odmshow' '_object_classes'
+'ogg123' '_vorbis'
+'oggdec' '_vorbis'
+'oggenc' '_vorbis'
+'ogginfo' '_vorbis'
+'oksh' '_sh'
+'okular' '_okular'
+'oomctl' '_oomctl'
+'open' '_open'
+'openssl' '_openssl'
+'openstack' '_openstack'
+'openvpn3' '_openvpn3'
+'opera' '_webbrowser'
+'opera-next' '_webbrowser'
+'opkg' '_opkg'
+'optirun' '_optirun'
+'opusdec' '_opustools'
+'opusenc' '_opustools'
+'opusinfo' '_opustools'
+'osascript' '_osascript'
+'osc' '_osc'
+'otool' '_otool'
+'p4' '_perforce'
+'p4d' '_perforce'
+'pack' '_pack'
+'packf' '_mh'
+'pandoc' '_pandoc'
+'-parameter-' '_parameter'
+'parsehdlist' '_urpmi'
+'passwd' '_users'
+'paste' '_paste'
+'patch' '_patch'
+'patool' '_patool'
+'pax' '_pax'
+'pbcopy' '_pbcopy'
+'pbpaste' '_pbcopy'
+'pbuilder' '_pbuilder'
+'pcat' '_pack'
+'pcp-htop' '_htop'
+'pcred' '_pids'
+'pdf2dsc' '_pdf'
+'pdf2ps' '_pdf'
+'pdffonts' '_pdf'
+'pdfimages' '_pdf'
+'pdfinfo' '_pdf'
+'pdfjadetex' '_tex'
+'pdflatex' '_tex'
+'pdfopt' '_pdf'
+'pdftex' '_tex'
+'pdftexi2dvi' '_texinfo'
+'pdftk' '_pdftk'
+'pdftopbm' '_pdf'
+'pdftops' '_pdf'
+'pdftotext' '_pdf'
+'pdksh' '_sh'
+'perf' '_perf'
+'periscope' '_periscope'
+'perl' '_perl'
+'perldoc' '_perldoc'
+'pfctl' '_pfctl'
+'pfexec' '_pfexec'
+'pfiles' '_pids'
+'pflags' '_pids'
+'pg_config' '_postgresql'
+'pg_ctl' '_postgresql'
+'pg_dump' '_pgsql_utils'
+'pg_dumpall' '_pgsql_utils'
+'pg_isready' '_postgresql'
+'pgrep' '_pgrep'
+'pg_restore' '_pgsql_utils'
+'pg_upgrade' '_postgresql'
+'phing' '_phing'
+'php' '_php'
+'pick' '_mh'
+'picocom' '_picocom'
+'pidof' '_pidof'
+'pidstat' '_sysstat'
+'pigz' '_gzip'
+'pine' '_pine'
+'pinef' '_pine'
+'pinfo' '_texinfo'
+'ping' '_ping'
+'ping6' '_ping'
+'piuparts' '_piuparts'
+'pixz' '_pixz'
+'pkcon' '_pkcon'
+'pkg' '_pkg5'
+'pkg_add' '_bsd_pkg'
+'pkgadd' '_pkgadd'
+'pkg-config' '_pkg-config'
+'pkg_create' '_bsd_pkg'
+'pkg_delete' '_bsd_pkg'
+'pkgin' '_pkgin'
+'pkg_info' '_bsd_pkg'
+'pkginfo' '_pkginfo'
+'pkgrm' '_pkgrm'
+'pkgtool' '_pkgtool'
+'pkill' '_pgrep'
+'play' '_play'
+'pldd' '_pids'
+'plutil' '_plutil'
+'pm2' '_pm2'
+'pmake' '_make'
+'pman' '_perl_modules'
+'pmap' '_pmap'
+'pmcat' '_perl_modules'
+'pmdesc' '_perl_modules'
+'pmeth' '_perl_modules'
+'pmexp' '_perl_modules'
+'pmfunc' '_perl_modules'
+'pmload' '_perl_modules'
+'pmls' '_perl_modules'
+'pmpath' '_perl_modules'
+'pmvers' '_perl_modules'
+'podgrep' '_perl_modules'
+'podman' '_podman'
+'podpath' '_perl_modules'
+'podtoc' '_perl_modules'
+'poff' '_pon'
+'policytool' '_java'
+'pon' '_pon'
+'popd' '_directory_stack'
+'port' '_port'
+'portaudit' '_portaudit'
+'portlint' '_portlint'
+'portmaster' '_portmaster'
+'portsnap' '_portsnap'
+'postconf' '_postfix'
+'postgres' '_postgresql'
+'postmaster' '_postgresql'
+'postqueue' '_postfix'
+'postsuper' '_postfix'
+'powerd' '_powerd'
+'pr' '_pr'
+'prev' '_mh'
+'print' '_print'
+'printenv' '_printenv'
+'printf' '_print'
+'procstat' '_procstat'
+'prompt' '_prompt'
+'protoc' '_protoc'
+'prove' '_prove'
+'prs' '_sccs'
+'prstat' '_prstat'
+'prt' '_sccs'
+'prun' '_pids'
+'ps' '_ps'
+'ps2ascii' '_pspdf'
+'ps2epsi' '_postscript'
+'ps2pdf' '_postscript'
+'ps2pdf12' '_postscript'
+'ps2pdf13' '_postscript'
+'ps2pdf14' '_postscript'
+'ps2pdfwr' '_postscript'
+'ps2ps' '_postscript'
+'psbook' '_psutils'
+'pscp' '_pscp'
+'pscp.exe' '_pscp'
+'psed' '_sed'
+'psig' '_pids'
+'psmerge' '_psutils'
+'psmulti' '_postscript'
+'psnup' '_psutils'
+'psql' '_pgsql_utils'
+'psresize' '_psutils'
+'psselect' '_psutils'
+'pstack' '_pids'
+'pstoedit' '_pspdf'
+'pstop' '_pids'
+'pstops' '_psutils'
+'pstotgif' '_pspdf'
+'pswrap' '_postscript'
+'ptree' '_ptree'
+'ptx' '_ptx'
+'pump' '_pump'
+'pushd' '_cd'
+'putclip' '_putclip'
+'putclip.exe' '_putclip'
+'pv' '_pv'
+'pwait' '_pids'
+'pwdx' '_pids'
+'pwgen' '_pwgen'
+'pygmentize' '_pygmentize'
+'pyhtmlizer' '_twisted'
+'qdbus' '_qdbus'
+'qiv' '_qiv'
+'qmk' '_qmk'
+'qtplay' '_qtplay'
+'querybts' '_bug'
+'quilt' '_quilt'
+'r' '_fc'
+'rails' '_rails'
+'rake' '_rake'
+'ralio' '_ralio'
+'ranlib' '_ranlib'
+'rar' '_rar'
+'rc' '_sh'
+'rcctl' '_rcctl'
+'rclone' '_rclone'
+'rcp' '_rlogin'
+'rcs' '_rcs'
+'rcsdiff' '_rcs'
+'rdesktop' '_rdesktop'
+'read' '_read'
+'readelf' '_readelf'
+'readlink' '_readlink'
+'readonly' '_typeset'
+'readshortcut' '_readshortcut'
+'readshortcut.exe' '_readshortcut'
+'rebootin' '_rebootin'
+'rec' '_redis-cli'
+'-redirect-' '_redirect'
+'-redirect-,<,bunzip2' '_bzip2'
+'-redirect-,<,bzip2' '_bzip2'
+'-redirect-,>,bzip2' '_bzip2'
+'-redirect-,<,compress' '_compress'
+'-redirect-,>,compress' '_compress'
+'-redirect-,-default-,-default-' '_files'
+'-redirect-,<,gunzip' '_gzip'
+'-redirect-,<,gzip' '_gzip'
+'-redirect-,>,gzip' '_gzip'
+'-redirect-,<,uncompress' '_compress'
+'-redirect-,<,unxz' '_xz'
+'-redirect-,<,xz' '_xz'
+'-redirect-,>,xz' '_xz'
+'redis-cli' '_redis-cli'
+'refile' '_mh'
+'rehash' '_hash'
+'reindexdb' '_postgresql'
+'reload' '_initctl'
+'removepkg' '_pkgtool'
+'remsh' '_rlogin'
+'renice' '_renice'
+'repl' '_mh'
+'reportbug' '_bug'
+'reprepro' '_reprepro'
+'resolvectl' '_resolvectl'
+'restart' '_initctl'
+'retawq' '_webbrowser'
+'rfkill' '_rfkill'
+'rg' '_rg'
+'rgrep' '_grep'
+'rgview' '_vim'
+'rgvim' '_vim'
+'ri' '_ri'
+'rkt' '_rkt'
+'rlogin' '_rlogin'
+'rm' '_rm'
+'rmadison' '_madison'
+'rmd160' '_cksum'
+'rmdel' '_sccs'
+'rmdir' '_rmdir'
+'rmf' '_mh'
+'rmic' '_java'
+'rmid' '_java'
+'rmiregistry' '_java'
+'rmlint' '_rmlint'
+'rmlint.sh' '_rmlint'
+'rmm' '_mh'
+'rmmod' '_modutils'
+'route' '_route'
+'rpm' '_rpm'
+'rpmbuild' '_rpm'
+'rpmkeys' '_rpm'
+'rpmquery' '_rpm'
+'rpmsign' '_rpm'
+'rpmspec' '_rpm'
+'rpmverify' '_rpm'
+'rrdtool' '_rrdtool'
+'rsh' '_rlogin'
+'rslsync' '_rslsync'
+'rspec' '_rspec'
+'rsvm' '_rsvm'
+'rsync' '_rsync'
+'rtin' '_tin'
+'rubber' '_rubber'
+'rubber-info' '_rubber'
+'rubber-pipe' '_rubber'
+'rubocop' '_rubocop'
+'ruby' '_ruby'
+'ruby-mri' '_ruby'
+'run0' '_run0'
+'run-help' '_run-help'
+'rup' '_hosts'
+'rusage' '_precommand'
+'rustup' '_rustup'
+'rview' '_vim'
+'rvim' '_vim'
+'rwho' '_hosts'
+'rxvt' '_urxvt'
+'s2p' '_sed'
+'sact' '_sccs'
+'sadf' '_sysstat'
+'sahara' '_openstack'
+'sar' '_sysstat'
+'savecore' '_savecore'
+'say' '_say'
+'sbt' '_sbt'
+'sbuild' '_sbuild'
+'scala' '_scala'
+'scalac' '_scala'
+'scan' '_mh'
+'sccs' '_sccs'
+'sccsdiff' '_sccs'
+'sched' '_sched'
+'schedtool' '_schedtool'
+'schroot' '_schroot'
+'scl' '_scl'
+'scons' '_scons'
+'scp' '_ssh'
+'screen' '_screen'
+'script' '_script'
+'scriptreplay' '_script'
+'scrub' '_scrub'
+'scselect' '_scselect'
+'sc_usage' '_sc_usage'
+'scutil' '_scutil'
+'sdd' '_sdd'
+'seaf-cli' '_seafile'
+'sed' '_sed'
+'senlin' '_openstack'
+'seq' '_seq'
+'serialver' '_java'
+'service' '_service'
+'set' '_set'
+'setcap' '_setcap'
+'setfacl' '_setfacl'
+'setfacl.exe' '_setfacl'
+'setfattr' '_attr'
+'setopt' '_setopt'
+'setpriv' '_setpriv'
+'setsid' '_setsid'
+'setup.py' '_setup.py'
+'setxkbmap' '_setxkbmap'
+'sfdx' '_sfdx'
+'sftp' '_ssh'
+'sh' '_sh'
+'sha1' '_cksum'
+'sha1sum' '_md5sum'
+'sha224sum' '_md5sum'
+'sha256' '_cksum'
+'sha256sum' '_md5sum'
+'sha384' '_cksum'
+'sha384sum' '_md5sum'
+'sha512' '_cksum'
+'sha512sum' '_md5sum'
+'sha512t256' '_cksum'
+'shasum' '_shasum'
+'shellcheck' '_shellcheck'
+'shift' '_arrays'
+'show' '_mh'
+'showchar' '_psutils'
+'showmount' '_showmount'
+'showoff' '_showoff'
+'shred' '_shred'
+'shuf' '_shuf'
+'shutdown' '_shutdown'
+'signify' '_signify'
+'sisu' '_sisu'
+'skein1024' '_cksum'
+'skein256' '_cksum'
+'skein512' '_cksum'
+'skipstone' '_webbrowser'
+'skopeo' '_skopeo'
+'slabtop' '_slabtop'
+'slitex' '_tex'
+'slocate' '_locate'
+'slogin' '_ssh'
+'slrn' '_slrn'
+'smartctl' '_smartmontools'
+'smbclient' '_samba'
+'smbcontrol' '_samba'
+'smbstatus' '_samba'
+'smit' '_smit'
+'smitty' '_smit'
+'snoop' '_snoop'
+'soa' '_hosts'
+'socket' '_socket'
+'sockstat' '_sockstat'
+'softwareupdate' '_softwareupdate'
+'sort' '_sort'
+'sortm' '_mh'
+'source' '_source'
+'spamassassin' '_spamassassin'
+'split' '_split'
+'splitdiff' '_patchutils'
+'sqlite' '_sqlite'
+'sqlite3' '_sqlite'
+'sqsh' '_sqsh'
+'sr' '_surfraw'
+'srm' '_srm'
+'srptool' '_gnutls'
+'ss' '_ss'
+'ssh' '_ssh'
+'ssh-add' '_ssh'
+'ssh-agent' '_ssh'
+'ssh-copy-id' '_ssh'
+'sshfs' '_sshfs'
+'ssh-keygen' '_ssh'
+'ssh-keyscan' '_ssh'
+'stack' '_stack'
+'star' '_tar'
+'start' '_initctl'
+'stat' '_stat'
+'status' '_initctl'
+'stdbuf' '_stdbuf'
+'stg' '_stgit'
+'stop' '_initctl'
+'stow' '_stow'
+'strace' '_strace'
+'strace64' '_strace'
+'strftime' '_strftime'
+'strings' '_strings'
+'strip' '_strip'
+'strongswan' '_ipsec'
+'stty' '_stty'
+'su' '_su'
+'subl' '_subl'
+'subliminal' '_subliminal'
+'-subscript-' '_subscript'
+'sudo' '_sudo'
+'sudoedit' '_sudo'
+'sum' '_cksum'
+'supervisorctl' '_supervisorctl'
+'surfraw' '_surfraw'
+'SuSEconfig' '_SUSEconfig'
+'sv' '_runit'
+'svcadm' '_svcadm'
+'svccfg' '_svccfg'
+'svcprop' '_svcprop'
+'svcs' '_svcs'
+'svm' '_svm'
+'svn' '_subversion'
+'svnadmin' '_subversion'
+'svnadmin-static' '_subversion'
+'svn-buildpackage' '_svn-buildpackage'
+'svnlite' '_subversion'
+'svnliteadmin' '_subversion'
+'swaks' '_swaks'
+'swanctl' '_swanctl'
+'swift' '_swift'
+'swiftc' '_swift'
+'sw_vers' '_sw_vers'
+'sync' '_nothing'
+'sysclean' '_sysclean'
+'sysctl' '_sysctl'
+'sysmerge' '_sysmerge'
+'syspatch' '_syspatch'
+'sysrc' '_sysrc'
+'systat' '_systat'
+'systemctl' '_systemctl'
+'systemd-analyze' '_systemd-analyze'
+'systemd-ask-password' '_systemd'
+'systemd-cat' '_systemd'
+'systemd-cgls' '_systemd'
+'systemd-cgtop' '_systemd'
+'systemd-delta' '_systemd-delta'
+'systemd-detect-virt' '_systemd'
+'systemd-inhibit' '_systemd-inhibit'
+'systemd-machine-id-setup' '_systemd'
+'systemd-notify' '_systemd'
+'systemd-nspawn' '_systemd-nspawn'
+'systemd-path' '_systemd-path'
+'systemd-resolve' '_resolvectl'
+'systemd-run' '_systemd-run'
+'systemd-tmpfiles' '_systemd-tmpfiles'
+'systemd-tty-ask-password-agent' '_systemd'
+'system_profiler' '_system_profiler'
+'sysupgrade' '_sysupgrade'
+'tac' '_tac'
+'tacker' '_openstack'
+'tail' '_tail'
+'talk' '_other_accounts'
+'tar' '_tar'
+'tardy' '_tardy'
+'tarsnap' '_tarsnap'
+'tcpdump' '_tcpdump'
+'tcp_open' '_tcpsys'
+'tcptraceroute' '_tcptraceroute'
+'tcsh' '_sh'
+'tda' '_devtodo'
+'tdd' '_devtodo'
+'tde' '_devtodo'
+'tdr' '_devtodo'
+'teamocil' '_teamocil'
+'tee' '_tee'
+'telnet' '_telnet'
+'tex' '_tex'
+'texi2any' '_texinfo'
+'texi2dvi' '_texinfo'
+'texi2pdf' '_texinfo'
+'texindex' '_texinfo'
+'tg' '_topgit'
+'thor' '_thor'
+'tidy' '_tidy'
+'tig' '_git'
+'-tilde-' '_tilde'
+'time' '_precommand'
+'timedatectl' '_timedatectl'
+'timeout' '_timeout'
+'times' '_nothing'
+'tin' '_tin'
+'tkconch' '_twisted'
+'tkinfo' '_texinfo'
+'tla' '_tla'
+'tload' '_tload'
+'tmux' '_tmux'
+'tmuxinator' '_tmuxinator'
+'tmuxp' '_tmuxp'
+'todo' '_devtodo'
+'todo.sh' '_todo.sh'
+'toilet' '_toilet'
+'toolbox' '_toolbox'
+'top' '_top'
+'totdconfig' '_totd'
+'touch' '_touch'
+'tox' '_tox'
+'tpb' '_tpb'
+'tpkg-debarch' '_toolchain-source'
+'tpkg-install' '_toolchain-source'
+'tpkg-install-libc' '_toolchain-source'
+'tpkg-make' '_toolchain-source'
+'tpkg-update' '_toolchain-source'
+'tput' '_tput'
+'tr' '_tr'
+'tracepath' '_tracepath'
+'tracepath6' '_tracepath'
+'traceroute' '_hosts'
+'transmission-remote' '_transmission'
+'trap' '_trap'
+'trash' '_trash'
+'trash-empty' '_trash-empty'
+'trash-list' '_trash-list'
+'trash-put' '_trash-put'
+'trash-restore' '_trash-restore'
+'tree' '_tree'
+'trial' '_twisted'
+'trove' '_openstack'
+'true' '_nothing'
+'truncate' '_truncate'
+'truss' '_truss'
+'tryaffix' '_ispell'
+'tty' '_tty'
+'ttyctl' '_ttyctl'
+'tunctl' '_uml'
+'tune2fs' '_tune2fs'
+'tunes2pod' '_gnupod'
+'tunes2pod.pl' '_gnupod'
+'twidge' '_twidge'
+'twist' '_twisted'
+'twistd' '_twisted'
+'txt' '_hosts'
+'type' '_which'
+'typeset' '_typeset'
+'udevadm' '_udevadm'
+'udisksctl' '_udisks2'
+'ufw' '_ufw'
+'ulimit' '_ulimit'
+'uml_mconsole' '_uml'
+'uml_moo' '_uml'
+'uml_switch' '_uml'
+'umount' '_mount'
+'unace' '_unace'
+'unalias' '_aliases'
+'uname' '_uname'
+'uncompress' '_compress'
+'unexpand' '_unexpand'
+'unfunction' '_functions'
+'unget' '_sccs'
+'unhash' '_unhash'
+'uniq' '_uniq'
+'unison' '_unison'
+'units' '_units'
+'unix2dos' '_dos2unix'
+'unix2mac' '_dos2unix'
+'unlimit' '_limits'
+'unlz4' '_lz4'
+'unlzma' '_xz'
+'unpack' '_pack'
+'unpigz' '_gzip'
+'unrar' '_rar'
+'unset' '_vars'
+'unsetopt' '_setopt'
+'unshare' '_unshare'
+'unwrapdiff' '_patchutils'
+'unxz' '_xz'
+'unzip' '_zip'
+'update-alternatives' '_update-alternatives'
+'update-rc.d' '_update-rc.d'
+'upgradepkg' '_pkgtool'
+'uptime' '_uptime'
+'urpme' '_urpmi'
+'urpmf' '_urpmi'
+'urpmi' '_urpmi'
+'urpmi.addmedia' '_urpmi'
+'urpmi.removemedia' '_urpmi'
+'urpmi.update' '_urpmi'
+'urpmq' '_urpmi'
+'urxvt' '_urxvt'
+'urxvt256c' '_urxvt'
+'urxvt256cc' '_urxvt'
+'urxvt256c-ml' '_urxvt'
+'urxvt256c-mlc' '_urxvt'
+'urxvtc' '_urxvt'
+'usbconfig' '_usbconfig'
+'uscan' '_uscan'
+'useradd' '_user_admin'
+'userdel' '_users'
+'usermod' '_user_admin'
+'vacuumdb' '_pgsql_utils'
+'vagrant' '_vagrant'
+'val' '_sccs'
+'valgrind' '_valgrind'
+'-value-' '_value'
+'-value-,ADB_TRACE,-default-' '_adb'
+'-value-,ANDROID_LOG_TAGS,-default-' '_adb'
+'-value-,ANDROID_SERIAL,-default-' '_adb'
+'-value-,ANSIBLE_INVENTORY_ENABLED,-default-' '_ansible'
+'-value-,ANSIBLE_STDOUT_CALLBACK,-default-' '_ansible'
+'-value-,ANT_ARGS,-default-' '_ant'
+'-value-,CFLAGS,-default-' '_gcc'
+'-value-,CMAKE_GENERATOR,-default-' '_cmake'
+'-value-,CPPFLAGS,-default-' '_gcc'
+'-value-,CXXFLAGS,-default-' '_gcc'
+'-value-,-default-,-command-' '_zargs'
+'-value-,-default-,-default-' '_value'
+'-value-,DISPLAY,-default-' '_x_display'
+'-value-,GREP_OPTIONS,-default-' '_grep'
+'-value-,GZIP,-default-' '_gzip'
+'-value-,LANG,-default-' '_locales'
+'-value-,LANGUAGE,-default-' '_locales'
+'-value-,LD_DEBUG,-default-' '_ld_debug'
+'-value-,LDFLAGS,-default-' '_gcc'
+'-value-,LESSCHARSET,-default-' '_less'
+'-value-,LESS,-default-' '_less'
+'-value-,LOOPDEV_DEBUG,-default-' '_losetup'
+'-value-,LPDEST,-default-' '_printers'
+'-value-,MPD_HOST,-default' '_mpc'
+'-value-,P4CLIENT,-default-' '_perforce'
+'-value-,P4MERGE,-default-' '_perforce'
+'-value-,P4PORT,-default-' '_perforce'
+'-value-,P4USER,-default-' '_perforce'
+'-value-,PERLDOC,-default-' '_perldoc'
+'-value-,PRINTER,-default-' '_printers'
+'-value-,PROMPT2,-default-' '_ps1234'
+'-value-,PROMPT3,-default-' '_ps1234'
+'-value-,PROMPT4,-default-' '_ps1234'
+'-value-,PROMPT,-default-' '_ps1234'
+'-value-,PS1,-default-' '_ps1234'
+'-value-,PS2,-default-' '_ps1234'
+'-value-,PS3,-default-' '_ps1234'
+'-value-,PS4,-default-' '_ps1234'
+'-value-,RPROMPT2,-default-' '_ps1234'
+'-value-,RPROMPT,-default-' '_ps1234'
+'-value-,RPS1,-default-' '_ps1234'
+'-value-,RPS2,-default-' '_ps1234'
+'-value-,SPROMPT,-default-' '_ps1234'
+'-value-,TERM,-default-' '_terminals'
+'-value-,TERMINFO_DIRS,-default-' '_dir_list'
+'-value-,TZ,-default-' '_time_zone'
+'-value-,VALGRIND_OPTS,-default-' '_valgrind'
+'-value-,WWW_HOME,-default-' '_urls'
+'-value-,XML_CATALOG_FILES,-default-' '_xmlsoft'
+'-value-,XZ_DEFAULTS,-default-' '_xz'
+'-value-,XZ_OPT,-default-' '_xz'
+'-vared-' '_in_vared'
+'vared' '_vared'
+'varlinkctl' '_varlinkctl'
+'VBoxHeadless' '_virtualbox'
+'vboxmanage' '_virtualbox'
+'VBoxManage' '_virtualbox'
+'vcs_info_hookadd' '_vcs_info'
+'vcs_info_hookdel' '_vcs_info'
+'vi' '_vi'
+'view' '_vi'
+'vim' '_vim'
+'vim-addons' '_vim-addons'
+'vimdiff' '_vim'
+'virsh' '_libvirt'
+'virt-admin' '_libvirt'
+'virt-host-validate' '_libvirt'
+'virt-pki-validate' '_libvirt'
+'virt-xml-validate' '_libvirt'
+'visudo' '_visudo'
+'vitrage' '_openstack'
+'vmctl' '_vmctl'
+'vmstat' '_vmstat'
+'vncserver' '_vnc'
+'vncviewer' '_vnc'
+'vnstat' '_vnstat'
+'vorbiscomment' '_vorbis'
+'vpnc' '_vpnc'
+'vpnc-connect' '_vpnc'
+'vserver' '_vserver'
+'w' '_w'
+'w3m' '_w3m'
+'wait' '_wait'
+'wajig' '_wajig'
+'wanna-build' '_wanna-build'
+'watch' '_watch'
+'watcher' '_openstack'
+'wc' '_wc'
+'wemux' '_wemux'
+'wget' '_wget'
+'wg-quick' '_wg-quick'
+'what' '_sccs'
+'whatis' '_man'
+'whence' '_which'
+'where' '_which'
+'whereis' '_whereis'
+'which' '_which'
+'who' '_who'
+'whoami' '_nothing'
+'whois' '_whois'
+'whom' '_mh'
+'wiggle' '_wiggle'
+'wipefs' '_wipefs'
+'wl-copy' '_wl-copy'
+'wl-paste' '_wl-paste'
+'wodim' '_cdrecord'
+'wpa_cli' '_wpa_cli'
+'wpctl' '_wpctl'
+'write' '_users_on'
+'www' '_webbrowser'
+'xargs' '_xargs'
+'xattr' '_attr'
+'xauth' '_xauth'
+'xautolock' '_xautolock'
+'xclip' '_xclip'
+'xcode-select' '_xcode-select'
+'xdpyinfo' '_x_utils'
+'xdvi' '_xdvi'
+'xelatex' '_tex'
+'xetex' '_tex'
+'xev' '_x_utils'
+'xfd' '_x_utils'
+'xfig' '_xfig'
+'xfontsel' '_x_utils'
+'xfreerdp' '_rdesktop'
+'xhost' '_x_utils'
+'xinput' '_xinput'
+'xkill' '_x_utils'
+'xli' '_xloadimage'
+'xloadimage' '_xloadimage'
+'xlsatoms' '_x_utils'
+'xlsclients' '_x_utils'
+'xml' '_xmlstarlet'
+'xmllint' '_xmlsoft'
+'xmlstarlet' '_xmlstarlet'
+'xmms2' '_xmms2'
+'xmodmap' '_xmodmap'
+'xmosaic' '_webbrowser'
+'xon' '_x_utils'
+'xournal' '_xournal'
+'xpdf' '_xpdf'
+'xping' '_hosts'
+'xprop' '_x_utils'
+'xrandr' '_xrandr'
+'xrdb' '_x_utils'
+'xscreensaver-command' '_xscreensaver'
+'xsel' '_xsel'
+'xset' '_xset'
+'xsetbg' '_xloadimage'
+'xsetroot' '_x_utils'
+'xsltproc' '_xmlsoft'
+'xterm' '_xterm'
+'xtightvncviewer' '_vnc'
+'xtp' '_imagemagick'
+'xv' '_xv'
+'xview' '_xloadimage'
+'xvnc4viewer' '_vnc'
+'xvncviewer' '_vnc'
+'xwd' '_x_utils'
+'xwininfo' '_x_utils'
+'xwit' '_xwit'
+'xwud' '_x_utils'
+'xxd' '_xxd'
+'xz' '_xz'
+'xzcat' '_xz'
+'yafc' '_yafc'
+'yaourt' '_yaourt'
+'yaourt.static' '_yaourt'
+'yarn' '_yarn'
+'yash' '_sh'
+'yast' '_yast'
+'yast2' '_yast'
+'ypbind' '_yp'
+'ypcat' '_yp'
+'ypmatch' '_yp'
+'yppasswd' '_yp'
+'yppoll' '_yp'
+'yppush' '_yp'
+'ypserv' '_yp'
+'ypset' '_yp'
+'ypwhich' '_yp'
+'ypxfr' '_yp'
+'ytalk' '_other_accounts'
+'yum' '_yum'
+'yumdb' '_yum'
+'zargs' '_zargs'
+'zcalc' '_zcalc'
+'-zcalc-line-' '_zcalc_line'
+'zcash-cli' '_zcash-cli'
+'zcat' '_zcat'
+'zcompile' '_zcompile'
+'zcp' '_zmv'
+'zdb' '_zfs'
+'zdelattr' '_zattr'
+'zdump' '_zdump'
+'zeal' '_zeal'
+'zed' '_zed'
+'zegrep' '_grep'
+'zen' '_webbrowser'
+'zf_chgrp' '_chown'
+'zf_chmod' '_chmod'
+'zf_chown' '_chown'
+'zfgrep' '_grep'
+'zf_ln' '_ln'
+'zf_mkdir' '_mkdir'
+'zf_mv' '_mv'
+'zf_rm' '_rm'
+'zf_rmdir' '_rmdir'
+'zfs' '_zfs'
+'zgetattr' '_zattr'
+'zgrep' '_grep'
+'zip' '_zip'
+'zipinfo' '_zip'
+'zle' '_zle'
+'zlistattr' '_zattr'
+'zln' '_zmv'
+'zlogin' '_zlogin'
+'zmail' '_mail'
+'zmodload' '_zmodload'
+'zmv' '_zmv'
+'zone' '_hosts'
+'zoneadm' '_zoneadm'
+'zparseopts' '_zparseopts'
+'zpool' '_zfs'
+'zpty' '_zpty'
+'zsetattr' '_zattr'
+'zsh' '_zsh'
+'zsh-mime-handler' '_zsh-mime-handler'
+'zsocket' '_zsocket'
+'zstat' '_stat'
+'zstyle' '_zstyle'
+'ztodo' '_ztodo'
+'zun' '_openstack'
+'zxpdf' '_xpdf'
+'zypper' '_zypper'
+)
+
+_services=(
+'bzcat' 'bunzip2'
+'dch' 'debchange'
+'gchgrp' 'chgrp'
+'gchown' 'chown'
+'gnupod_addsong.pl' 'gnupod_addsong'
+'gnupod_check.pl' 'gnupod_check'
+'gnupod_INIT.pl' 'gnupod_INIT'
+'gnupod_search.pl' 'gnupod_search'
+'gpg2' 'gpg'
+'gzcat' 'gunzip'
+'iceweasel' 'firefox'
+'lzcat' 'unxz'
+'lzma' 'xz'
+'Mail' 'mail'
+'mailx' 'mail'
+'mktunes.pl' 'mktunes'
+'nail' 'mail'
+'ncl' 'nc'
+'nedit-nc' 'nc'
+'pcat' 'unpack'
+'-redirect-,<,bunzip2' 'bunzip2'
+'-redirect-,<,bzip2' 'bzip2'
+'-redirect-,>,bzip2' 'bunzip2'
+'-redirect-,<,compress' 'compress'
+'-redirect-,>,compress' 'uncompress'
+'-redirect-,<,gunzip' 'gunzip'
+'-redirect-,<,gzip' 'gzip'
+'-redirect-,>,gzip' 'gunzip'
+'-redirect-,<,uncompress' 'uncompress'
+'-redirect-,<,unxz' 'unxz'
+'-redirect-,<,xz' 'xz'
+'-redirect-,>,xz' 'unxz'
+'remsh' 'rsh'
+'slogin' 'ssh'
+'svnadmin-static' 'svnadmin'
+'svnlite' 'svn'
+'svnliteadmin' 'svnadmin'
+'tunes2pod.pl' 'tunes2pod'
+'unlzma' 'unxz'
+'VBoxHeadless' 'vboxheadless'
+'vboxmanage' 'vboxmanage'
+'VBoxManage' 'vboxmanage'
+'xelatex' 'latex'
+'xetex' 'tex'
+'xzcat' 'unxz'
+'yaourt.static' 'yaourt'
+'zf_chgrp' 'chgrp'
+'zf_chown' 'chown'
+)
+
+_patcomps=(
+'*/(init|rc[0-9S]#).d/*' '_init_d'
+)
+
+_postpatcomps=(
+'_*' '_compadd'
+'c++-*' '_gcc'
+'g++-*' '_gcc'
+'gcc-*' '_gcc'
+'gem[0-9.]#' '_gem'
+'lua[0-9.-]##' '_lua'
+'(p[bgpn]m*|*top[bgpn]m)' '_pbm'
+'php[0-9.-]' '_php'
+'pip[0-9.]#' '_pip'
+'pydoc[0-9.]#' '_pydoc'
+'python[0-9.]#' '_python'
+'qemu(|-system-*)' '_qemu'
+'rmlint.*.sh' '_rmlint'
+'(ruby|[ei]rb)[0-9.]#' '_ruby'
+'shasum(|5).*' '_shasum'
+'(texi(2*|ndex))' '_texi'
+'(tiff*|*2tiff|pal2rgb)' '_tiff'
+'-value-,CCACHE_*,-default-' '_ccache'
+'-value-,CGO*,-default-' '_golang'
+'-value-,(ftp|http(|s))_proxy,-default-' '_urls'
+'-value-,GO*,-default-' '_golang'
+'-value-,LC_*,-default-' '_locales'
+'-value-,*path,-default-' '_directories'
+'-value-,*PATH,-default-' '_dir_list'
+'-value-,RUBY(LIB|OPT|PATH),-default-' '_ruby'
+'*/X11(|R<4->)/*' '_x_arguments'
+'yodl(|2*)' '_yodl'
+'zf*' '_zftp'
+)
+
+_compautos=(
+'_call_program' '+X'
+)
+
+zle -C _bash_complete-word .complete-word _bash_completions
+zle -C _bash_list-choices .list-choices _bash_completions
+zle -C _complete_debug .complete-word _complete_debug
+zle -C _complete_help .complete-word _complete_help
+zle -C _complete_tag .complete-word _complete_tag
+zle -C _correct_filename .complete-word _correct_filename
+zle -C _correct_word .complete-word _correct_word
+zle -C _expand_alias .complete-word _expand_alias
+zle -C _expand_word .complete-word _expand_word
+zle -C _history-complete-newer .complete-word _history_complete_word
+zle -C _history-complete-older .complete-word _history_complete_word
+zle -C _list_expansions .list-choices _expand_word
+zle -C _most_recent_file .complete-word _most_recent_file
+zle -C _next_tags .list-choices _next_tags
+zle -C _read_comp .complete-word _read_comp
+bindkey '^X^R' _read_comp
+bindkey '^X?' _complete_debug
+bindkey '^XC' _correct_filename
+bindkey '^Xa' _expand_alias
+bindkey '^Xc' _correct_word
+bindkey '^Xd' _list_expansions
+bindkey '^Xe' _expand_word
+bindkey '^Xh' _complete_help
+bindkey '^Xm' _most_recent_file
+bindkey '^Xn' _next_tags
+bindkey '^Xt' _complete_tag
+bindkey '^X~' _bash_list-choices
+bindkey '^[,' _history-complete-newer
+bindkey '^[/' _history-complete-older
+bindkey '^[~' _bash_complete-word
+
+autoload -Uz _cargo _rustup _afew _android _archlinux-java \
+ _artisan _atach _bitcoin-cli _bluetoothctl _bootctl \
+ _bower _bundle _busctl _bwrap _caffeinate \
+ _cap _cask _ccache _cf _choc \
+ _chromium _cmake _coffee _composer _conan \
+ _concourse _console _coredumpctl _cppcheck _curl \
+ _dad _debuild _dget _dhcpcd _diana \
+ _docpad _drush _ecdsautil _emulator _envdir \
+ _exportfs _fab _fail2ban-client _ffind _firewalld \
+ _flatpak _fleetctl _flutter _force _fwupdmgr \
+ _gas _gh _ghc _gist _git-flow \
+ _git-journal _git-pulls _git-revise _git-wtf _glances \
+ _golang _google _gpgconf _gtk-launch _hello \
+ _hledger _homestead _hostnamectl _httpie _ibus \
+ _include-what-you-use _inxi _jmeter _jmeter-plugins _jonas \
+ _journalctl _jrnl _kak _kernel-install _kitchen \
+ _knife _language_codes _libinput _lilypond _localectl \
+ _loginctl _lunchy _machinectl _mc _meson \
+ _middleman _mina _mix _mssh _mussh \
+ _mvn _nano _nanoc _networkctl _nftables \
+ _ninja _node _nvm _nvme _oomctl \
+ _openssl _openvpn3 _optirun _opustools _patool \
+ _perf _periscope _pgsql_utils _phing _pixz \
+ _pkcon _play _pm2 _podman _port \
+ _protoc _pygmentize _qmk _rails _ralio \
+ _redis-cli _resolvectl _rfkill _rg _rkt \
+ _rmlint _rslsync _rspec _rsvm _rubocop \
+ _run0 _sbt _scala _scrub _sdd \
+ _sd_hosts_or_user_at_host _sd_machines _sd_outputmodes _sd_unit_files _setcap \
+ _setup.py _sfdx _shellcheck _showoff _skopeo \
+ _srm _stack _subl _subliminal _supervisorctl \
+ _svm _systemctl _systemd _systemd-analyze _systemd-delta \
+ _systemd-inhibit _systemd-nspawn _systemd-path _systemd-run _systemd-tmpfiles \
+ _tarsnap _teamocil _thor _timedatectl _tmuxinator \
+ _tmuxp _toolbox _tox _trash _trash-empty \
+ _trash-list _trash-put _trash-restore _udevadm _udisks2 \
+ _udisksctl _ufw _vagrant _varlinkctl _virtualbox \
+ _vnstat _wemux _wg-quick _wl-copy _wl-paste \
+ _wpctl _xinput _xsel _yaourt _yarn \
+ _zcash-cli _a2ps _a2utils _aap _abcde \
+ _absolute_command_paths _ack _acpi _acpitool _acroread \
+ _adb _add-zle-hook-widget _add-zsh-hook _alias _aliases \
+ _all_labels _all_matches _alsa-utils _alternative _analyseplugin \
+ _ansible _ant _antiword _apachectl _apm \
+ _approximate _apt _apt-file _aptitude _apt-move \
+ _apt-show-versions _arch_archives _arch_namespace _arg_compile __arguments \
+ _arguments _arp _arping _arrays _asciidoctor \
+ _asciinema _assign _at _attr _augeas \
+ _auto-apt _autocd _avahi _awk _axi-cache \
+ _base64 _basename _basenc _bash _bash_completions \
+ _baudrates _baz _beadm _beep _be_name \
+ _bibtex _bind_addresses _bindkey _bison _bittorrent \
+ _bogofilter _bpf_filters _bpython _brace_parameter _brctl \
+ _bsdconfig _bsd_disks _bsdinstall _bsd_pkg _btrfs \
+ _bts _bug _builtin _bzip2 _bzr \
+ _cabal _cache_invalid _caffeinate _cal _calendar \
+ _call_function _canonical_paths _capabilities _cat _ccal \
+ _cd _cdbs-edit-patch _cdcd _cdr _cdrdao \
+ _cdrecord _chattr _chcon _chflags _chkconfig \
+ _chmod _choom _chown _chroot _chrt \
+ _chsh _cksum _clay _cmdambivalent _cmdstring \
+ _cmp _code _column _combination _comm \
+ _command _command_names _compadd _compdef _complete \
+ _complete_debug _complete_help _complete_help_generic _completers _complete_tag \
+ _comp_locale _composer _compress _condition _configure \
+ _coreadm _correct _correct_filename _correct_word _cowsay \
+ _cp _cpio _cplay _cpupower _crontab \
+ _cryptsetup _cscope _csplit _cssh _csup \
+ _ctags _ctags_tags _cu _curl _cut \
+ _cvs _cvsup _cygcheck _cygpath _cygrunsrv \
+ _cygserver _cygstart _dak _darcs _date \
+ _date_formats _dates _dbus _dchroot _dchroot-dsa \
+ _dconf _dcop _dcut _dd _deb_architectures \
+ _debbugs_bugnumber _debchange _debcheckout _deb_codenames _debdiff \
+ _deb_files _debfoster _deborphan _deb_packages _debsign \
+ _debsnap _debuild _default _defaults _delimiters \
+ _describe _description _devtodo _df _dhclient \
+ _dhcpinfo _dict _dict_words _diff _diff3 \
+ _diff_options _diffstat _dig _directories _directory_stack \
+ _dir_list _dirs _disable _dispatch _django \
+ _dkms _dladm _dlocate _dmesg _dmidecode \
+ _dnf _dns_types _doas _domains _dos2unix \
+ _dpatch-edit-patch _dpkg _dpkg-buildpackage _dpkg-cross _dpkg-repack \
+ _dpkg_source _dput _drill _dropbox _dscverify \
+ _dsh _dtrace _dtruss _du _dumpadm \
+ _dumper _dupload _dvi _dynamic_directory_name _e2label \
+ _ecasound _echotc _echoti _ed _elfdump \
+ _elinks _email_addresses _emulate _enable _enscript \
+ _entr _env _eog _equal _espeak \
+ _etags _ethtool _evince _exec _expand \
+ _expand_alias _expand_word _extensions _external_pwds _fakeroot \
+ _fbsd_architectures _fbsd_device_types _fc _feh _fetch \
+ _fetchmail _ffmpeg _figlet _file_descriptors _file_flags \
+ _file_modes _files _file_systems _find _findmnt \
+ _find_net_interfaces _finger _fink _first _flac \
+ _flex _floppy _flowadm _fmadm _fmt \
+ _fold _fortune _free _freebsd-update _fsh \
+ _fstat _fs_usage _functions _fuse_arguments _fuser \
+ _fusermount _fuse_values _fw_update _gcc _gcore \
+ _gdb _geany _gem _generic _genisoimage \
+ _getclip _getconf _getent _getfacl _getmail \
+ _getopt _ghostscript _git _git-buildpackage _global \
+ _global_tags _globflags _globqual_delims _globquals _gnome-gv \
+ _gnu_generic _gnupod _gnutls _go _gpasswd \
+ _gpg _gphoto2 _gprof _gqview _gradle \
+ _graphicsmagick _grep _grep-excuses _groff _groups \
+ _growisofs _gsettings _gstat _guard _guilt \
+ _gv _gzip _hash _have_glob_qual _hdiutil \
+ _head _hexdump _history _history_complete_word _history_modifiers \
+ _host _hostname _hosts _htop _hwinfo \
+ _iconv _iconvconfig _id _ifconfig _iftop \
+ _ignored _imagemagick _inetadm _initctl _init_d \
+ _install _in_vared _invoke-rc.d _ionice _iostat \
+ _ip _ipadm _ipfw _ipsec _ipset \
+ _iptables _irssi _ispell _iwconfig _jail \
+ _jails _java _java_class _jexec _jls \
+ _jobs _jobs_bg _jobs_builtin _jobs_fg _joe \
+ _join _jot _jq _kdeconnect _kdump \
+ _kfmclient _kill _killall _kld _knock \
+ _kpartx _ktrace _ktrace_points _kvno _last \
+ _ldap _ldconfig _ldd _ld_debug _less \
+ _lha _libvirt _lighttpd _limit _limits \
+ _links _lintian _list _list_files _lldb \
+ _ln _loadkeys _locale _localedef _locales \
+ _locate _logger _logical_volumes _login_classes _look \
+ _losetup _lp _ls _lsattr _lsblk \
+ _lscfg _lsdev _lslv _lsns _lsof \
+ _lspv _lsusb _lsvg _ltrace _lua \
+ _luarocks _lynx _lz4 _lzop _mac_applications \
+ _mac_files_for_application _madison _mail _mailboxes _main_complete \
+ _make _make-kpkg _man _mat _mat2 \
+ _match _math _math_params _matlab _md5sum \
+ _mdadm _mdfind _mdls _mdutil _members \
+ _mencal _menu _mere _mergechanges _message \
+ _mh _mii-tool _mime_types _mixerctl _mkdir \
+ _mkfifo _mknod _mkshortcut _mktemp _mkzsh \
+ _module _module-assistant _module_math_func _modutils _mondo \
+ _monotone _moosic _mosh _most_recent_file _mount \
+ _mozilla _mpc _mplayer _mt _mtools \
+ _mtr _multi_parts _mupdf _mutt _mv \
+ _my_accounts _myrepos _mysqldiff _mysql_utils _nautilus \
+ _nbsd_architectures _ncftp _nedit _netcat _net_interfaces \
+ _netscape _netstat _networkmanager _networksetup _newsgroups \
+ _next_label _next_tags _nginx _ngrep _nice \
+ _nkf _nl _nm _nmap _normal \
+ _nothing _npm _nsenter _nslookup _numbers \
+ _numfmt _nvram _objdump _object_classes _object_files \
+ _obsd_architectures _od _okular _oldlist _open \
+ _openstack _opkg _options _options_set _options_unset \
+ _opustools _osascript _osc _other_accounts _otool \
+ _pack _pandoc _parameter _parameters _paste \
+ _patch _patchutils _path_commands _path_files _pax \
+ _pbcopy _pbm _pbuilder _pdf _pdftk \
+ _perf _perforce _perl _perl_basepods _perldoc \
+ _perl_modules _pfctl _pfexec _pgids _pgrep \
+ _php _physical_volumes _pick_variant _picocom _pidof \
+ _pids _pine _ping _pip _piuparts \
+ _pkg5 _pkgadd _pkg-config _pkgin _pkginfo \
+ _pkg_instance _pkgrm _pkgtool _plutil _pmap \
+ _pon _portaudit _portlint _portmaster _ports \
+ _portsnap _postfix _postgresql _postscript _powerd \
+ _pr _precommand _prefix _print _printenv \
+ _printers _process_names _procstat _prompt _prove \
+ _prstat _ps _ps1234 _pscp _pspdf \
+ _psutils _ptree _ptx _pump _putclip \
+ _pv _pwgen _pydoc _python _python_modules \
+ _qdbus _qemu _qiv _qtplay _quilt \
+ _rake _ranlib _rar _rcctl _rclone \
+ _rcs _rdesktop _read _read_comp _readelf \
+ _readlink _readshortcut _rebootin _redirect _regex_arguments \
+ _regex_words _remote_files _renice _reprepro _requested \
+ _retrieve_cache _retrieve_mac_apps _ri _rlogin _rm \
+ _rmdir _route _routing_domains _routing_tables _rpm \
+ _rrdtool _rsync _rubber _ruby _run-help \
+ _runit _samba _savecore _say _sbuild \
+ _sccs _sched _schedtool _schroot _scl \
+ _scons _screen _script _scselect _sc_usage \
+ _scutil _seafile _sed _selinux_contexts _selinux_roles \
+ _selinux_types _selinux_users _sep_parts _seq _sequence \
+ _service _services _set _set_command _setfacl \
+ _setopt _setpriv _setsid _setup _setxkbmap \
+ _sh _shasum _showmount _shred _shuf \
+ _shutdown _signals _signify _sisu _slabtop \
+ _slrn _smartmontools _smit _snoop _socket \
+ _sockstat _softwareupdate _sort _source _spamassassin \
+ _split _sqlite _sqsh _ss _ssh \
+ _sshfs _ssh_hosts _stat _stdbuf _stgit \
+ _store_cache _stow _strace _strftime _strings \
+ _strip _stty _su _sub_commands _sublimetext \
+ _subscript _subversion _sudo _suffix_alias_files _surfraw \
+ _SUSEconfig _svcadm _svccfg _svcprop _svcs \
+ _svcs_fmri _svn-buildpackage _swaks _swanctl _swift \
+ _sw_vers _sys_calls _sysclean _sysctl _sysmerge \
+ _syspatch _sysrc _sysstat _systat _system_profiler \
+ _sysupgrade _tac _tags _tail _tar \
+ _tar_archive _tardy _tcpdump _tcpsys _tcptraceroute \
+ _tee _telnet _terminals _tex _texi \
+ _texinfo _tidy _tiff _tilde _tilde_files \
+ _timeout _time_zone _tin _tla _tload \
+ _tmux _todo.sh _toilet _toolchain-source _top \
+ _topgit _totd _touch _tpb _tput \
+ _tr _tracepath _transmission _trap _trash \
+ _tree _truncate _truss _tty _ttyctl \
+ _ttys _tune2fs _twidge _twisted _typeset \
+ _ulimit _uml _umountable _unace _uname \
+ _unexpand _unhash _uniq _unison _units \
+ _unshare _update-alternatives _update-rc.d _uptime _urls \
+ _urpmi _urxvt _usbconfig _uscan _user_admin \
+ _user_at_host _user_expand _user_math_func _users _users_on \
+ _valgrind _value _values _vared _vars \
+ _vcs_info _vcs_info_hooks _vi _vim _vim-addons \
+ _visudo _vmctl _vmstat _vnc _volume_groups \
+ _vorbis _vpnc _vserver _w _w3m \
+ _wait _wajig _wakeup_capable_devices _wanna-build _wanted \
+ _watch _watch-snoop _wc _webbrowser _wget \
+ _whereis _which _who _whois _widgets \
+ _wiggle _wipefs _wpa_cli _xargs _x_arguments \
+ _xauth _xautolock _x_borderwidth _xclip _xcode-select \
+ _x_color _x_colormapid _x_cursor _x_display _xdvi \
+ _x_extension _xfig _x_font _xft_fonts _x_geometry \
+ _xinput _x_keysym _xloadimage _x_locale _xmlsoft \
+ _xmlstarlet _xmms2 _x_modifier _xmodmap _x_name \
+ _xournal _xpdf _xrandr _x_resource _xscreensaver \
+ _x_selection_timeout _xset _xt_arguments _xterm _x_title \
+ _xt_session_id _x_utils _xv _x_visual _x_window \
+ _xwit _xxd _xz _yafc _yast \
+ _yodl _yp _yum _zargs _zattr \
+ _zcalc _zcalc_line _zcat _zcompile _zdump \
+ _zeal _zed _zfs _zfs_dataset _zfs_pool \
+ _zftp _zip _zle _zlogin _zmodload \
+ _zmv _zoneadm _zones _zparseopts _zpty \
+ _zsh _zsh-mime-handler _zsocket _zstyle _ztodo \
+ _zypper
+autoload -Uz +X _call_program
+
+typeset -gUa _comp_assocs
+_comp_assocs=( '' )
diff --git a/.zfunc/_cargo b/.zfunc/_cargo
new file mode 100644
index 0000000..351db7f
--- /dev/null
+++ b/.zfunc/_cargo
@@ -0,0 +1,4 @@
+#compdef cargo
+if command -v rustc >/dev/null 2>&1; then
+ source "$(rustc --print sysroot)"/share/zsh/site-functions/_cargo
+fi
diff --git a/.zfunc/_rustup b/.zfunc/_rustup
new file mode 100644
index 0000000..525de0b
--- /dev/null
+++ b/.zfunc/_rustup
@@ -0,0 +1,1677 @@
+#compdef rustup
+
+autoload -U is-at-least
+
+_rustup() {
+ typeset -A opt_args
+ typeset -a _arguments_options
+ local ret=1
+
+ if is-at-least 5.2; then
+ _arguments_options=(-s -S -C)
+ else
+ _arguments_options=(-s -C)
+ fi
+
+ local context curcontext="$curcontext" state line
+ _arguments "${_arguments_options[@]}" \
+'-v[Enable verbose output]' \
+'--verbose[Enable verbose output]' \
+'(-v --verbose)-q[Disable progress output]' \
+'(-v --verbose)--quiet[Disable progress output]' \
+'-h[Print help]' \
+'--help[Print help]' \
+'-V[Print version]' \
+'--version[Print version]' \
+'::+toolchain -- release channel (e.g. +stable) or custom toolchain to set override:' \
+":: :_rustup_commands" \
+"*::: :->rustup" \
+&& ret=0
+ case $state in
+ (rustup)
+ words=($line[2] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-command-$line[2]:"
+ case $line[2] in
+ (dump-testament)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(show)
+_arguments "${_arguments_options[@]}" \
+'-v[Enable verbose output with rustc information for all installed toolchains]' \
+'--verbose[Enable verbose output with rustc information for all installed toolchains]' \
+'-h[Print help]' \
+'--help[Print help]' \
+":: :_rustup__show_commands" \
+"*::: :->show" \
+&& ret=0
+
+ case $state in
+ (show)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-show-command-$line[1]:"
+ case $line[1] in
+ (active-toolchain)
+_arguments "${_arguments_options[@]}" \
+'-v[Enable verbose output with rustc information]' \
+'--verbose[Enable verbose output with rustc information]' \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(home)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(profile)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__show__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-show-help-command-$line[1]:"
+ case $line[1] in
+ (active-toolchain)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(home)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(profile)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+'--profile=[]: :(minimal default complete)' \
+'--no-self-update[Don'\''t perform self-update when running the \`rustup install\` command]' \
+'--force[Force an update, even if some components are missing]' \
+'--force-non-host[Install toolchains that require an emulator. See https\://github.com/rust-lang/rustup/wiki/Non-host-toolchains]' \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::toolchain -- Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`:' \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::toolchain -- Toolchain name, such as '\''stable'\'', '\''nightly'\'', '\''1.8.0'\'', or a custom toolchain name. For more information see `rustup help toolchain`:' \
+&& ret=0
+;;
+(update)
+_arguments "${_arguments_options[@]}" \
+'--no-self-update[Don'\''t perform self update when running the \`rustup update\` command]' \
+'--force[Force an update, even if some components are missing]' \
+'--force-non-host[Install toolchains that require an emulator. See https\://github.com/rust-lang/rustup/wiki/Non-host-toolchains]' \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::toolchain -- Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`:' \
+&& ret=0
+;;
+(check)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(default)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+'::toolchain -- '\''none'\'', a toolchain name, such as '\''stable'\'', '\''nightly'\'', '\''1.8.0'\'', or a custom toolchain name. For more information see `rustup help toolchain`:' \
+&& ret=0
+;;
+(toolchain)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+":: :_rustup__toolchain_commands" \
+"*::: :->toolchain" \
+&& ret=0
+
+ case $state in
+ (toolchain)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-toolchain-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'-v[Enable verbose output with toolchain information]' \
+'--verbose[Enable verbose output with toolchain information]' \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+'--profile=[]: :(minimal default complete)' \
+'*-c+[Add specific components on installation]: : ' \
+'*--component=[Add specific components on installation]: : ' \
+'*-t+[Add specific targets on installation]: : ' \
+'*--target=[Add specific targets on installation]: : ' \
+'--no-self-update[Don'\''t perform self update when running the\`rustup toolchain install\` command]' \
+'--force[Force an update, even if some components are missing]' \
+'--allow-downgrade[Allow rustup to downgrade the toolchain to satisfy your component choice]' \
+'--force-non-host[Install toolchains that require an emulator. See https\://github.com/rust-lang/rustup/wiki/Non-host-toolchains]' \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::toolchain -- Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see `rustup help toolchain`:' \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::toolchain -- Toolchain name, such as '\''stable'\'', '\''nightly'\'', '\''1.8.0'\'', or a custom toolchain name. For more information see `rustup help toolchain`:' \
+&& ret=0
+;;
+(link)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+':toolchain -- Custom toolchain name:' \
+':path -- Path to the directory:' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__toolchain__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-toolchain-help-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(link)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+;;
+(target)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+":: :_rustup__target_commands" \
+"*::: :->target" \
+&& ret=0
+
+ case $state in
+ (target)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-target-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'--installed[List only installed targets]' \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::target -- List of targets to install; "all" installs all available targets:' \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::target -- List of targets to uninstall:' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__target__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-target-help-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+;;
+(component)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+":: :_rustup__component_commands" \
+"*::: :->component" \
+&& ret=0
+
+ case $state in
+ (component)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-component-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'--installed[List only installed components]' \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'--target=[]: : ' \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::component:' \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'--target=[]: : ' \
+'-h[Print help]' \
+'--help[Print help]' \
+'*::component:' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__component__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-component-help-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+;;
+(override)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+":: :_rustup__override_commands" \
+"*::: :->override" \
+&& ret=0
+
+ case $state in
+ (override)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-override-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(set)
+_arguments "${_arguments_options[@]}" \
+'--path=[Path to the directory]: : ' \
+'-h[Print help]' \
+'--help[Print help]' \
+':toolchain -- Toolchain name, such as '\''stable'\'', '\''nightly'\'', '\''1.8.0'\'', or a custom toolchain name. For more information see `rustup help toolchain`:' \
+&& ret=0
+;;
+(unset)
+_arguments "${_arguments_options[@]}" \
+'--path=[Path to the directory]: : ' \
+'--nonexistent[Remove override toolchain for all nonexistent directories]' \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__override__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-override-help-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(set)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(unset)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+;;
+(run)
+_arguments "${_arguments_options[@]}" \
+'--install[Install the requested toolchain if needed]' \
+'-h[Print help]' \
+'--help[Print help]' \
+':toolchain -- Toolchain name, such as '\''stable'\'', '\''nightly'\'', '\''1.8.0'\'', or a custom toolchain name, or an absolute path. For more information see `rustup help toolchain`:' \
+'*::command:' \
+&& ret=0
+;;
+(which)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', '\''1.8.0'\'', or a custom toolchain name. For more information see \`rustup help toolchain\`]: : ' \
+'-h[Print help]' \
+'--help[Print help]' \
+':command:' \
+&& ret=0
+;;
+(doc)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'--path[Only print the path to the documentation]' \
+'--alloc[The Rust core allocation and collections library]' \
+'--book[The Rust Programming Language book]' \
+'--cargo[The Cargo Book]' \
+'--core[The Rust Core Library]' \
+'--edition-guide[The Rust Edition Guide]' \
+'--nomicon[The Dark Arts of Advanced and Unsafe Rust Programming]' \
+'--proc_macro[A support library for macro authors when defining new macros]' \
+'--reference[The Rust Reference]' \
+'--rust-by-example[A collection of runnable examples that illustrate various Rust concepts and standard libraries]' \
+'--rustc[The compiler for the Rust programming language]' \
+'--rustdoc[Documentation generator for Rust projects]' \
+'--std[Standard library API documentation]' \
+'--test[Support code for rustc'\''s built in unit-test and micro-benchmarking framework]' \
+'--unstable-book[The Unstable Book]' \
+'--embedded-book[The Embedded Rust Book]' \
+'-h[Print help]' \
+'--help[Print help]' \
+'::topic -- Topic such as '\''core'\'', '\''fn'\'', '\''usize'\'', '\''eprintln!'\'', '\''core\:\:arch'\'', '\''alloc\:\:format!'\'', '\''std\:\:fs'\'', '\''std\:\:fs\:\:read_dir'\'', '\''std\:\:io\:\:Bytes'\'', '\''std\:\:iter\:\:Sum'\'', '\''std\:\:io\:\:error\:\:Result'\'' etc...:' \
+&& ret=0
+;;
+(man)
+_arguments "${_arguments_options[@]}" \
+'--toolchain=[Toolchain name, such as '\''stable'\'', '\''nightly'\'', or '\''1.8.0'\''. For more information see \`rustup help toolchain\`]: : ' \
+'-h[Print help]' \
+'--help[Print help]' \
+':command:' \
+&& ret=0
+;;
+(self)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+":: :_rustup__self_commands" \
+"*::: :->self" \
+&& ret=0
+
+ case $state in
+ (self)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-self-command-$line[1]:"
+ case $line[1] in
+ (update)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+'-y[]' \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(upgrade-data)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__self__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-self-help-command-$line[1]:"
+ case $line[1] in
+ (update)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(upgrade-data)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+;;
+(set)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+":: :_rustup__set_commands" \
+"*::: :->set" \
+&& ret=0
+
+ case $state in
+ (set)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-set-command-$line[1]:"
+ case $line[1] in
+ (default-host)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+':host_triple:' \
+&& ret=0
+;;
+(profile)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+':profile-name:(minimal default complete)' \
+&& ret=0
+;;
+(auto-self-update)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+':auto-self-update-mode:(enable disable check-only)' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__set__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-set-help-command-$line[1]:"
+ case $line[1] in
+ (default-host)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(profile)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(auto-self-update)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+;;
+(completions)
+_arguments "${_arguments_options[@]}" \
+'-h[Print help]' \
+'--help[Print help]' \
+'::shell:(bash elvish fish powershell zsh)' \
+'::command:(rustup cargo)' \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help_commands" \
+"*::: :->help" \
+&& ret=0
+
+ case $state in
+ (help)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-command-$line[1]:"
+ case $line[1] in
+ (dump-testament)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(show)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help__show_commands" \
+"*::: :->show" \
+&& ret=0
+
+ case $state in
+ (show)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-show-command-$line[1]:"
+ case $line[1] in
+ (active-toolchain)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(home)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(profile)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(update)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(check)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(default)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(toolchain)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help__toolchain_commands" \
+"*::: :->toolchain" \
+&& ret=0
+
+ case $state in
+ (toolchain)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-toolchain-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(install)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(link)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(target)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help__target_commands" \
+"*::: :->target" \
+&& ret=0
+
+ case $state in
+ (target)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-target-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(component)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help__component_commands" \
+"*::: :->component" \
+&& ret=0
+
+ case $state in
+ (component)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-component-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(add)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(remove)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(override)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help__override_commands" \
+"*::: :->override" \
+&& ret=0
+
+ case $state in
+ (override)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-override-command-$line[1]:"
+ case $line[1] in
+ (list)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(set)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(unset)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(run)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(which)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(doc)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(man)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(self)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help__self_commands" \
+"*::: :->self" \
+&& ret=0
+
+ case $state in
+ (self)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-self-command-$line[1]:"
+ case $line[1] in
+ (update)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(uninstall)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(upgrade-data)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(set)
+_arguments "${_arguments_options[@]}" \
+":: :_rustup__help__set_commands" \
+"*::: :->set" \
+&& ret=0
+
+ case $state in
+ (set)
+ words=($line[1] "${words[@]}")
+ (( CURRENT += 1 ))
+ curcontext="${curcontext%:*:*}:rustup-help-set-command-$line[1]:"
+ case $line[1] in
+ (default-host)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(profile)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(auto-self-update)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+(completions)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+(help)
+_arguments "${_arguments_options[@]}" \
+&& ret=0
+;;
+ esac
+ ;;
+esac
+;;
+ esac
+ ;;
+esac
+}
+
+(( $+functions[_rustup_commands] )) ||
+_rustup_commands() {
+ local commands; commands=(
+'dump-testament:Dump information about the build' \
+'show:Show the active and installed toolchains or profiles' \
+'install:Update Rust toolchains' \
+'uninstall:Uninstall Rust toolchains' \
+'update:Update Rust toolchains and rustup' \
+'check:Check for updates to Rust toolchains and rustup' \
+'default:Set the default toolchain' \
+'toolchain:Modify or query the installed toolchains' \
+'target:Modify a toolchain'\''s supported targets' \
+'component:Modify a toolchain'\''s installed components' \
+'override:Modify toolchain overrides for directories' \
+'run:Run a command with an environment configured for a given toolchain' \
+'which:Display which binary will be run for a given command' \
+'doc:Open the documentation for the current toolchain' \
+'man:View the man page for a given command' \
+'self:Modify the rustup installation' \
+'set:Alter rustup settings' \
+'completions:Generate tab-completion scripts for your shell' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup commands' commands "$@"
+}
+(( $+functions[_rustup__help__show__active-toolchain_commands] )) ||
+_rustup__help__show__active-toolchain_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help show active-toolchain commands' commands "$@"
+}
+(( $+functions[_rustup__show__active-toolchain_commands] )) ||
+_rustup__show__active-toolchain_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup show active-toolchain commands' commands "$@"
+}
+(( $+functions[_rustup__show__help__active-toolchain_commands] )) ||
+_rustup__show__help__active-toolchain_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup show help active-toolchain commands' commands "$@"
+}
+(( $+functions[_rustup__component__add_commands] )) ||
+_rustup__component__add_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup component add commands' commands "$@"
+}
+(( $+functions[_rustup__component__help__add_commands] )) ||
+_rustup__component__help__add_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup component help add commands' commands "$@"
+}
+(( $+functions[_rustup__help__component__add_commands] )) ||
+_rustup__help__component__add_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help component add commands' commands "$@"
+}
+(( $+functions[_rustup__help__target__add_commands] )) ||
+_rustup__help__target__add_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help target add commands' commands "$@"
+}
+(( $+functions[_rustup__target__add_commands] )) ||
+_rustup__target__add_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup target add commands' commands "$@"
+}
+(( $+functions[_rustup__target__help__add_commands] )) ||
+_rustup__target__help__add_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup target help add commands' commands "$@"
+}
+(( $+functions[_rustup__help__set__auto-self-update_commands] )) ||
+_rustup__help__set__auto-self-update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help set auto-self-update commands' commands "$@"
+}
+(( $+functions[_rustup__set__auto-self-update_commands] )) ||
+_rustup__set__auto-self-update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup set auto-self-update commands' commands "$@"
+}
+(( $+functions[_rustup__set__help__auto-self-update_commands] )) ||
+_rustup__set__help__auto-self-update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup set help auto-self-update commands' commands "$@"
+}
+(( $+functions[_rustup__check_commands] )) ||
+_rustup__check_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup check commands' commands "$@"
+}
+(( $+functions[_rustup__help__check_commands] )) ||
+_rustup__help__check_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help check commands' commands "$@"
+}
+(( $+functions[_rustup__completions_commands] )) ||
+_rustup__completions_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup completions commands' commands "$@"
+}
+(( $+functions[_rustup__help__completions_commands] )) ||
+_rustup__help__completions_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help completions commands' commands "$@"
+}
+(( $+functions[_rustup__component_commands] )) ||
+_rustup__component_commands() {
+ local commands; commands=(
+'list:List installed and available components' \
+'add:Add a component to a Rust toolchain' \
+'remove:Remove a component from a Rust toolchain' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup component commands' commands "$@"
+}
+(( $+functions[_rustup__help__component_commands] )) ||
+_rustup__help__component_commands() {
+ local commands; commands=(
+'list:List installed and available components' \
+'add:Add a component to a Rust toolchain' \
+'remove:Remove a component from a Rust toolchain' \
+ )
+ _describe -t commands 'rustup help component commands' commands "$@"
+}
+(( $+functions[_rustup__default_commands] )) ||
+_rustup__default_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup default commands' commands "$@"
+}
+(( $+functions[_rustup__help__default_commands] )) ||
+_rustup__help__default_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help default commands' commands "$@"
+}
+(( $+functions[_rustup__help__set__default-host_commands] )) ||
+_rustup__help__set__default-host_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help set default-host commands' commands "$@"
+}
+(( $+functions[_rustup__set__default-host_commands] )) ||
+_rustup__set__default-host_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup set default-host commands' commands "$@"
+}
+(( $+functions[_rustup__set__help__default-host_commands] )) ||
+_rustup__set__help__default-host_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup set help default-host commands' commands "$@"
+}
+(( $+functions[_rustup__doc_commands] )) ||
+_rustup__doc_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup doc commands' commands "$@"
+}
+(( $+functions[_rustup__help__doc_commands] )) ||
+_rustup__help__doc_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help doc commands' commands "$@"
+}
+(( $+functions[_rustup__dump-testament_commands] )) ||
+_rustup__dump-testament_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup dump-testament commands' commands "$@"
+}
+(( $+functions[_rustup__help__dump-testament_commands] )) ||
+_rustup__help__dump-testament_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help dump-testament commands' commands "$@"
+}
+(( $+functions[_rustup__component__help_commands] )) ||
+_rustup__component__help_commands() {
+ local commands; commands=(
+'list:List installed and available components' \
+'add:Add a component to a Rust toolchain' \
+'remove:Remove a component from a Rust toolchain' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup component help commands' commands "$@"
+}
+(( $+functions[_rustup__component__help__help_commands] )) ||
+_rustup__component__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup component help help commands' commands "$@"
+}
+(( $+functions[_rustup__help_commands] )) ||
+_rustup__help_commands() {
+ local commands; commands=(
+'dump-testament:Dump information about the build' \
+'show:Show the active and installed toolchains or profiles' \
+'install:Update Rust toolchains' \
+'uninstall:Uninstall Rust toolchains' \
+'update:Update Rust toolchains and rustup' \
+'check:Check for updates to Rust toolchains and rustup' \
+'default:Set the default toolchain' \
+'toolchain:Modify or query the installed toolchains' \
+'target:Modify a toolchain'\''s supported targets' \
+'component:Modify a toolchain'\''s installed components' \
+'override:Modify toolchain overrides for directories' \
+'run:Run a command with an environment configured for a given toolchain' \
+'which:Display which binary will be run for a given command' \
+'doc:Open the documentation for the current toolchain' \
+'man:View the man page for a given command' \
+'self:Modify the rustup installation' \
+'set:Alter rustup settings' \
+'completions:Generate tab-completion scripts for your shell' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup help commands' commands "$@"
+}
+(( $+functions[_rustup__help__help_commands] )) ||
+_rustup__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help help commands' commands "$@"
+}
+(( $+functions[_rustup__override__help_commands] )) ||
+_rustup__override__help_commands() {
+ local commands; commands=(
+'list:List directory toolchain overrides' \
+'set:Set the override toolchain for a directory' \
+'unset:Remove the override toolchain for a directory' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup override help commands' commands "$@"
+}
+(( $+functions[_rustup__override__help__help_commands] )) ||
+_rustup__override__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup override help help commands' commands "$@"
+}
+(( $+functions[_rustup__self__help_commands] )) ||
+_rustup__self__help_commands() {
+ local commands; commands=(
+'update:Download and install updates to rustup' \
+'uninstall:Uninstall rustup.' \
+'upgrade-data:Upgrade the internal data format.' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup self help commands' commands "$@"
+}
+(( $+functions[_rustup__self__help__help_commands] )) ||
+_rustup__self__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup self help help commands' commands "$@"
+}
+(( $+functions[_rustup__set__help_commands] )) ||
+_rustup__set__help_commands() {
+ local commands; commands=(
+'default-host:The triple used to identify toolchains when not specified' \
+'profile:The default components installed with a toolchain' \
+'auto-self-update:The rustup auto self update mode' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup set help commands' commands "$@"
+}
+(( $+functions[_rustup__set__help__help_commands] )) ||
+_rustup__set__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup set help help commands' commands "$@"
+}
+(( $+functions[_rustup__show__help_commands] )) ||
+_rustup__show__help_commands() {
+ local commands; commands=(
+'active-toolchain:Show the active toolchain' \
+'home:Display the computed value of RUSTUP_HOME' \
+'profile:Show the default profile used for the \`rustup install\` command' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup show help commands' commands "$@"
+}
+(( $+functions[_rustup__show__help__help_commands] )) ||
+_rustup__show__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup show help help commands' commands "$@"
+}
+(( $+functions[_rustup__target__help_commands] )) ||
+_rustup__target__help_commands() {
+ local commands; commands=(
+'list:List installed and available targets' \
+'add:Add a target to a Rust toolchain' \
+'remove:Remove a target from a Rust toolchain' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup target help commands' commands "$@"
+}
+(( $+functions[_rustup__target__help__help_commands] )) ||
+_rustup__target__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup target help help commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__help_commands] )) ||
+_rustup__toolchain__help_commands() {
+ local commands; commands=(
+'list:List installed toolchains' \
+'install:Install or update a given toolchain' \
+'uninstall:Uninstall a toolchain' \
+'link:Create a custom toolchain by symlinking to a directory' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup toolchain help commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__help__help_commands] )) ||
+_rustup__toolchain__help__help_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain help help commands' commands "$@"
+}
+(( $+functions[_rustup__help__show__home_commands] )) ||
+_rustup__help__show__home_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help show home commands' commands "$@"
+}
+(( $+functions[_rustup__show__help__home_commands] )) ||
+_rustup__show__help__home_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup show help home commands' commands "$@"
+}
+(( $+functions[_rustup__show__home_commands] )) ||
+_rustup__show__home_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup show home commands' commands "$@"
+}
+(( $+functions[_rustup__help__install_commands] )) ||
+_rustup__help__install_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help install commands' commands "$@"
+}
+(( $+functions[_rustup__help__toolchain__install_commands] )) ||
+_rustup__help__toolchain__install_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help toolchain install commands' commands "$@"
+}
+(( $+functions[_rustup__install_commands] )) ||
+_rustup__install_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup install commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__help__install_commands] )) ||
+_rustup__toolchain__help__install_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain help install commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__install_commands] )) ||
+_rustup__toolchain__install_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain install commands' commands "$@"
+}
+(( $+functions[_rustup__help__toolchain__link_commands] )) ||
+_rustup__help__toolchain__link_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help toolchain link commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__help__link_commands] )) ||
+_rustup__toolchain__help__link_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain help link commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__link_commands] )) ||
+_rustup__toolchain__link_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain link commands' commands "$@"
+}
+(( $+functions[_rustup__component__help__list_commands] )) ||
+_rustup__component__help__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup component help list commands' commands "$@"
+}
+(( $+functions[_rustup__component__list_commands] )) ||
+_rustup__component__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup component list commands' commands "$@"
+}
+(( $+functions[_rustup__help__component__list_commands] )) ||
+_rustup__help__component__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help component list commands' commands "$@"
+}
+(( $+functions[_rustup__help__override__list_commands] )) ||
+_rustup__help__override__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help override list commands' commands "$@"
+}
+(( $+functions[_rustup__help__target__list_commands] )) ||
+_rustup__help__target__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help target list commands' commands "$@"
+}
+(( $+functions[_rustup__help__toolchain__list_commands] )) ||
+_rustup__help__toolchain__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help toolchain list commands' commands "$@"
+}
+(( $+functions[_rustup__override__help__list_commands] )) ||
+_rustup__override__help__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup override help list commands' commands "$@"
+}
+(( $+functions[_rustup__override__list_commands] )) ||
+_rustup__override__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup override list commands' commands "$@"
+}
+(( $+functions[_rustup__target__help__list_commands] )) ||
+_rustup__target__help__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup target help list commands' commands "$@"
+}
+(( $+functions[_rustup__target__list_commands] )) ||
+_rustup__target__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup target list commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__help__list_commands] )) ||
+_rustup__toolchain__help__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain help list commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__list_commands] )) ||
+_rustup__toolchain__list_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain list commands' commands "$@"
+}
+(( $+functions[_rustup__help__man_commands] )) ||
+_rustup__help__man_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help man commands' commands "$@"
+}
+(( $+functions[_rustup__man_commands] )) ||
+_rustup__man_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup man commands' commands "$@"
+}
+(( $+functions[_rustup__help__override_commands] )) ||
+_rustup__help__override_commands() {
+ local commands; commands=(
+'list:List directory toolchain overrides' \
+'set:Set the override toolchain for a directory' \
+'unset:Remove the override toolchain for a directory' \
+ )
+ _describe -t commands 'rustup help override commands' commands "$@"
+}
+(( $+functions[_rustup__override_commands] )) ||
+_rustup__override_commands() {
+ local commands; commands=(
+'list:List directory toolchain overrides' \
+'set:Set the override toolchain for a directory' \
+'unset:Remove the override toolchain for a directory' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup override commands' commands "$@"
+}
+(( $+functions[_rustup__help__set__profile_commands] )) ||
+_rustup__help__set__profile_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help set profile commands' commands "$@"
+}
+(( $+functions[_rustup__help__show__profile_commands] )) ||
+_rustup__help__show__profile_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help show profile commands' commands "$@"
+}
+(( $+functions[_rustup__set__help__profile_commands] )) ||
+_rustup__set__help__profile_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup set help profile commands' commands "$@"
+}
+(( $+functions[_rustup__set__profile_commands] )) ||
+_rustup__set__profile_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup set profile commands' commands "$@"
+}
+(( $+functions[_rustup__show__help__profile_commands] )) ||
+_rustup__show__help__profile_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup show help profile commands' commands "$@"
+}
+(( $+functions[_rustup__show__profile_commands] )) ||
+_rustup__show__profile_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup show profile commands' commands "$@"
+}
+(( $+functions[_rustup__component__help__remove_commands] )) ||
+_rustup__component__help__remove_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup component help remove commands' commands "$@"
+}
+(( $+functions[_rustup__component__remove_commands] )) ||
+_rustup__component__remove_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup component remove commands' commands "$@"
+}
+(( $+functions[_rustup__help__component__remove_commands] )) ||
+_rustup__help__component__remove_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help component remove commands' commands "$@"
+}
+(( $+functions[_rustup__help__target__remove_commands] )) ||
+_rustup__help__target__remove_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help target remove commands' commands "$@"
+}
+(( $+functions[_rustup__target__help__remove_commands] )) ||
+_rustup__target__help__remove_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup target help remove commands' commands "$@"
+}
+(( $+functions[_rustup__target__remove_commands] )) ||
+_rustup__target__remove_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup target remove commands' commands "$@"
+}
+(( $+functions[_rustup__help__run_commands] )) ||
+_rustup__help__run_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help run commands' commands "$@"
+}
+(( $+functions[_rustup__run_commands] )) ||
+_rustup__run_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup run commands' commands "$@"
+}
+(( $+functions[_rustup__help__self_commands] )) ||
+_rustup__help__self_commands() {
+ local commands; commands=(
+'update:Download and install updates to rustup' \
+'uninstall:Uninstall rustup.' \
+'upgrade-data:Upgrade the internal data format.' \
+ )
+ _describe -t commands 'rustup help self commands' commands "$@"
+}
+(( $+functions[_rustup__self_commands] )) ||
+_rustup__self_commands() {
+ local commands; commands=(
+'update:Download and install updates to rustup' \
+'uninstall:Uninstall rustup.' \
+'upgrade-data:Upgrade the internal data format.' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup self commands' commands "$@"
+}
+(( $+functions[_rustup__help__override__set_commands] )) ||
+_rustup__help__override__set_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help override set commands' commands "$@"
+}
+(( $+functions[_rustup__help__set_commands] )) ||
+_rustup__help__set_commands() {
+ local commands; commands=(
+'default-host:The triple used to identify toolchains when not specified' \
+'profile:The default components installed with a toolchain' \
+'auto-self-update:The rustup auto self update mode' \
+ )
+ _describe -t commands 'rustup help set commands' commands "$@"
+}
+(( $+functions[_rustup__override__help__set_commands] )) ||
+_rustup__override__help__set_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup override help set commands' commands "$@"
+}
+(( $+functions[_rustup__override__set_commands] )) ||
+_rustup__override__set_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup override set commands' commands "$@"
+}
+(( $+functions[_rustup__set_commands] )) ||
+_rustup__set_commands() {
+ local commands; commands=(
+'default-host:The triple used to identify toolchains when not specified' \
+'profile:The default components installed with a toolchain' \
+'auto-self-update:The rustup auto self update mode' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup set commands' commands "$@"
+}
+(( $+functions[_rustup__help__show_commands] )) ||
+_rustup__help__show_commands() {
+ local commands; commands=(
+'active-toolchain:Show the active toolchain' \
+'home:Display the computed value of RUSTUP_HOME' \
+'profile:Show the default profile used for the \`rustup install\` command' \
+ )
+ _describe -t commands 'rustup help show commands' commands "$@"
+}
+(( $+functions[_rustup__show_commands] )) ||
+_rustup__show_commands() {
+ local commands; commands=(
+'active-toolchain:Show the active toolchain' \
+'home:Display the computed value of RUSTUP_HOME' \
+'profile:Show the default profile used for the \`rustup install\` command' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup show commands' commands "$@"
+}
+(( $+functions[_rustup__help__target_commands] )) ||
+_rustup__help__target_commands() {
+ local commands; commands=(
+'list:List installed and available targets' \
+'add:Add a target to a Rust toolchain' \
+'remove:Remove a target from a Rust toolchain' \
+ )
+ _describe -t commands 'rustup help target commands' commands "$@"
+}
+(( $+functions[_rustup__target_commands] )) ||
+_rustup__target_commands() {
+ local commands; commands=(
+'list:List installed and available targets' \
+'add:Add a target to a Rust toolchain' \
+'remove:Remove a target from a Rust toolchain' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup target commands' commands "$@"
+}
+(( $+functions[_rustup__help__toolchain_commands] )) ||
+_rustup__help__toolchain_commands() {
+ local commands; commands=(
+'list:List installed toolchains' \
+'install:Install or update a given toolchain' \
+'uninstall:Uninstall a toolchain' \
+'link:Create a custom toolchain by symlinking to a directory' \
+ )
+ _describe -t commands 'rustup help toolchain commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain_commands] )) ||
+_rustup__toolchain_commands() {
+ local commands; commands=(
+'list:List installed toolchains' \
+'install:Install or update a given toolchain' \
+'uninstall:Uninstall a toolchain' \
+'link:Create a custom toolchain by symlinking to a directory' \
+'help:Print this message or the help of the given subcommand(s)' \
+ )
+ _describe -t commands 'rustup toolchain commands' commands "$@"
+}
+(( $+functions[_rustup__help__self__uninstall_commands] )) ||
+_rustup__help__self__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help self uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__help__toolchain__uninstall_commands] )) ||
+_rustup__help__toolchain__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help toolchain uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__help__uninstall_commands] )) ||
+_rustup__help__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__self__help__uninstall_commands] )) ||
+_rustup__self__help__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup self help uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__self__uninstall_commands] )) ||
+_rustup__self__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup self uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__help__uninstall_commands] )) ||
+_rustup__toolchain__help__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain help uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__toolchain__uninstall_commands] )) ||
+_rustup__toolchain__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup toolchain uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__uninstall_commands] )) ||
+_rustup__uninstall_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup uninstall commands' commands "$@"
+}
+(( $+functions[_rustup__help__override__unset_commands] )) ||
+_rustup__help__override__unset_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help override unset commands' commands "$@"
+}
+(( $+functions[_rustup__override__help__unset_commands] )) ||
+_rustup__override__help__unset_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup override help unset commands' commands "$@"
+}
+(( $+functions[_rustup__override__unset_commands] )) ||
+_rustup__override__unset_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup override unset commands' commands "$@"
+}
+(( $+functions[_rustup__help__self__update_commands] )) ||
+_rustup__help__self__update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help self update commands' commands "$@"
+}
+(( $+functions[_rustup__help__update_commands] )) ||
+_rustup__help__update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help update commands' commands "$@"
+}
+(( $+functions[_rustup__self__help__update_commands] )) ||
+_rustup__self__help__update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup self help update commands' commands "$@"
+}
+(( $+functions[_rustup__self__update_commands] )) ||
+_rustup__self__update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup self update commands' commands "$@"
+}
+(( $+functions[_rustup__update_commands] )) ||
+_rustup__update_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup update commands' commands "$@"
+}
+(( $+functions[_rustup__help__self__upgrade-data_commands] )) ||
+_rustup__help__self__upgrade-data_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help self upgrade-data commands' commands "$@"
+}
+(( $+functions[_rustup__self__help__upgrade-data_commands] )) ||
+_rustup__self__help__upgrade-data_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup self help upgrade-data commands' commands "$@"
+}
+(( $+functions[_rustup__self__upgrade-data_commands] )) ||
+_rustup__self__upgrade-data_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup self upgrade-data commands' commands "$@"
+}
+(( $+functions[_rustup__help__which_commands] )) ||
+_rustup__help__which_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup help which commands' commands "$@"
+}
+(( $+functions[_rustup__which_commands] )) ||
+_rustup__which_commands() {
+ local commands; commands=()
+ _describe -t commands 'rustup which commands' commands "$@"
+}
+
+if [ "$funcstack[1]" = "_rustup" ]; then
+ _rustup "$@"
+else
+ compdef _rustup rustup
+fi
diff --git a/.zfunc/osc7_prompt b/.zfunc/osc7_prompt
deleted file mode 100644
index 28d7a42..0000000
--- a/.zfunc/osc7_prompt
+++ /dev/null
@@ -1,5 +0,0 @@
-#!zsh
-emulate -L zsh
-
-printf "\e]7;file://%s%s\e\\" "${HOSTNAME}" "$(/usr/lib/vte-urlencode-cwd)"
-
diff --git a/.zprofile b/.zprofile
index 4cb244b..31e6329 100644
--- a/.zprofile
+++ b/.zprofile
@@ -1,11 +1,21 @@
typeset -U PATH path
-path=( $HOME/.local/bin $HOME/.local/opt/nvim-linux64/bin $path )
+path=( $HOME/.local/bin $path )
if test -d /usr/lib/flatpak-xdg-utils/
then
path=( /usr/lib/flatpak-xdg-utils $path )
fi
+if test -d "$HOME/.local/opt/go/bin"
+then
+ path=( "$HOME/.local/opt/go/bin" $path )
+fi
+
+if test -d "$HOME/go/bin"
+then
+ path=( "$HOME/go/bin" $path )
+fi
+
export PATH
diff --git a/.zshenv b/.zshenv
index 9caeaf7..ce26b17 100644
--- a/.zshenv
+++ b/.zshenv
@@ -25,9 +25,13 @@ then
export PAGER=more
fi
- NULLCMD=${PAGER:-cat}
- READNULLCMD=${PAGER:-more}
-. "$HOME/.cargo/env"
+NULLCMD=${PAGER:-cat}
+READNULLCMD=${PAGER:-more}
+
+if test -f "$HOME"/.cargo/env
+then
+ . "$HOME/.cargo/env"
+fi
export XDG_CONFIG_HOME="$HOME/.config/"
export XDG_CACHE_HOME="$HOME/.cache/"
diff --git a/.zshrc b/.zshrc
index ddb3011..2e6eaaf 100644
--- a/.zshrc
+++ b/.zshrc
@@ -36,6 +36,8 @@ zstyle ':completion:*' rehash true
zstyle ':completion:*:*:-command-:*:*' group-order alias builtins functions commands
compinit
+compdef dotfiles=git
+
bindkey -M menuselect 'h' vi-backward-char
bindkey -M menuselect 'k' vi-up-line-or-history
bindkey -M menuselect 'l' vi-forward-char
@@ -43,7 +45,6 @@ bindkey -M menuselect 'j' vi-down-line-or-history
promptinit
prompt marc
-add-zsh-hook -Uz precmd osc7_prompt
setopt no_clobber
setopt extendedglob