├── Makefile ├── README.md ├── configure.cache-embedded ├── tests ├── seteuser.c ├── unpriv_env.sh └── zsh.plist ├── zprofile ├── zsh.plist ├── zsh ├── .cvsignore ├── .distfiles ├── .editorconfig ├── .gitignore.dist ├── .preconfig ├── ChangeLog ├── Completion │ ├── .cvsignore │ ├── .distfiles │ ├── AIX │ │ ├── .distfiles │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _floppy │ │ │ ├── _lscfg │ │ │ ├── _lsdev │ │ │ ├── _lslv │ │ │ ├── _lspv │ │ │ ├── _lsvg │ │ │ └── _smit │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _logical_volumes │ │ │ ├── _object_classes │ │ │ ├── _physical_volumes │ │ │ └── _volume_groups │ ├── BSD │ │ ├── .distfiles │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _bsd_pkg │ │ │ ├── _bsdconfig │ │ │ ├── _bsdinstall │ │ │ ├── _chflags │ │ │ ├── _csup │ │ │ ├── _cu │ │ │ ├── _cvsup │ │ │ ├── _fetch │ │ │ ├── _freebsd-update │ │ │ ├── _fstat │ │ │ ├── _fw_update │ │ │ ├── _gstat │ │ │ ├── _ipfw │ │ │ ├── _jail │ │ │ ├── _jexec │ │ │ ├── _jls │ │ │ ├── _jot │ │ │ ├── _kdump │ │ │ ├── _kld │ │ │ ├── _ktrace │ │ │ ├── _ldap │ │ │ ├── _mixerctl │ │ │ ├── _pfctl │ │ │ ├── _pkgin │ │ │ ├── _portaudit │ │ │ ├── _portlint │ │ │ ├── _portmaster │ │ │ ├── _portsnap │ │ │ ├── _powerd │ │ │ ├── _procstat │ │ │ ├── _rcctl │ │ │ ├── _signify │ │ │ ├── _sockstat │ │ │ ├── _sysclean │ │ │ ├── _sysmerge │ │ │ ├── _syspatch │ │ │ ├── _sysrc │ │ │ ├── _systat │ │ │ ├── _sysupgrade │ │ │ ├── _usbconfig │ │ │ ├── _vmctl │ │ │ └── _watch-snoop │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _bsd_disks │ │ │ ├── _fbsd_architectures │ │ │ ├── _fbsd_device_types │ │ │ ├── _file_flags │ │ │ ├── _jails │ │ │ ├── _ktrace_points │ │ │ ├── _login_classes │ │ │ ├── _nbsd_architectures │ │ │ ├── _obsd_architectures │ │ │ ├── _routing_domains │ │ │ └── _routing_tables │ ├── Base │ │ ├── .distfiles │ │ ├── Completer │ │ │ ├── .distfiles │ │ │ ├── _all_matches │ │ │ ├── _approximate │ │ │ ├── _complete │ │ │ ├── _correct │ │ │ ├── _expand │ │ │ ├── _expand_alias │ │ │ ├── _extensions │ │ │ ├── _external_pwds │ │ │ ├── _history │ │ │ ├── _ignored │ │ │ ├── _list │ │ │ ├── _match │ │ │ ├── _menu │ │ │ ├── _oldlist │ │ │ ├── _prefix │ │ │ └── _user_expand │ │ ├── Core │ │ │ ├── .distfiles │ │ │ ├── _all_labels │ │ │ ├── _description │ │ │ ├── _dispatch │ │ │ ├── _main_complete │ │ │ ├── _message │ │ │ ├── _next_label │ │ │ ├── _normal │ │ │ ├── _requested │ │ │ ├── _setup │ │ │ ├── _tags │ │ │ └── _wanted │ │ ├── Utility │ │ │ ├── .distfiles │ │ │ ├── _alternative │ │ │ ├── _arg_compile │ │ │ ├── _arguments │ │ │ ├── _cache_invalid │ │ │ ├── _call_function │ │ │ ├── _call_program │ │ │ ├── _combination │ │ │ ├── _comp_locale │ │ │ ├── _complete_help_generic │ │ │ ├── _describe │ │ │ ├── _guard │ │ │ ├── _multi_parts │ │ │ ├── _nothing │ │ │ ├── _numbers │ │ │ ├── _pick_variant │ │ │ ├── _regex_arguments │ │ │ ├── _regex_words │ │ │ ├── _retrieve_cache │ │ │ ├── _sep_parts │ │ │ ├── _sequence │ │ │ ├── _set_command │ │ │ ├── _store_cache │ │ │ ├── _sub_commands │ │ │ └── _values │ │ └── Widget │ │ │ ├── .distfiles │ │ │ ├── _bash_completions │ │ │ ├── _complete_debug │ │ │ ├── _complete_help │ │ │ ├── _complete_tag │ │ │ ├── _correct_filename │ │ │ ├── _correct_word │ │ │ ├── _expand_word │ │ │ ├── _generic │ │ │ ├── _history_complete_word │ │ │ ├── _most_recent_file │ │ │ ├── _next_tags │ │ │ └── _read_comp │ ├── Cygwin │ │ └── Command │ │ │ ├── .distfiles │ │ │ ├── _cygcheck │ │ │ ├── _cygpath │ │ │ ├── _cygrunsrv │ │ │ ├── _cygserver │ │ │ ├── _cygstart │ │ │ ├── _dumper │ │ │ ├── _getclip │ │ │ ├── _mkshortcut │ │ │ ├── _mkzsh │ │ │ ├── _pscp │ │ │ ├── _putclip │ │ │ └── _readshortcut │ ├── Darwin │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _caffeinate │ │ │ ├── _defaults │ │ │ ├── _fink │ │ │ ├── _fs_usage │ │ │ ├── _hdiutil │ │ │ ├── _mdfind │ │ │ ├── _mdls │ │ │ ├── _mdutil │ │ │ ├── _networksetup │ │ │ ├── _nvram │ │ │ ├── _open │ │ │ ├── _osascript │ │ │ ├── _otool │ │ │ ├── _pbcopy │ │ │ ├── _plutil │ │ │ ├── _qtplay │ │ │ ├── _say │ │ │ ├── _sc_usage │ │ │ ├── _scselect │ │ │ ├── _scutil │ │ │ ├── _softwareupdate │ │ │ ├── _sw_vers │ │ │ ├── _system_profiler │ │ │ ├── _trash │ │ │ └── _xcode-select │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _mac_applications │ │ │ ├── _mac_files_for_application │ │ │ └── _retrieve_mac_apps │ ├── Debian │ │ ├── .distfiles │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _a2utils │ │ │ ├── _apt │ │ │ ├── _apt-file │ │ │ ├── _apt-move │ │ │ ├── _apt-show-versions │ │ │ ├── _aptitude │ │ │ ├── _auto-apt │ │ │ ├── _axi-cache │ │ │ ├── _bts │ │ │ ├── _bug │ │ │ ├── _cdbs-edit-patch │ │ │ ├── _dak │ │ │ ├── _dchroot │ │ │ ├── _dchroot-dsa │ │ │ ├── _dcut │ │ │ ├── _debchange │ │ │ ├── _debcheckout │ │ │ ├── _debdiff │ │ │ ├── _debfoster │ │ │ ├── _deborphan │ │ │ ├── _debsign │ │ │ ├── _debsnap │ │ │ ├── _debuild │ │ │ ├── _dlocate │ │ │ ├── _dpatch-edit-patch │ │ │ ├── _dpkg │ │ │ ├── _dpkg-buildpackage │ │ │ ├── _dpkg-cross │ │ │ ├── _dpkg-repack │ │ │ ├── _dpkg_source │ │ │ ├── _dput │ │ │ ├── _dscverify │ │ │ ├── _dupload │ │ │ ├── _git-buildpackage │ │ │ ├── _grep-excuses │ │ │ ├── _invoke-rc.d │ │ │ ├── _lighttpd │ │ │ ├── _lintian │ │ │ ├── _madison │ │ │ ├── _make-kpkg │ │ │ ├── _members │ │ │ ├── _mergechanges │ │ │ ├── _module-assistant │ │ │ ├── _pbuilder │ │ │ ├── _piuparts │ │ │ ├── _reprepro │ │ │ ├── _sbuild │ │ │ ├── _schroot │ │ │ ├── _svn-buildpackage │ │ │ ├── _toolchain-source │ │ │ ├── _update-alternatives │ │ │ ├── _update-rc.d │ │ │ ├── _uscan │ │ │ ├── _vim-addons │ │ │ ├── _wajig │ │ │ └── _wanna-build │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _deb_architectures │ │ │ ├── _deb_codenames │ │ │ ├── _deb_files │ │ │ ├── _deb_packages │ │ │ └── _debbugs_bugnumber │ ├── Linux │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _acpi │ │ │ ├── _acpitool │ │ │ ├── _alsa-utils │ │ │ ├── _analyseplugin │ │ │ ├── _basenc │ │ │ ├── _brctl │ │ │ ├── _btrfs │ │ │ ├── _chattr │ │ │ ├── _chcon │ │ │ ├── _choom │ │ │ ├── _chrt │ │ │ ├── _cpupower │ │ │ ├── _cryptsetup │ │ │ ├── _dkms │ │ │ ├── _e2label │ │ │ ├── _ethtool │ │ │ ├── _findmnt │ │ │ ├── _free │ │ │ ├── _fusermount │ │ │ ├── _gpasswd │ │ │ ├── _htop │ │ │ ├── _iconvconfig │ │ │ ├── _ionice │ │ │ ├── _ipset │ │ │ ├── _iptables │ │ │ ├── _iwconfig │ │ │ ├── _kpartx │ │ │ ├── _losetup │ │ │ ├── _lsattr │ │ │ ├── _lsblk │ │ │ ├── _lsns │ │ │ ├── _lsusb │ │ │ ├── _ltrace │ │ │ ├── _mat │ │ │ ├── _mat2 │ │ │ ├── _mdadm │ │ │ ├── _mii-tool │ │ │ ├── _modutils │ │ │ ├── _mondo │ │ │ ├── _networkmanager │ │ │ ├── _nsenter │ │ │ ├── _opkg │ │ │ ├── _perf │ │ │ ├── _pidof │ │ │ ├── _pkgtool │ │ │ ├── _pmap │ │ │ ├── _qdbus │ │ │ ├── _schedtool │ │ │ ├── _setpriv │ │ │ ├── _setsid │ │ │ ├── _slabtop │ │ │ ├── _ss │ │ │ ├── _sshfs │ │ │ ├── _strace │ │ │ ├── _sysstat │ │ │ ├── _tload │ │ │ ├── _tpb │ │ │ ├── _tracepath │ │ │ ├── _tune2fs │ │ │ ├── _uml │ │ │ ├── _unshare │ │ │ ├── _valgrind │ │ │ ├── _vserver │ │ │ ├── _wipefs │ │ │ └── _wpa_cli │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _capabilities │ │ │ ├── _fuse_arguments │ │ │ ├── _fuse_values │ │ │ ├── _selinux_contexts │ │ │ ├── _selinux_roles │ │ │ ├── _selinux_types │ │ │ ├── _selinux_users │ │ │ └── _wakeup_capable_devices │ ├── Mandriva │ │ ├── .distfiles │ │ └── Command │ │ │ ├── .distfiles │ │ │ ├── _rebootin │ │ │ └── _urpmi │ ├── README │ ├── Redhat │ │ ├── .distfiles │ │ └── Command │ │ │ ├── .distfiles │ │ │ ├── _dnf │ │ │ ├── _rpm │ │ │ ├── _scl │ │ │ └── _yum │ ├── Solaris │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _beadm │ │ │ ├── _coreadm │ │ │ ├── _dhcpinfo │ │ │ ├── _dladm │ │ │ ├── _dtrace │ │ │ ├── _dumpadm │ │ │ ├── _flowadm │ │ │ ├── _fmadm │ │ │ ├── _inetadm │ │ │ ├── _ipadm │ │ │ ├── _pfexec │ │ │ ├── _pkg5 │ │ │ ├── _prstat │ │ │ ├── _ptree │ │ │ ├── _savecore │ │ │ ├── _snoop │ │ │ ├── _svcadm │ │ │ ├── _svccfg │ │ │ ├── _svcprop │ │ │ ├── _svcs │ │ │ ├── _zlogin │ │ │ └── _zoneadm │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _be_name │ │ │ ├── _svcs_fmri │ │ │ └── _zones │ ├── Unix │ │ ├── .distfiles │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _a2ps │ │ │ ├── _aap │ │ │ ├── _abcde │ │ │ ├── _ack │ │ │ ├── _adb │ │ │ ├── _ansible │ │ │ ├── _ant │ │ │ ├── _antiword │ │ │ ├── _apachectl │ │ │ ├── _apm │ │ │ ├── _arp │ │ │ ├── _arping │ │ │ ├── _asciidoctor │ │ │ ├── _asciinema │ │ │ ├── _at │ │ │ ├── _attr │ │ │ ├── _augeas │ │ │ ├── _avahi │ │ │ ├── _awk │ │ │ ├── _base64 │ │ │ ├── _basename │ │ │ ├── _bash │ │ │ ├── _baz │ │ │ ├── _beep │ │ │ ├── _bibtex │ │ │ ├── _bison │ │ │ ├── _bittorrent │ │ │ ├── _bogofilter │ │ │ ├── _bpython │ │ │ ├── _bzip2 │ │ │ ├── _bzr │ │ │ ├── _cabal │ │ │ ├── _cal │ │ │ ├── _calendar │ │ │ ├── _cat │ │ │ ├── _ccal │ │ │ ├── _cdcd │ │ │ ├── _cdrdao │ │ │ ├── _cdrecord │ │ │ ├── _chkconfig │ │ │ ├── _chmod │ │ │ ├── _chown │ │ │ ├── _chroot │ │ │ ├── _chsh │ │ │ ├── _cksum │ │ │ ├── _clay │ │ │ ├── _cmp │ │ │ ├── _column │ │ │ ├── _comm │ │ │ ├── _composer │ │ │ ├── _compress │ │ │ ├── _configure │ │ │ ├── _cowsay │ │ │ ├── _cp │ │ │ ├── _cpio │ │ │ ├── _cplay │ │ │ ├── _crontab │ │ │ ├── _cscope │ │ │ ├── _csplit │ │ │ ├── _cssh │ │ │ ├── _ctags │ │ │ ├── _curl │ │ │ ├── _cut │ │ │ ├── _cvs │ │ │ ├── _darcs │ │ │ ├── _date │ │ │ ├── _dbus │ │ │ ├── _dconf │ │ │ ├── _dd │ │ │ ├── _devtodo │ │ │ ├── _df │ │ │ ├── _dhclient │ │ │ ├── _dict │ │ │ ├── _diff │ │ │ ├── _diff3 │ │ │ ├── _diffstat │ │ │ ├── _dig │ │ │ ├── _django │ │ │ ├── _dmesg │ │ │ ├── _dmidecode │ │ │ ├── _doas │ │ │ ├── _dos2unix │ │ │ ├── _drill │ │ │ ├── _dropbox │ │ │ ├── _dsh │ │ │ ├── _dtruss │ │ │ ├── _du │ │ │ ├── _dvi │ │ │ ├── _ecasound │ │ │ ├── _ed │ │ │ ├── _elfdump │ │ │ ├── _elinks │ │ │ ├── _enscript │ │ │ ├── _entr │ │ │ ├── _env │ │ │ ├── _espeak │ │ │ ├── _etags │ │ │ ├── _fakeroot │ │ │ ├── _feh │ │ │ ├── _fetchmail │ │ │ ├── _ffmpeg │ │ │ ├── _figlet │ │ │ ├── _find │ │ │ ├── _finger │ │ │ ├── _flac │ │ │ ├── _flex │ │ │ ├── _fmt │ │ │ ├── _fold │ │ │ ├── _fortune │ │ │ ├── _fsh │ │ │ ├── _fuser │ │ │ ├── _gcc │ │ │ ├── _gcore │ │ │ ├── _gdb │ │ │ ├── _gem │ │ │ ├── _genisoimage │ │ │ ├── _getconf │ │ │ ├── _getent │ │ │ ├── _getfacl │ │ │ ├── _getmail │ │ │ ├── _getopt │ │ │ ├── _ghostscript │ │ │ ├── _git │ │ │ ├── _global │ │ │ ├── _gnu_generic │ │ │ ├── _gnupod │ │ │ ├── _gnutls │ │ │ ├── _go │ │ │ ├── _gpg │ │ │ ├── _gphoto2 │ │ │ ├── _gprof │ │ │ ├── _gradle │ │ │ ├── _graphicsmagick │ │ │ ├── _grep │ │ │ ├── _groff │ │ │ ├── _growisofs │ │ │ ├── _gsettings │ │ │ ├── _guilt │ │ │ ├── _gzip │ │ │ ├── _head │ │ │ ├── _hexdump │ │ │ ├── _host │ │ │ ├── _hostname │ │ │ ├── _iconv │ │ │ ├── _id │ │ │ ├── _ifconfig │ │ │ ├── _iftop │ │ │ ├── _imagemagick │ │ │ ├── _init_d │ │ │ ├── _initctl │ │ │ ├── _install │ │ │ ├── _iostat │ │ │ ├── _ip │ │ │ ├── _ipsec │ │ │ ├── _irssi │ │ │ ├── _ispell │ │ │ ├── _java │ │ │ ├── _joe │ │ │ ├── _join │ │ │ ├── _jq │ │ │ ├── _killall │ │ │ ├── _knock │ │ │ ├── _kvno │ │ │ ├── _last │ │ │ ├── _ldconfig │ │ │ ├── _ldd │ │ │ ├── _less │ │ │ ├── _lha │ │ │ ├── _libvirt │ │ │ ├── _links │ │ │ ├── _lldb │ │ │ ├── _ln │ │ │ ├── _loadkeys │ │ │ ├── _locale │ │ │ ├── _localedef │ │ │ ├── _locate │ │ │ ├── _logger │ │ │ ├── _look │ │ │ ├── _lp │ │ │ ├── _ls │ │ │ ├── _lsof │ │ │ ├── _lua │ │ │ ├── _luarocks │ │ │ ├── _lynx │ │ │ ├── _lz4 │ │ │ ├── _lzop │ │ │ ├── _mail │ │ │ ├── _make │ │ │ ├── _man │ │ │ ├── _md5sum │ │ │ ├── _mencal │ │ │ ├── _mh │ │ │ ├── _mkdir │ │ │ ├── _mkfifo │ │ │ ├── _mknod │ │ │ ├── _mktemp │ │ │ ├── _module │ │ │ ├── _monotone │ │ │ ├── _moosic │ │ │ ├── _mosh │ │ │ ├── _mount │ │ │ ├── _mpc │ │ │ ├── _mt │ │ │ ├── _mtools │ │ │ ├── _mtr │ │ │ ├── _mutt │ │ │ ├── _mv │ │ │ ├── _myrepos │ │ │ ├── _mysql_utils │ │ │ ├── _mysqldiff │ │ │ ├── _ncftp │ │ │ ├── _netcat │ │ │ ├── _netstat │ │ │ ├── _nginx │ │ │ ├── _ngrep │ │ │ ├── _nice │ │ │ ├── _nkf │ │ │ ├── _nl │ │ │ ├── _nm │ │ │ ├── _nmap │ │ │ ├── _npm │ │ │ ├── _nslookup │ │ │ ├── _numfmt │ │ │ ├── _objdump │ │ │ ├── _od │ │ │ ├── _openstack │ │ │ ├── _opustools │ │ │ ├── _pack │ │ │ ├── _pandoc │ │ │ ├── _paste │ │ │ ├── _patch │ │ │ ├── _patchutils │ │ │ ├── _pax │ │ │ ├── _pbm │ │ │ ├── _perforce │ │ │ ├── _perl │ │ │ ├── _perldoc │ │ │ ├── _pgrep │ │ │ ├── _php │ │ │ ├── _picocom │ │ │ ├── _pine │ │ │ ├── _ping │ │ │ ├── _pip │ │ │ ├── _pkg-config │ │ │ ├── _pkg_instance │ │ │ ├── _pkgadd │ │ │ ├── _pkginfo │ │ │ ├── _pkgrm │ │ │ ├── _pon │ │ │ ├── _postfix │ │ │ ├── _postgresql │ │ │ ├── _pr │ │ │ ├── _printenv │ │ │ ├── _prove │ │ │ ├── _ps │ │ │ ├── _psutils │ │ │ ├── _ptx │ │ │ ├── _pump │ │ │ ├── _pv │ │ │ ├── _pwgen │ │ │ ├── _pydoc │ │ │ ├── _python │ │ │ ├── _qemu │ │ │ ├── _quilt │ │ │ ├── _rake │ │ │ ├── _ranlib │ │ │ ├── _rar │ │ │ ├── _rclone │ │ │ ├── _rcs │ │ │ ├── _readelf │ │ │ ├── _readlink │ │ │ ├── _renice │ │ │ ├── _ri │ │ │ ├── _rlogin │ │ │ ├── _rm │ │ │ ├── _rmdir │ │ │ ├── _route │ │ │ ├── _rrdtool │ │ │ ├── _rsync │ │ │ ├── _rubber │ │ │ ├── _ruby │ │ │ ├── _runit │ │ │ ├── _samba │ │ │ ├── _sccs │ │ │ ├── _scons │ │ │ ├── _screen │ │ │ ├── _script │ │ │ ├── _seafile │ │ │ ├── _sed │ │ │ ├── _seq │ │ │ ├── _service │ │ │ ├── _setfacl │ │ │ ├── _sh │ │ │ ├── _shasum │ │ │ ├── _showmount │ │ │ ├── _shred │ │ │ ├── _shuf │ │ │ ├── _shutdown │ │ │ ├── _sisu │ │ │ ├── _slrn │ │ │ ├── _smartmontools │ │ │ ├── _socket │ │ │ ├── _sort │ │ │ ├── _spamassassin │ │ │ ├── _split │ │ │ ├── _sqlite │ │ │ ├── _sqsh │ │ │ ├── _ssh │ │ │ ├── _stat │ │ │ ├── _stdbuf │ │ │ ├── _stgit │ │ │ ├── _stow │ │ │ ├── _strings │ │ │ ├── _strip │ │ │ ├── _stty │ │ │ ├── _su │ │ │ ├── _subversion │ │ │ ├── _sudo │ │ │ ├── _surfraw │ │ │ ├── _swaks │ │ │ ├── _swanctl │ │ │ ├── _swift │ │ │ ├── _sysctl │ │ │ ├── _tac │ │ │ ├── _tail │ │ │ ├── _tar │ │ │ ├── _tardy │ │ │ ├── _tcpdump │ │ │ ├── _tcptraceroute │ │ │ ├── _tee │ │ │ ├── _telnet │ │ │ ├── _tex │ │ │ ├── _texinfo │ │ │ ├── _tidy │ │ │ ├── _tiff │ │ │ ├── _timeout │ │ │ ├── _tin │ │ │ ├── _tla │ │ │ ├── _tmux │ │ │ ├── _todo.sh │ │ │ ├── _toilet │ │ │ ├── _top │ │ │ ├── _topgit │ │ │ ├── _totd │ │ │ ├── _touch │ │ │ ├── _tput │ │ │ ├── _tr │ │ │ ├── _transmission │ │ │ ├── _tree │ │ │ ├── _truncate │ │ │ ├── _truss │ │ │ ├── _tty │ │ │ ├── _twidge │ │ │ ├── _twisted │ │ │ ├── _unace │ │ │ ├── _uname │ │ │ ├── _unexpand │ │ │ ├── _uniq │ │ │ ├── _unison │ │ │ ├── _units │ │ │ ├── _uptime │ │ │ ├── _user_admin │ │ │ ├── _vi │ │ │ ├── _vim │ │ │ ├── _visudo │ │ │ ├── _vmstat │ │ │ ├── _vorbis │ │ │ ├── _vpnc │ │ │ ├── _w │ │ │ ├── _w3m │ │ │ ├── _watch │ │ │ ├── _wc │ │ │ ├── _webbrowser │ │ │ ├── _wget │ │ │ ├── _whereis │ │ │ ├── _who │ │ │ ├── _whois │ │ │ ├── _wiggle │ │ │ ├── _xargs │ │ │ ├── _xmlsoft │ │ │ ├── _xmlstarlet │ │ │ ├── _xmms2 │ │ │ ├── _xxd │ │ │ ├── _xz │ │ │ ├── _yafc │ │ │ ├── _yodl │ │ │ ├── _yp │ │ │ ├── _zcat │ │ │ ├── _zdump │ │ │ ├── _zfs │ │ │ ├── _zip │ │ │ └── _zsh │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _absolute_command_paths │ │ │ ├── _arch_archives │ │ │ ├── _arch_namespace │ │ │ ├── _baudrates │ │ │ ├── _bind_addresses │ │ │ ├── _bpf_filters │ │ │ ├── _canonical_paths │ │ │ ├── _cmdambivalent │ │ │ ├── _cmdstring │ │ │ ├── _ctags_tags │ │ │ ├── _date_formats │ │ │ ├── _dates │ │ │ ├── _dict_words │ │ │ ├── _diff_options │ │ │ ├── _dir_list │ │ │ ├── _directories │ │ │ ├── _dns_types │ │ │ ├── _domains │ │ │ ├── _email_addresses │ │ │ ├── _file_modes │ │ │ ├── _file_systems │ │ │ ├── _files │ │ │ ├── _find_net_interfaces │ │ │ ├── _global_tags │ │ │ ├── _groups │ │ │ ├── _have_glob_qual │ │ │ ├── _hosts │ │ │ ├── _java_class │ │ │ ├── _ld_debug │ │ │ ├── _list_files │ │ │ ├── _locales │ │ │ ├── _mailboxes │ │ │ ├── _mime_types │ │ │ ├── _my_accounts │ │ │ ├── _net_interfaces │ │ │ ├── _newsgroups │ │ │ ├── _object_files │ │ │ ├── _other_accounts │ │ │ ├── _path_commands │ │ │ ├── _path_files │ │ │ ├── _pdf │ │ │ ├── _perl_basepods │ │ │ ├── _perl_modules │ │ │ ├── _pgids │ │ │ ├── _pids │ │ │ ├── _ports │ │ │ ├── _postscript │ │ │ ├── _printers │ │ │ ├── _process_names │ │ │ ├── _pspdf │ │ │ ├── _python_modules │ │ │ ├── _remote_files │ │ │ ├── _services │ │ │ ├── _signals │ │ │ ├── _ssh_hosts │ │ │ ├── _sys_calls │ │ │ ├── _tar_archive │ │ │ ├── _terminals │ │ │ ├── _texi │ │ │ ├── _tilde_files │ │ │ ├── _time_zone │ │ │ ├── _ttys │ │ │ ├── _umountable │ │ │ ├── _urls │ │ │ ├── _user_at_host │ │ │ ├── _users │ │ │ ├── _users_on │ │ │ ├── _zfs_dataset │ │ │ └── _zfs_pool │ ├── X │ │ ├── .distfiles │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _acroread │ │ │ ├── _code │ │ │ ├── _dcop │ │ │ ├── _eog │ │ │ ├── _evince │ │ │ ├── _geany │ │ │ ├── _gnome-gv │ │ │ ├── _gqview │ │ │ ├── _gv │ │ │ ├── _kdeconnect │ │ │ ├── _kfmclient │ │ │ ├── _matlab │ │ │ ├── _mozilla │ │ │ ├── _mplayer │ │ │ ├── _mupdf │ │ │ ├── _nautilus │ │ │ ├── _nedit │ │ │ ├── _netscape │ │ │ ├── _okular │ │ │ ├── _pdftk │ │ │ ├── _qiv │ │ │ ├── _rdesktop │ │ │ ├── _setxkbmap │ │ │ ├── _sublimetext │ │ │ ├── _urxvt │ │ │ ├── _vnc │ │ │ ├── _x_utils │ │ │ ├── _xauth │ │ │ ├── _xautolock │ │ │ ├── _xclip │ │ │ ├── _xdvi │ │ │ ├── _xfig │ │ │ ├── _xinput │ │ │ ├── _xloadimage │ │ │ ├── _xmodmap │ │ │ ├── _xournal │ │ │ ├── _xpdf │ │ │ ├── _xrandr │ │ │ ├── _xscreensaver │ │ │ ├── _xset │ │ │ ├── _xterm │ │ │ ├── _xv │ │ │ ├── _xwit │ │ │ └── _zeal │ │ ├── Type │ │ │ ├── .distfiles │ │ │ ├── _x_borderwidth │ │ │ ├── _x_color │ │ │ ├── _x_colormapid │ │ │ ├── _x_cursor │ │ │ ├── _x_display │ │ │ ├── _x_extension │ │ │ ├── _x_font │ │ │ ├── _x_geometry │ │ │ ├── _x_keysym │ │ │ ├── _x_locale │ │ │ ├── _x_modifier │ │ │ ├── _x_name │ │ │ ├── _x_resource │ │ │ ├── _x_selection_timeout │ │ │ ├── _x_title │ │ │ ├── _x_visual │ │ │ ├── _x_window │ │ │ ├── _xft_fonts │ │ │ └── _xt_session_id │ │ └── Utility │ │ │ ├── .distfiles │ │ │ ├── _x_arguments │ │ │ └── _xt_arguments │ ├── Zsh │ │ ├── .distfiles │ │ ├── Command │ │ │ ├── .distfiles │ │ │ ├── _alias │ │ │ ├── _bindkey │ │ │ ├── _builtin │ │ │ ├── _cd │ │ │ ├── _command │ │ │ ├── _compadd │ │ │ ├── _compdef │ │ │ ├── _dirs │ │ │ ├── _disable │ │ │ ├── _echotc │ │ │ ├── _echoti │ │ │ ├── _emulate │ │ │ ├── _enable │ │ │ ├── _exec │ │ │ ├── _fc │ │ │ ├── _hash │ │ │ ├── _jobs_builtin │ │ │ ├── _kill │ │ │ ├── _limit │ │ │ ├── _mere │ │ │ ├── _precommand │ │ │ ├── _print │ │ │ ├── _prompt │ │ │ ├── _read │ │ │ ├── _run-help │ │ │ ├── _sched │ │ │ ├── _set │ │ │ ├── _setopt │ │ │ ├── _source │ │ │ ├── _strftime │ │ │ ├── _tcpsys │ │ │ ├── _trap │ │ │ ├── _ttyctl │ │ │ ├── _typeset │ │ │ ├── _ulimit │ │ │ ├── _unhash │ │ │ ├── _vared │ │ │ ├── _wait │ │ │ ├── _which │ │ │ ├── _zattr │ │ │ ├── _zcompile │ │ │ ├── _zed │ │ │ ├── _zftp │ │ │ ├── _zle │ │ │ ├── _zmodload │ │ │ ├── _zmv │ │ │ ├── _zparseopts │ │ │ ├── _zpty │ │ │ ├── _zsocket │ │ │ ├── _zstyle │ │ │ └── _ztodo │ │ ├── Context │ │ │ ├── .distfiles │ │ │ ├── _assign │ │ │ ├── _autocd │ │ │ ├── _brace_parameter │ │ │ ├── _condition │ │ │ ├── _default │ │ │ ├── _dynamic_directory_name │ │ │ ├── _equal │ │ │ ├── _first │ │ │ ├── _in_vared │ │ │ ├── _math │ │ │ ├── _parameter │ │ │ ├── _redirect │ │ │ ├── _subscript │ │ │ ├── _tilde │ │ │ ├── _value │ │ │ └── _zcalc_line │ │ ├── Function │ │ │ ├── .distfiles │ │ │ ├── __arguments │ │ │ ├── _add-zle-hook-widget │ │ │ ├── _add-zsh-hook │ │ │ ├── _vcs_info │ │ │ ├── _zargs │ │ │ ├── _zcalc │ │ │ └── _zsh-mime-handler │ │ └── Type │ │ │ ├── .distfiles │ │ │ ├── _aliases │ │ │ ├── _arrays │ │ │ ├── _command_names │ │ │ ├── _completers │ │ │ ├── _delimiters │ │ │ ├── _directory_stack │ │ │ ├── _file_descriptors │ │ │ ├── _functions │ │ │ ├── _globflags │ │ │ ├── _globqual_delims │ │ │ ├── _globquals │ │ │ ├── _history_modifiers │ │ │ ├── _jobs │ │ │ ├── _jobs_bg │ │ │ ├── _jobs_fg │ │ │ ├── _limits │ │ │ ├── _math_params │ │ │ ├── _module_math_func │ │ │ ├── _options │ │ │ ├── _options_set │ │ │ ├── _options_unset │ │ │ ├── _parameters │ │ │ ├── _ps1234 │ │ │ ├── _suffix_alias_files │ │ │ ├── _user_math_func │ │ │ ├── _vars │ │ │ ├── _vcs_info_hooks │ │ │ └── _widgets │ ├── bashcompinit │ ├── compaudit │ ├── compdump │ ├── compinit │ ├── compinstall │ └── openSUSE │ │ └── Command │ │ ├── .distfiles │ │ ├── _SUSEconfig │ │ ├── _hwinfo │ │ ├── _osc │ │ ├── _yast │ │ └── _zypper ├── Config │ ├── .cvsignore │ ├── .distfiles │ ├── aczshoot.m4 │ ├── clean.mk │ ├── config.mk │ ├── defs.mk.in │ ├── installfns.sh │ ├── uninstallfns.sh │ └── version.mk ├── Doc │ ├── .cvsignore │ ├── .distfiles │ ├── META-FAQ.yo │ ├── Makefile.in │ ├── Zsh │ │ ├── .cvsignore │ │ ├── .distfiles │ │ ├── .vimrc │ │ ├── arith.yo │ │ ├── builtins.yo │ │ ├── calsys.yo │ │ ├── compat.yo │ │ ├── compctl.yo │ │ ├── compsys.yo │ │ ├── compwid.yo │ │ ├── cond.yo │ │ ├── contrib.yo │ │ ├── exec.yo │ │ ├── expn.yo │ │ ├── filelist.yo │ │ ├── files.yo │ │ ├── func.yo │ │ ├── grammar.yo │ │ ├── index.yo │ │ ├── intro.yo │ │ ├── invoke.yo │ │ ├── jobs.yo │ │ ├── manmodmenu.yo │ │ ├── manual.yo │ │ ├── metafaq.yo │ │ ├── mod_attr.yo │ │ ├── mod_cap.yo │ │ ├── mod_clone.yo │ │ ├── mod_compctl.yo │ │ ├── mod_complete.yo │ │ ├── mod_complist.yo │ │ ├── mod_computil.yo │ │ ├── mod_curses.yo │ │ ├── mod_datetime.yo │ │ ├── mod_db_gdbm.yo │ │ ├── mod_deltochar.yo │ │ ├── mod_example.yo │ │ ├── mod_files.yo │ │ ├── mod_langinfo.yo │ │ ├── mod_mapfile.yo │ │ ├── mod_mathfunc.yo │ │ ├── mod_nearcolor.yo │ │ ├── mod_newuser.yo │ │ ├── mod_parameter.yo │ │ ├── mod_pcre.yo │ │ ├── mod_private.yo │ │ ├── mod_regex.yo │ │ ├── mod_sched.yo │ │ ├── mod_socket.yo │ │ ├── mod_stat.yo │ │ ├── mod_system.yo │ │ ├── mod_tcp.yo │ │ ├── mod_termcap.yo │ │ ├── mod_terminfo.yo │ │ ├── mod_watch.yo │ │ ├── mod_zftp.yo │ │ ├── mod_zle.yo │ │ ├── mod_zleparameter.yo │ │ ├── mod_zprof.yo │ │ ├── mod_zpty.yo │ │ ├── mod_zselect.yo │ │ ├── mod_zutil.yo │ │ ├── modlist.yo │ │ ├── modmenu.yo │ │ ├── modules.yo │ │ ├── options.yo │ │ ├── params.yo │ │ ├── prompt.yo │ │ ├── redirect.yo │ │ ├── restricted.yo │ │ ├── roadmap.yo │ │ ├── seealso.yo │ │ ├── tcpsys.yo │ │ ├── zftpsys.yo │ │ └── zle.yo │ ├── help.txt │ ├── help │ │ ├── .cvsignore │ │ ├── .distfiles │ │ ├── alias │ │ ├── autoload │ │ ├── bg │ │ ├── bindkey │ │ ├── break │ │ ├── builtin │ │ ├── cap │ │ ├── cd │ │ ├── clone │ │ ├── colon │ │ ├── command │ │ ├── comparguments │ │ ├── compcall │ │ ├── compctl │ │ ├── compdescribe │ │ ├── compfiles │ │ ├── compgroups │ │ ├── compquote │ │ ├── comptags │ │ ├── comptry │ │ ├── compvalues │ │ ├── continue │ │ ├── dirs │ │ ├── disable │ │ ├── disown │ │ ├── dot │ │ ├── echo │ │ ├── echotc │ │ ├── echoti │ │ ├── emulate │ │ ├── enable │ │ ├── eval │ │ ├── exec │ │ ├── exit │ │ ├── export │ │ ├── false │ │ ├── fc │ │ ├── fg │ │ ├── functions │ │ ├── getcap │ │ ├── getln │ │ ├── getopts │ │ ├── hash │ │ ├── jobs │ │ ├── kill │ │ ├── let │ │ ├── limit │ │ ├── noglob │ │ ├── popd │ │ ├── print │ │ ├── printf │ │ ├── pushd │ │ ├── pwd │ │ ├── read │ │ ├── return │ │ ├── sched │ │ ├── set │ │ ├── setcap │ │ ├── setopt │ │ ├── shift │ │ ├── source │ │ ├── stat │ │ ├── suspend │ │ ├── test │ │ ├── times │ │ ├── trap │ │ ├── true │ │ ├── ttyctl │ │ ├── typeset │ │ ├── ulimit │ │ ├── umask │ │ ├── unhash │ │ ├── unlimit │ │ ├── unset │ │ ├── unsetopt │ │ ├── vared │ │ ├── wait │ │ ├── whence │ │ ├── zcompile │ │ ├── zformat │ │ ├── zftp │ │ ├── zle │ │ ├── zmodload │ │ ├── zparseopts │ │ ├── zprof │ │ ├── zpty │ │ ├── zregexparse │ │ ├── zsocket │ │ ├── zstyle │ │ └── ztcp │ ├── intro.ms │ ├── version.yo │ ├── zmacros.yo │ ├── zman.yo │ ├── zsh.1 │ ├── zsh.texi │ ├── zsh.yo │ ├── zshall.1 │ ├── zshbuiltins.1 │ ├── zshbuiltins.yo │ ├── zshcalsys.1 │ ├── zshcalsys.yo │ ├── zshcompctl.1 │ ├── zshcompctl.yo │ ├── zshcompsys.1 │ ├── zshcompsys.yo │ ├── zshcompwid.1 │ ├── zshcompwid.yo │ ├── zshcontrib.1 │ ├── zshcontrib.yo │ ├── zshexpn.1 │ ├── zshexpn.yo │ ├── zshmisc.1 │ ├── zshmisc.yo │ ├── zshmodules.1 │ ├── zshmodules.yo │ ├── zshoptions.1 │ ├── zshoptions.yo │ ├── zshparam.1 │ ├── zshparam.yo │ ├── zshroadmap.1 │ ├── zshroadmap.yo │ ├── zshtcpsys.1 │ ├── zshtcpsys.yo │ ├── zshzftpsys.1 │ ├── zshzftpsys.yo │ ├── zshzle.1 │ ├── zshzle.yo │ └── ztexi.yo ├── Etc │ ├── .cvsignore │ ├── .distfiles │ ├── BUGS │ ├── CONTRIBUTORS │ ├── CVE-2021-45444-VCS_Info-workaround.patch │ ├── ChangeLog-3.0 │ ├── ChangeLog-3.1 │ ├── ChangeLog-4.1 │ ├── ChangeLog-4.3 │ ├── FAQ │ ├── FAQ.yo │ ├── FTP-README │ ├── Makefile.in │ ├── NEWS-4.3 │ ├── STD-TODO │ ├── TODO │ ├── changelog2html.pl │ ├── completion-style-guide │ ├── creating-a-release.txt │ ├── pubring.pgp │ ├── relnote_4.3.10.txt │ ├── relnote_4.3.12.txt │ ├── relnote_4.3.5.txt │ ├── relnote_4.3.6.txt │ ├── relnote_4.3.7.txt │ ├── relnote_4.3.8.txt │ ├── relnote_4.3.9.txt │ ├── relnote_5.0.0.txt │ └── zsh-development-guide ├── FEATURES ├── Functions │ ├── .cvsignore │ ├── .distfiles │ ├── Calendar │ │ ├── .distfiles │ │ ├── after │ │ ├── age │ │ ├── before │ │ ├── calendar │ │ ├── calendar_add │ │ ├── calendar_edit │ │ ├── calendar_lockfiles │ │ ├── calendar_parse │ │ ├── calendar_read │ │ ├── calendar_scandate │ │ ├── calendar_show │ │ ├── calendar_showdate │ │ └── calendar_sort │ ├── Chpwd │ │ ├── .distfiles │ │ ├── _cdr │ │ ├── cdr │ │ ├── chpwd_recent_add │ │ ├── chpwd_recent_dirs │ │ ├── chpwd_recent_filehandler │ │ ├── zsh_directory_name_cdr │ │ └── zsh_directory_name_generic │ ├── Compctl │ │ ├── .distfiles │ │ ├── cdmatch │ │ ├── cdmatch2 │ │ └── multicomp │ ├── Example │ │ ├── .distfiles │ │ ├── acx │ │ ├── cat │ │ ├── cx │ │ ├── proto │ │ ├── pushd │ │ ├── randline │ │ ├── yp │ │ ├── yu │ │ ├── zless │ │ ├── zls │ │ └── zpgrep │ ├── Exceptions │ │ ├── .distfiles │ │ ├── catch │ │ └── throw │ ├── MIME │ │ ├── .distfiles │ │ ├── pick-web-browser │ │ ├── zsh-mime-contexts │ │ ├── zsh-mime-handler │ │ └── zsh-mime-setup │ ├── Math │ │ ├── .distfiles │ │ └── zmathfunc │ ├── Misc │ │ ├── .distfiles │ │ ├── add-zle-hook-widget │ │ ├── add-zsh-hook │ │ ├── allopt │ │ ├── checkmail │ │ ├── colors │ │ ├── getjobs │ │ ├── harden │ │ ├── is-at-least │ │ ├── mere │ │ ├── nslookup │ │ ├── promptnl │ │ ├── regexp-replace │ │ ├── relative │ │ ├── run-help │ │ ├── run-help-btrfs │ │ ├── run-help-git │ │ ├── run-help-ip │ │ ├── run-help-openssl │ │ ├── run-help-p4 │ │ ├── run-help-sudo │ │ ├── run-help-svk │ │ ├── run-help-svn │ │ ├── sticky-note │ │ ├── tetris │ │ ├── tetriscurses │ │ ├── xtermctl │ │ ├── zargs │ │ ├── zcalc │ │ ├── zed │ │ ├── zkbd │ │ ├── zmathfuncdef │ │ ├── zmv │ │ ├── zrecompile │ │ ├── zstyle+ │ │ └── ztodo │ ├── Newuser │ │ ├── .distfiles │ │ └── zsh-newuser-install │ ├── Prompts │ │ ├── .distfiles │ │ ├── prompt_adam1_setup │ │ ├── prompt_adam2_setup │ │ ├── prompt_bart_setup │ │ ├── prompt_bigfade_setup │ │ ├── prompt_clint_setup │ │ ├── prompt_default_setup │ │ ├── prompt_elite2_setup │ │ ├── prompt_elite_setup │ │ ├── prompt_fade_setup │ │ ├── prompt_fire_setup │ │ ├── prompt_off_setup │ │ ├── prompt_oliver_setup │ │ ├── prompt_pws_setup │ │ ├── prompt_redhat_setup │ │ ├── prompt_restore_setup │ │ ├── prompt_special_chars │ │ ├── prompt_suse_setup │ │ ├── prompt_walters_setup │ │ ├── prompt_zefram_setup │ │ └── promptinit │ ├── README.zftp │ ├── TCP │ │ ├── .distfiles │ │ ├── tcp_alias │ │ ├── tcp_close │ │ ├── tcp_command │ │ ├── tcp_expect │ │ ├── tcp_fd_handler │ │ ├── tcp_log │ │ ├── tcp_open │ │ ├── tcp_output │ │ ├── tcp_point │ │ ├── tcp_proxy │ │ ├── tcp_read │ │ ├── tcp_rename │ │ ├── tcp_send │ │ ├── tcp_sess │ │ ├── tcp_shoot │ │ ├── tcp_spam │ │ ├── tcp_talk │ │ └── tcp_wait │ ├── VCS_Info │ │ ├── .distfiles │ │ ├── Backends │ │ │ ├── .distfiles │ │ │ ├── VCS_INFO_detect_bzr │ │ │ ├── VCS_INFO_detect_cdv │ │ │ ├── VCS_INFO_detect_cvs │ │ │ ├── VCS_INFO_detect_darcs │ │ │ ├── VCS_INFO_detect_fossil │ │ │ ├── VCS_INFO_detect_git │ │ │ ├── VCS_INFO_detect_hg │ │ │ ├── VCS_INFO_detect_mtn │ │ │ ├── VCS_INFO_detect_p4 │ │ │ ├── VCS_INFO_detect_svk │ │ │ ├── VCS_INFO_detect_svn │ │ │ ├── VCS_INFO_detect_tla │ │ │ ├── VCS_INFO_get_data_bzr │ │ │ ├── VCS_INFO_get_data_cdv │ │ │ ├── VCS_INFO_get_data_cvs │ │ │ ├── VCS_INFO_get_data_darcs │ │ │ ├── VCS_INFO_get_data_fossil │ │ │ ├── VCS_INFO_get_data_git │ │ │ ├── VCS_INFO_get_data_hg │ │ │ ├── VCS_INFO_get_data_mtn │ │ │ ├── VCS_INFO_get_data_p4 │ │ │ ├── VCS_INFO_get_data_svk │ │ │ ├── VCS_INFO_get_data_svn │ │ │ └── VCS_INFO_get_data_tla │ │ ├── VCS_INFO_adjust │ │ ├── VCS_INFO_bydir_detect │ │ ├── VCS_INFO_check_com │ │ ├── VCS_INFO_formats │ │ ├── VCS_INFO_get_cmd │ │ ├── VCS_INFO_hexdump │ │ ├── VCS_INFO_hook │ │ ├── VCS_INFO_maxexports │ │ ├── VCS_INFO_nvcsformats │ │ ├── VCS_INFO_patch2subject │ │ ├── VCS_INFO_quilt │ │ ├── VCS_INFO_reposub │ │ ├── VCS_INFO_set │ │ ├── VCS_INFO_set-branch-format │ │ ├── VCS_INFO_set-patch-format │ │ ├── test-repo-git-rebase-apply │ │ ├── test-repo-git-rebase-merge │ │ ├── vcs_info │ │ ├── vcs_info_hookadd │ │ ├── vcs_info_hookdel │ │ ├── vcs_info_lastmsg │ │ ├── vcs_info_printsys │ │ └── vcs_info_setsys │ ├── Zftp │ │ ├── .distfiles │ │ ├── zfanon │ │ ├── zfautocheck │ │ ├── zfcd │ │ ├── zfcd_match │ │ ├── zfcget │ │ ├── zfclose │ │ ├── zfcput │ │ ├── zfdir │ │ ├── zffcache │ │ ├── zfgcp │ │ ├── zfget │ │ ├── zfget_match │ │ ├── zfgoto │ │ ├── zfhere │ │ ├── zfinit │ │ ├── zfls │ │ ├── zfmark │ │ ├── zfopen │ │ ├── zfparams │ │ ├── zfpcp │ │ ├── zfput │ │ ├── zfrglob │ │ ├── zfrtime │ │ ├── zfsession │ │ ├── zfstat │ │ ├── zftp_chpwd │ │ ├── zftp_progress │ │ ├── zftransfer │ │ ├── zftype │ │ ├── zfuget │ │ └── zfuput │ └── Zle │ │ ├── .distfiles │ │ ├── backward-kill-word-match │ │ ├── backward-word-match │ │ ├── bracketed-paste-magic │ │ ├── bracketed-paste-url-magic │ │ ├── capitalize-word-match │ │ ├── copy-earlier-word │ │ ├── cycle-completion-positions │ │ ├── define-composed-chars │ │ ├── delete-whole-word-match │ │ ├── down-case-word-match │ │ ├── down-line-or-beginning-search │ │ ├── edit-command-line │ │ ├── expand-absolute-path │ │ ├── forward-word-match │ │ ├── history-beginning-search-menu │ │ ├── history-pattern-search │ │ ├── history-search-end │ │ ├── incarg │ │ ├── incremental-complete-word │ │ ├── insert-composed-char │ │ ├── insert-files │ │ ├── insert-unicode-char │ │ ├── keeper │ │ ├── keymap+widget │ │ ├── kill-word-match │ │ ├── match-word-context │ │ ├── match-words-by-style │ │ ├── modify-current-argument │ │ ├── move-line-in-buffer │ │ ├── narrow-to-region │ │ ├── narrow-to-region-invisible │ │ ├── predict-on │ │ ├── quote-and-complete-word │ │ ├── read-from-minibuffer │ │ ├── replace-argument │ │ ├── replace-string │ │ ├── replace-string-again │ │ ├── select-bracketed │ │ ├── select-quoted │ │ ├── select-word-match │ │ ├── select-word-style │ │ ├── send-invisible │ │ ├── smart-insert-last-word │ │ ├── split-shell-arguments │ │ ├── surround │ │ ├── transpose-lines │ │ ├── transpose-words-match │ │ ├── up-case-word-match │ │ ├── up-line-or-beginning-search │ │ ├── url-quote-magic │ │ ├── vi-pipe │ │ ├── which-command │ │ ├── zcalc-auto-insert │ │ └── zed-set-file-name ├── INSTALL ├── LICENCE ├── MACHINES ├── META-FAQ ├── Makefile.in ├── Misc │ ├── .distfiles │ ├── bash2zshprompt │ ├── c2z │ ├── compctl-examples │ ├── globtests │ ├── globtests.ksh │ ├── job-control-tests │ ├── lete2ctl │ ├── make-zsh-urls │ └── vcs_info-examples ├── NEWS ├── README ├── Scripts │ ├── .distfiles │ └── newuser ├── Src │ ├── .cvsignore │ ├── .distfiles │ ├── .exrc │ ├── .indent.pro │ ├── Builtins │ │ ├── .cvsignore │ │ ├── .distfiles │ │ ├── .exrc │ │ ├── rlimits.c │ │ ├── rlimits.mdd │ │ ├── sched.c │ │ └── sched.mdd │ ├── Makefile.in │ ├── Makemod.in.in │ ├── Modules │ │ ├── .cvsignore │ │ ├── .distfiles │ │ ├── .exrc │ │ ├── attr.c │ │ ├── attr.mdd │ │ ├── cap.c │ │ ├── cap.mdd │ │ ├── clone.c │ │ ├── clone.mdd │ │ ├── curses.c │ │ ├── curses.mdd │ │ ├── curses_keys.awk │ │ ├── datetime.c │ │ ├── datetime.mdd │ │ ├── db_gdbm.c │ │ ├── db_gdbm.mdd │ │ ├── errnames1.awk │ │ ├── errnames2.awk │ │ ├── example.c │ │ ├── example.mdd │ │ ├── files.c │ │ ├── files.mdd │ │ ├── langinfo.c │ │ ├── langinfo.mdd │ │ ├── mapfile.c │ │ ├── mapfile.mdd │ │ ├── mathfunc.c │ │ ├── mathfunc.mdd │ │ ├── nearcolor.c │ │ ├── nearcolor.mdd │ │ ├── newuser.c │ │ ├── newuser.mdd │ │ ├── param_private.c │ │ ├── param_private.mdd │ │ ├── parameter.c │ │ ├── parameter.mdd │ │ ├── pcre.c │ │ ├── pcre.mdd │ │ ├── regex.c │ │ ├── regex.mdd │ │ ├── socket.c │ │ ├── socket.mdd │ │ ├── stat.c │ │ ├── stat.mdd │ │ ├── system.c │ │ ├── system.mdd │ │ ├── tcp.c │ │ ├── tcp.h │ │ ├── tcp.mdd │ │ ├── termcap.c │ │ ├── termcap.mdd │ │ ├── terminfo.c │ │ ├── terminfo.mdd │ │ ├── watch.c │ │ ├── watch.mdd │ │ ├── zftp.c │ │ ├── zftp.mdd │ │ ├── zprof.c │ │ ├── zprof.mdd │ │ ├── zpty.c │ │ ├── zpty.mdd │ │ ├── zselect.c │ │ ├── zselect.mdd │ │ ├── zutil.c │ │ └── zutil.mdd │ ├── Zle │ │ ├── .cvsignore │ │ ├── .distfiles │ │ ├── .exrc │ │ ├── comp.h │ │ ├── compcore.c │ │ ├── compctl.c │ │ ├── compctl.h │ │ ├── compctl.mdd │ │ ├── complete.c │ │ ├── complete.mdd │ │ ├── complist.c │ │ ├── complist.mdd │ │ ├── compmatch.c │ │ ├── compresult.c │ │ ├── computil.c │ │ ├── computil.mdd │ │ ├── deltochar.c │ │ ├── deltochar.mdd │ │ ├── iwidgets.list │ │ ├── textobjects.c │ │ ├── zle.h │ │ ├── zle.mdd │ │ ├── zle_bindings.c │ │ ├── zle_hist.c │ │ ├── zle_keymap.c │ │ ├── zle_main.c │ │ ├── zle_misc.c │ │ ├── zle_move.c │ │ ├── zle_params.c │ │ ├── zle_refresh.c │ │ ├── zle_things.sed │ │ ├── zle_thingy.c │ │ ├── zle_tricky.c │ │ ├── zle_utils.c │ │ ├── zle_vi.c │ │ ├── zle_widget.sed │ │ ├── zle_word.c │ │ ├── zleparameter.c │ │ └── zleparameter.mdd │ ├── builtin.c │ ├── compat.c │ ├── cond.c │ ├── context.c │ ├── exec.c │ ├── glob.c │ ├── hashnameddir.c │ ├── hashtable.c │ ├── hashtable.h │ ├── hist.c │ ├── init.c │ ├── input.c │ ├── jobs.c │ ├── lex.c │ ├── linklist.c │ ├── loop.c │ ├── main.c │ ├── makepro.awk │ ├── math.c │ ├── mem.c │ ├── mkbltnmlst.sh │ ├── mkmakemod.sh │ ├── modentry.c │ ├── module.c │ ├── openssh_bsd_setres_id.c │ ├── options.c │ ├── params.c │ ├── parse.c │ ├── patchlevel.h.release │ ├── pattern.c │ ├── prompt.c │ ├── prototypes.h │ ├── signals.c │ ├── signals.h │ ├── signames1.awk │ ├── signames2.awk │ ├── sort.c │ ├── string.c │ ├── subst.c │ ├── text.c │ ├── utils.c │ ├── wcwidth9.h │ ├── zsh.h │ ├── zsh.ico │ ├── zsh.mdd │ ├── zsh.rc │ ├── zsh_system.h │ └── ztype.h ├── StartupFiles │ ├── .distfiles │ ├── zlogin │ ├── zshenv │ └── zshrc ├── Test │ ├── .cvsignore │ ├── .distfiles │ ├── A01grammar.ztst │ ├── A02alias.ztst │ ├── A03quoting.ztst │ ├── A04redirect.ztst │ ├── A05execution.ztst │ ├── A06assign.ztst │ ├── A07control.ztst │ ├── B01cd.ztst │ ├── B02typeset.ztst │ ├── B03print.ztst │ ├── B04read.ztst │ ├── B05eval.ztst │ ├── B06fc.ztst │ ├── B07emulate.ztst │ ├── B08shift.ztst │ ├── B09hash.ztst │ ├── B10getopts.ztst │ ├── B11kill.ztst │ ├── B12limit.ztst │ ├── B13whence.ztst │ ├── C01arith.ztst │ ├── C02cond.ztst │ ├── C03traps.ztst │ ├── C04funcdef.ztst │ ├── C05debug.ztst │ ├── D01prompt.ztst │ ├── D02glob.ztst │ ├── D03procsubst.ztst │ ├── D04parameter.ztst │ ├── D05array.ztst │ ├── D06subscript.ztst │ ├── D07multibyte.ztst │ ├── D08cmdsubst.ztst │ ├── D09brace.ztst │ ├── E01options.ztst │ ├── E02xtrace.ztst │ ├── E03posix.ztst │ ├── Makefile.in │ ├── P01privileged.ztst │ ├── README │ ├── V01zmodload.ztst │ ├── V02zregexparse.ztst │ ├── V03mathfunc.ztst │ ├── V04features.ztst │ ├── V05styles.ztst │ ├── V06parameter.ztst │ ├── V07pcre.ztst │ ├── V08zpty.ztst │ ├── V09datetime.ztst │ ├── V10private.ztst │ ├── V11db_gdbm.ztst │ ├── V12zparseopts.ztst │ ├── V13zformat.ztst │ ├── V14system.ztst │ ├── W01history.ztst │ ├── W02jobs.ztst │ ├── W03jobparameters.ztst │ ├── X02zlevi.ztst │ ├── X03zlebindkey.ztst │ ├── X04zlehighlight.ztst │ ├── Y01completion.ztst │ ├── Y02compmatch.ztst │ ├── Y03arguments.ztst │ ├── Z01is-at-least.ztst │ ├── Z02zmathfunc.ztst │ ├── Z03run-help.ztst │ ├── comptest │ ├── list-XFails │ ├── runtests.zsh │ └── ztst.zsh ├── Util │ ├── .distfiles │ ├── check-tmux-state │ ├── check_exports │ ├── helpfiles │ ├── mkdisttree.sh │ ├── preconfig │ ├── reporter │ ├── ztst-ftplugin.vim │ ├── ztst-syntax.vim │ └── zyodl.vim ├── aclocal.m4 ├── aczsh.m4 ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── install-sh ├── mkinstalldirs └── stamp-h.in └── zshrc /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/README.md -------------------------------------------------------------------------------- /configure.cache-embedded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/configure.cache-embedded -------------------------------------------------------------------------------- /tests/seteuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/tests/seteuser.c -------------------------------------------------------------------------------- /tests/unpriv_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/tests/unpriv_env.sh -------------------------------------------------------------------------------- /tests/zsh.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/tests/zsh.plist -------------------------------------------------------------------------------- /zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zprofile -------------------------------------------------------------------------------- /zsh.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh.plist -------------------------------------------------------------------------------- /zsh/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/.cvsignore -------------------------------------------------------------------------------- /zsh/.distfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/.distfiles -------------------------------------------------------------------------------- /zsh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/.editorconfig -------------------------------------------------------------------------------- /zsh/.gitignore.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/.gitignore.dist -------------------------------------------------------------------------------- /zsh/.preconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/.preconfig -------------------------------------------------------------------------------- /zsh/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/ChangeLog -------------------------------------------------------------------------------- /zsh/Completion/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.swp 3 | -------------------------------------------------------------------------------- /zsh/Completion/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/AIX/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/AIX/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/AIX/Command/_lslv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/AIX/Command/_lslv -------------------------------------------------------------------------------- /zsh/Completion/AIX/Command/_lspv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/AIX/Command/_lspv -------------------------------------------------------------------------------- /zsh/Completion/AIX/Command/_lsvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/AIX/Command/_lsvg -------------------------------------------------------------------------------- /zsh/Completion/AIX/Command/_smit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/AIX/Command/_smit -------------------------------------------------------------------------------- /zsh/Completion/AIX/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/BSD/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_csup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_csup -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_cu -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_ipfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_ipfw -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_jail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_jail -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_jls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_jls -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_jot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_jot -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_kld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_kld -------------------------------------------------------------------------------- /zsh/Completion/BSD/Command/_ldap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Command/_ldap -------------------------------------------------------------------------------- /zsh/Completion/BSD/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/BSD/Type/_jails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/BSD/Type/_jails -------------------------------------------------------------------------------- /zsh/Completion/Base/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Base/Completer/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Base/Core/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Base/Core/_normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Base/Core/_normal -------------------------------------------------------------------------------- /zsh/Completion/Base/Core/_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Base/Core/_setup -------------------------------------------------------------------------------- /zsh/Completion/Base/Core/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Base/Core/_tags -------------------------------------------------------------------------------- /zsh/Completion/Base/Core/_wanted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Base/Core/_wanted -------------------------------------------------------------------------------- /zsh/Completion/Base/Utility/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Base/Widget/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Cygwin/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Darwin/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Darwin/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Debian/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Debian/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Debian/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Linux/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Linux/Command/_ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Linux/Command/_ss -------------------------------------------------------------------------------- /zsh/Completion/Linux/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Mandriva/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Mandriva/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/README -------------------------------------------------------------------------------- /zsh/Completion/Redhat/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Redhat/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Solaris/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Solaris/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Unix/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_aap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_aap -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ack -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_adb -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ant -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_apm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_apm -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_arp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_arp -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_at -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_awk -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_baz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_baz -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_bzr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_bzr -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_cal -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_cat -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_cmp -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_cp -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_cut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_cut -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_cvs -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_dd -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_df -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_dig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_dig -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_dsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_dsh -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_du: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_du -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_dvi -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ed -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_env -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_feh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_feh -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_fmt -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_fsh -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_gcc -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_gdb -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_gem -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_git -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_go -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_gpg -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_id -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ip -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_joe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_joe -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_jq -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ldd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ldd -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_lha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_lha -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ln -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_lp -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ls -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_lua -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_lz4 -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_man -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_mh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_mh -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_mpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_mpc -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_mt -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_mtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_mtr -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_mv -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_nkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_nkf -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_nl -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_nm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_nm -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_npm -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_od: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_od -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_pax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_pax -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_pbm -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_php -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_pip -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_pon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_pon -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_pr -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ps -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ptx -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_pv -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_rar -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_rcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_rcs -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ri -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_rm -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_sed -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_seq -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_sh -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_ssh -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_su -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tac -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tar -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tee -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tex -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tin -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tla -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_top -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tr -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_tty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_tty -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_vi -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_vim -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_w -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_w3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_w3m -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_wc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_wc -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_whereis: -------------------------------------------------------------------------------- 1 | #compdef whereis 2 | 3 | _command_names -e 4 | -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_who: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_who -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_xxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_xxd -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_xz -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_yp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_yp -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_zfs -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_zip -------------------------------------------------------------------------------- /zsh/Completion/Unix/Command/_zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Command/_zsh -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_dates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_dates -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_files -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_groups -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_hosts -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_my_accounts: -------------------------------------------------------------------------------- 1 | #autoload 2 | 3 | _user_at_host -t my-accounts "$@" 4 | -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_pdf -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_pgids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_pgids -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_pids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_pids -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_ports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_ports -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_pspdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_pspdf -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_texi -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_ttys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_ttys -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_urls -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Unix/Type/_users -------------------------------------------------------------------------------- /zsh/Completion/Unix/Type/_zfs_pool: -------------------------------------------------------------------------------- 1 | #autoload 2 | 3 | compadd "$@" - $(zpool list -H -o name) 4 | -------------------------------------------------------------------------------- /zsh/Completion/X/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/X/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_code -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_dcop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_dcop -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_eog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_eog -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_evince: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_evince -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_geany: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_geany -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_gqview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_gqview -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_gv -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_matlab -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_mupdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_mupdf -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_nedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_nedit -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_okular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_okular -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_pdftk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_pdftk -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_qiv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_qiv -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_urxvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_urxvt -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_vnc -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xauth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xauth -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xclip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xclip -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xdvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xdvi -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xfig -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xinput -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xpdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xpdf -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xrandr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xrandr -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xset -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xterm -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xv -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_xwit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_xwit -------------------------------------------------------------------------------- /zsh/Completion/X/Command/_zeal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Command/_zeal -------------------------------------------------------------------------------- /zsh/Completion/X/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_color -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_cursor -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_display: -------------------------------------------------------------------------------- 1 | #compdef -value-,DISPLAY,-default- 2 | 3 | _tags displays && _hosts -S ':0 ' -r : 4 | -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_font -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_keysym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_keysym -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_locale -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_name -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_title -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_visual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_visual -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_x_window: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_x_window -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_xft_fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/X/Type/_xft_fonts -------------------------------------------------------------------------------- /zsh/Completion/X/Type/_xt_session_id: -------------------------------------------------------------------------------- 1 | #autoload 2 | 3 | _message -e ids 'session ID' 4 | -------------------------------------------------------------------------------- /zsh/Completion/X/Utility/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_cd -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_dirs -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_exec -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_fc -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_hash -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_kill -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_mere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_mere -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_read -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_set -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_trap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_trap -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_wait -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_zed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_zed -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_zftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_zftp -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_zle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_zle -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_zmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_zmv -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Command/_zpty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Command/_zpty -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Context/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Context/_equal: -------------------------------------------------------------------------------- 1 | #compdef -equal- 2 | 3 | _path_commands 4 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Context/_math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Context/_math -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Function/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Type/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Type/_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Type/_aliases -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Type/_arrays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Type/_arrays -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Type/_jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Type/_jobs -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Type/_jobs_bg: -------------------------------------------------------------------------------- 1 | #compdef bg 2 | 3 | _jobs -s "$@" 4 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Type/_jobs_fg: -------------------------------------------------------------------------------- 1 | #compdef disown fg 2 | 3 | _jobs "$@" 4 | -------------------------------------------------------------------------------- /zsh/Completion/Zsh/Type/_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/Zsh/Type/_vars -------------------------------------------------------------------------------- /zsh/Completion/bashcompinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/bashcompinit -------------------------------------------------------------------------------- /zsh/Completion/compaudit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/compaudit -------------------------------------------------------------------------------- /zsh/Completion/compdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/compdump -------------------------------------------------------------------------------- /zsh/Completion/compinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/compinit -------------------------------------------------------------------------------- /zsh/Completion/compinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Completion/compinstall -------------------------------------------------------------------------------- /zsh/Completion/openSUSE/Command/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Config/.cvsignore: -------------------------------------------------------------------------------- 1 | defs.mk 2 | *.swp 3 | -------------------------------------------------------------------------------- /zsh/Config/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Config/aczshoot.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Config/aczshoot.m4 -------------------------------------------------------------------------------- /zsh/Config/clean.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Config/clean.mk -------------------------------------------------------------------------------- /zsh/Config/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Config/config.mk -------------------------------------------------------------------------------- /zsh/Config/defs.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Config/defs.mk.in -------------------------------------------------------------------------------- /zsh/Config/installfns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Config/installfns.sh -------------------------------------------------------------------------------- /zsh/Config/uninstallfns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Config/uninstallfns.sh -------------------------------------------------------------------------------- /zsh/Config/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Config/version.mk -------------------------------------------------------------------------------- /zsh/Doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/.cvsignore -------------------------------------------------------------------------------- /zsh/Doc/.distfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/.distfiles -------------------------------------------------------------------------------- /zsh/Doc/META-FAQ.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/META-FAQ.yo -------------------------------------------------------------------------------- /zsh/Doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Makefile.in -------------------------------------------------------------------------------- /zsh/Doc/Zsh/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/.cvsignore -------------------------------------------------------------------------------- /zsh/Doc/Zsh/.distfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/.distfiles -------------------------------------------------------------------------------- /zsh/Doc/Zsh/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/.vimrc -------------------------------------------------------------------------------- /zsh/Doc/Zsh/arith.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/arith.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/builtins.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/builtins.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/calsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/calsys.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/compat.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/compat.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/compctl.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/compctl.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/compsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/compsys.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/compwid.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/compwid.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/cond.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/cond.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/contrib.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/contrib.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/exec.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/exec.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/expn.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/expn.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/filelist.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/filelist.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/files.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/files.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/func.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/func.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/grammar.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/grammar.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/index.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/index.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/intro.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/intro.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/invoke.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/invoke.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/jobs.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/jobs.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/manmodmenu.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/manmodmenu.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/manual.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/manual.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/metafaq.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/metafaq.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_attr.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_attr.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_cap.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_cap.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_clone.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_clone.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_compctl.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_compctl.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_complete.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_complete.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_complist.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_complist.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_computil.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_computil.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_curses.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_curses.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_datetime.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_datetime.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_db_gdbm.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_db_gdbm.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_deltochar.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_deltochar.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_example.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_example.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_files.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_files.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_langinfo.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_langinfo.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_mapfile.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_mapfile.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_mathfunc.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_mathfunc.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_nearcolor.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_nearcolor.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_newuser.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_newuser.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_parameter.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_parameter.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_pcre.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_pcre.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_private.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_private.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_regex.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_regex.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_sched.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_sched.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_socket.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_socket.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_stat.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_stat.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_system.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_system.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_tcp.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_tcp.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_termcap.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_termcap.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_terminfo.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_terminfo.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_watch.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_watch.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_zftp.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_zftp.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_zle.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_zle.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_zprof.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_zprof.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_zpty.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_zpty.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_zselect.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_zselect.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/mod_zutil.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/mod_zutil.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/modlist.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/modlist.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/modmenu.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/modmenu.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/modules.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/modules.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/options.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/options.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/params.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/params.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/prompt.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/prompt.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/redirect.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/redirect.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/restricted.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/restricted.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/roadmap.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/roadmap.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/seealso.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/seealso.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/tcpsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/tcpsys.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/zftpsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/zftpsys.yo -------------------------------------------------------------------------------- /zsh/Doc/Zsh/zle.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/Zsh/zle.yo -------------------------------------------------------------------------------- /zsh/Doc/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help.txt -------------------------------------------------------------------------------- /zsh/Doc/help/.cvsignore: -------------------------------------------------------------------------------- 1 | [_a-zA-Z0-9]* 2 | -------------------------------------------------------------------------------- /zsh/Doc/help/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | [_a-zA-Z0-9]* 3 | ' 4 | -------------------------------------------------------------------------------- /zsh/Doc/help/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/alias -------------------------------------------------------------------------------- /zsh/Doc/help/autoload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/autoload -------------------------------------------------------------------------------- /zsh/Doc/help/bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/bg -------------------------------------------------------------------------------- /zsh/Doc/help/bindkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/bindkey -------------------------------------------------------------------------------- /zsh/Doc/help/break: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/break -------------------------------------------------------------------------------- /zsh/Doc/help/builtin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/builtin -------------------------------------------------------------------------------- /zsh/Doc/help/cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/cap -------------------------------------------------------------------------------- /zsh/Doc/help/cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/cd -------------------------------------------------------------------------------- /zsh/Doc/help/clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/clone -------------------------------------------------------------------------------- /zsh/Doc/help/colon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/colon -------------------------------------------------------------------------------- /zsh/Doc/help/command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/command -------------------------------------------------------------------------------- /zsh/Doc/help/comparguments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/comparguments -------------------------------------------------------------------------------- /zsh/Doc/help/compcall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/compcall -------------------------------------------------------------------------------- /zsh/Doc/help/compctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/compctl -------------------------------------------------------------------------------- /zsh/Doc/help/compdescribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/compdescribe -------------------------------------------------------------------------------- /zsh/Doc/help/compfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/compfiles -------------------------------------------------------------------------------- /zsh/Doc/help/compgroups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/compgroups -------------------------------------------------------------------------------- /zsh/Doc/help/compquote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/compquote -------------------------------------------------------------------------------- /zsh/Doc/help/comptags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/comptags -------------------------------------------------------------------------------- /zsh/Doc/help/comptry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/comptry -------------------------------------------------------------------------------- /zsh/Doc/help/compvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/compvalues -------------------------------------------------------------------------------- /zsh/Doc/help/continue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/continue -------------------------------------------------------------------------------- /zsh/Doc/help/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/dirs -------------------------------------------------------------------------------- /zsh/Doc/help/disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/disable -------------------------------------------------------------------------------- /zsh/Doc/help/disown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/disown -------------------------------------------------------------------------------- /zsh/Doc/help/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/dot -------------------------------------------------------------------------------- /zsh/Doc/help/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/echo -------------------------------------------------------------------------------- /zsh/Doc/help/echotc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/echotc -------------------------------------------------------------------------------- /zsh/Doc/help/echoti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/echoti -------------------------------------------------------------------------------- /zsh/Doc/help/emulate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/emulate -------------------------------------------------------------------------------- /zsh/Doc/help/enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/enable -------------------------------------------------------------------------------- /zsh/Doc/help/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/eval -------------------------------------------------------------------------------- /zsh/Doc/help/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/exec -------------------------------------------------------------------------------- /zsh/Doc/help/exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/exit -------------------------------------------------------------------------------- /zsh/Doc/help/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/export -------------------------------------------------------------------------------- /zsh/Doc/help/false: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/false -------------------------------------------------------------------------------- /zsh/Doc/help/fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/fc -------------------------------------------------------------------------------- /zsh/Doc/help/fg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/fg -------------------------------------------------------------------------------- /zsh/Doc/help/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/functions -------------------------------------------------------------------------------- /zsh/Doc/help/getcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/getcap -------------------------------------------------------------------------------- /zsh/Doc/help/getln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/getln -------------------------------------------------------------------------------- /zsh/Doc/help/getopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/getopts -------------------------------------------------------------------------------- /zsh/Doc/help/hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/hash -------------------------------------------------------------------------------- /zsh/Doc/help/jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/jobs -------------------------------------------------------------------------------- /zsh/Doc/help/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/kill -------------------------------------------------------------------------------- /zsh/Doc/help/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/let -------------------------------------------------------------------------------- /zsh/Doc/help/limit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/limit -------------------------------------------------------------------------------- /zsh/Doc/help/noglob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/noglob -------------------------------------------------------------------------------- /zsh/Doc/help/popd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/popd -------------------------------------------------------------------------------- /zsh/Doc/help/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/print -------------------------------------------------------------------------------- /zsh/Doc/help/printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/printf -------------------------------------------------------------------------------- /zsh/Doc/help/pushd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/pushd -------------------------------------------------------------------------------- /zsh/Doc/help/pwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/pwd -------------------------------------------------------------------------------- /zsh/Doc/help/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/read -------------------------------------------------------------------------------- /zsh/Doc/help/return: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/return -------------------------------------------------------------------------------- /zsh/Doc/help/sched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/sched -------------------------------------------------------------------------------- /zsh/Doc/help/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/set -------------------------------------------------------------------------------- /zsh/Doc/help/setcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/setcap -------------------------------------------------------------------------------- /zsh/Doc/help/setopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/setopt -------------------------------------------------------------------------------- /zsh/Doc/help/shift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/shift -------------------------------------------------------------------------------- /zsh/Doc/help/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/source -------------------------------------------------------------------------------- /zsh/Doc/help/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/stat -------------------------------------------------------------------------------- /zsh/Doc/help/suspend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/suspend -------------------------------------------------------------------------------- /zsh/Doc/help/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/test -------------------------------------------------------------------------------- /zsh/Doc/help/times: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/times -------------------------------------------------------------------------------- /zsh/Doc/help/trap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/trap -------------------------------------------------------------------------------- /zsh/Doc/help/true: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/true -------------------------------------------------------------------------------- /zsh/Doc/help/ttyctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/ttyctl -------------------------------------------------------------------------------- /zsh/Doc/help/typeset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/typeset -------------------------------------------------------------------------------- /zsh/Doc/help/ulimit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/ulimit -------------------------------------------------------------------------------- /zsh/Doc/help/umask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/umask -------------------------------------------------------------------------------- /zsh/Doc/help/unhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/unhash -------------------------------------------------------------------------------- /zsh/Doc/help/unlimit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/unlimit -------------------------------------------------------------------------------- /zsh/Doc/help/unset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/unset -------------------------------------------------------------------------------- /zsh/Doc/help/unsetopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/unsetopt -------------------------------------------------------------------------------- /zsh/Doc/help/vared: -------------------------------------------------------------------------------- 1 | vared See the section `Zle Builtins' in zshzle(1). 2 | -------------------------------------------------------------------------------- /zsh/Doc/help/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/wait -------------------------------------------------------------------------------- /zsh/Doc/help/whence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/whence -------------------------------------------------------------------------------- /zsh/Doc/help/zcompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zcompile -------------------------------------------------------------------------------- /zsh/Doc/help/zformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zformat -------------------------------------------------------------------------------- /zsh/Doc/help/zftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zftp -------------------------------------------------------------------------------- /zsh/Doc/help/zle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zle -------------------------------------------------------------------------------- /zsh/Doc/help/zmodload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zmodload -------------------------------------------------------------------------------- /zsh/Doc/help/zparseopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zparseopts -------------------------------------------------------------------------------- /zsh/Doc/help/zprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zprof -------------------------------------------------------------------------------- /zsh/Doc/help/zpty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zpty -------------------------------------------------------------------------------- /zsh/Doc/help/zregexparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zregexparse -------------------------------------------------------------------------------- /zsh/Doc/help/zsocket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zsocket -------------------------------------------------------------------------------- /zsh/Doc/help/zstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/zstyle -------------------------------------------------------------------------------- /zsh/Doc/help/ztcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/help/ztcp -------------------------------------------------------------------------------- /zsh/Doc/intro.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/intro.ms -------------------------------------------------------------------------------- /zsh/Doc/version.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/version.yo -------------------------------------------------------------------------------- /zsh/Doc/zmacros.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zmacros.yo -------------------------------------------------------------------------------- /zsh/Doc/zman.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zman.yo -------------------------------------------------------------------------------- /zsh/Doc/zsh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zsh.1 -------------------------------------------------------------------------------- /zsh/Doc/zsh.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zsh.texi -------------------------------------------------------------------------------- /zsh/Doc/zsh.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zsh.yo -------------------------------------------------------------------------------- /zsh/Doc/zshall.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshall.1 -------------------------------------------------------------------------------- /zsh/Doc/zshbuiltins.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshbuiltins.1 -------------------------------------------------------------------------------- /zsh/Doc/zshbuiltins.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshbuiltins.yo -------------------------------------------------------------------------------- /zsh/Doc/zshcalsys.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcalsys.1 -------------------------------------------------------------------------------- /zsh/Doc/zshcalsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcalsys.yo -------------------------------------------------------------------------------- /zsh/Doc/zshcompctl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcompctl.1 -------------------------------------------------------------------------------- /zsh/Doc/zshcompctl.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcompctl.yo -------------------------------------------------------------------------------- /zsh/Doc/zshcompsys.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcompsys.1 -------------------------------------------------------------------------------- /zsh/Doc/zshcompsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcompsys.yo -------------------------------------------------------------------------------- /zsh/Doc/zshcompwid.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcompwid.1 -------------------------------------------------------------------------------- /zsh/Doc/zshcompwid.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcompwid.yo -------------------------------------------------------------------------------- /zsh/Doc/zshcontrib.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcontrib.1 -------------------------------------------------------------------------------- /zsh/Doc/zshcontrib.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshcontrib.yo -------------------------------------------------------------------------------- /zsh/Doc/zshexpn.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshexpn.1 -------------------------------------------------------------------------------- /zsh/Doc/zshexpn.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshexpn.yo -------------------------------------------------------------------------------- /zsh/Doc/zshmisc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshmisc.1 -------------------------------------------------------------------------------- /zsh/Doc/zshmisc.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshmisc.yo -------------------------------------------------------------------------------- /zsh/Doc/zshmodules.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshmodules.1 -------------------------------------------------------------------------------- /zsh/Doc/zshmodules.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshmodules.yo -------------------------------------------------------------------------------- /zsh/Doc/zshoptions.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshoptions.1 -------------------------------------------------------------------------------- /zsh/Doc/zshoptions.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshoptions.yo -------------------------------------------------------------------------------- /zsh/Doc/zshparam.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshparam.1 -------------------------------------------------------------------------------- /zsh/Doc/zshparam.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshparam.yo -------------------------------------------------------------------------------- /zsh/Doc/zshroadmap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshroadmap.1 -------------------------------------------------------------------------------- /zsh/Doc/zshroadmap.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshroadmap.yo -------------------------------------------------------------------------------- /zsh/Doc/zshtcpsys.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshtcpsys.1 -------------------------------------------------------------------------------- /zsh/Doc/zshtcpsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshtcpsys.yo -------------------------------------------------------------------------------- /zsh/Doc/zshzftpsys.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshzftpsys.1 -------------------------------------------------------------------------------- /zsh/Doc/zshzftpsys.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshzftpsys.yo -------------------------------------------------------------------------------- /zsh/Doc/zshzle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshzle.1 -------------------------------------------------------------------------------- /zsh/Doc/zshzle.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/zshzle.yo -------------------------------------------------------------------------------- /zsh/Doc/ztexi.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Doc/ztexi.yo -------------------------------------------------------------------------------- /zsh/Etc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/.cvsignore -------------------------------------------------------------------------------- /zsh/Etc/.distfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/.distfiles -------------------------------------------------------------------------------- /zsh/Etc/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/BUGS -------------------------------------------------------------------------------- /zsh/Etc/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/CONTRIBUTORS -------------------------------------------------------------------------------- /zsh/Etc/ChangeLog-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/ChangeLog-3.0 -------------------------------------------------------------------------------- /zsh/Etc/ChangeLog-3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/ChangeLog-3.1 -------------------------------------------------------------------------------- /zsh/Etc/ChangeLog-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/ChangeLog-4.1 -------------------------------------------------------------------------------- /zsh/Etc/ChangeLog-4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/ChangeLog-4.3 -------------------------------------------------------------------------------- /zsh/Etc/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/FAQ -------------------------------------------------------------------------------- /zsh/Etc/FAQ.yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/FAQ.yo -------------------------------------------------------------------------------- /zsh/Etc/FTP-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/FTP-README -------------------------------------------------------------------------------- /zsh/Etc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/Makefile.in -------------------------------------------------------------------------------- /zsh/Etc/NEWS-4.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/NEWS-4.3 -------------------------------------------------------------------------------- /zsh/Etc/STD-TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/STD-TODO -------------------------------------------------------------------------------- /zsh/Etc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/TODO -------------------------------------------------------------------------------- /zsh/Etc/changelog2html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/changelog2html.pl -------------------------------------------------------------------------------- /zsh/Etc/completion-style-guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/completion-style-guide -------------------------------------------------------------------------------- /zsh/Etc/creating-a-release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/creating-a-release.txt -------------------------------------------------------------------------------- /zsh/Etc/pubring.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/pubring.pgp -------------------------------------------------------------------------------- /zsh/Etc/relnote_4.3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_4.3.10.txt -------------------------------------------------------------------------------- /zsh/Etc/relnote_4.3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_4.3.12.txt -------------------------------------------------------------------------------- /zsh/Etc/relnote_4.3.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_4.3.5.txt -------------------------------------------------------------------------------- /zsh/Etc/relnote_4.3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_4.3.6.txt -------------------------------------------------------------------------------- /zsh/Etc/relnote_4.3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_4.3.7.txt -------------------------------------------------------------------------------- /zsh/Etc/relnote_4.3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_4.3.8.txt -------------------------------------------------------------------------------- /zsh/Etc/relnote_4.3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_4.3.9.txt -------------------------------------------------------------------------------- /zsh/Etc/relnote_5.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/relnote_5.0.0.txt -------------------------------------------------------------------------------- /zsh/Etc/zsh-development-guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Etc/zsh-development-guide -------------------------------------------------------------------------------- /zsh/FEATURES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/FEATURES -------------------------------------------------------------------------------- /zsh/Functions/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.swp 3 | -------------------------------------------------------------------------------- /zsh/Functions/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Calendar/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Calendar/after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Calendar/after -------------------------------------------------------------------------------- /zsh/Functions/Calendar/age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Calendar/age -------------------------------------------------------------------------------- /zsh/Functions/Calendar/before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Calendar/before -------------------------------------------------------------------------------- /zsh/Functions/Chpwd/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Chpwd/_cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Chpwd/_cdr -------------------------------------------------------------------------------- /zsh/Functions/Chpwd/cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Chpwd/cdr -------------------------------------------------------------------------------- /zsh/Functions/Compctl/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Compctl/cdmatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Compctl/cdmatch -------------------------------------------------------------------------------- /zsh/Functions/Compctl/cdmatch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Compctl/cdmatch2 -------------------------------------------------------------------------------- /zsh/Functions/Example/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Example/acx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/acx -------------------------------------------------------------------------------- /zsh/Functions/Example/cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/cat -------------------------------------------------------------------------------- /zsh/Functions/Example/cx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/cx -------------------------------------------------------------------------------- /zsh/Functions/Example/proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/proto -------------------------------------------------------------------------------- /zsh/Functions/Example/pushd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/pushd -------------------------------------------------------------------------------- /zsh/Functions/Example/yp: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ypmatch $1 passwd 3 | -------------------------------------------------------------------------------- /zsh/Functions/Example/yu: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ypmatch $1 passwd.byuid 3 | -------------------------------------------------------------------------------- /zsh/Functions/Example/zless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/zless -------------------------------------------------------------------------------- /zsh/Functions/Example/zls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/zls -------------------------------------------------------------------------------- /zsh/Functions/Example/zpgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Example/zpgrep -------------------------------------------------------------------------------- /zsh/Functions/Exceptions/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Exceptions/catch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Exceptions/catch -------------------------------------------------------------------------------- /zsh/Functions/Exceptions/throw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Exceptions/throw -------------------------------------------------------------------------------- /zsh/Functions/MIME/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Math/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Math/zmathfunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Math/zmathfunc -------------------------------------------------------------------------------- /zsh/Functions/Misc/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Misc/allopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/allopt -------------------------------------------------------------------------------- /zsh/Functions/Misc/checkmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/checkmail -------------------------------------------------------------------------------- /zsh/Functions/Misc/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/colors -------------------------------------------------------------------------------- /zsh/Functions/Misc/getjobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/getjobs -------------------------------------------------------------------------------- /zsh/Functions/Misc/harden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/harden -------------------------------------------------------------------------------- /zsh/Functions/Misc/is-at-least: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/is-at-least -------------------------------------------------------------------------------- /zsh/Functions/Misc/mere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/mere -------------------------------------------------------------------------------- /zsh/Functions/Misc/nslookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/nslookup -------------------------------------------------------------------------------- /zsh/Functions/Misc/promptnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/promptnl -------------------------------------------------------------------------------- /zsh/Functions/Misc/relative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/relative -------------------------------------------------------------------------------- /zsh/Functions/Misc/run-help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/run-help -------------------------------------------------------------------------------- /zsh/Functions/Misc/run-help-git: -------------------------------------------------------------------------------- 1 | git help ${1:-git} 2 | -------------------------------------------------------------------------------- /zsh/Functions/Misc/run-help-ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/run-help-ip -------------------------------------------------------------------------------- /zsh/Functions/Misc/run-help-p4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/run-help-p4 -------------------------------------------------------------------------------- /zsh/Functions/Misc/run-help-svk: -------------------------------------------------------------------------------- 1 | svk help $1 | ${=PAGER:-more} 2 | -------------------------------------------------------------------------------- /zsh/Functions/Misc/run-help-svn: -------------------------------------------------------------------------------- 1 | svn help $1 | ${=PAGER:-more} 2 | -------------------------------------------------------------------------------- /zsh/Functions/Misc/sticky-note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/sticky-note -------------------------------------------------------------------------------- /zsh/Functions/Misc/tetris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/tetris -------------------------------------------------------------------------------- /zsh/Functions/Misc/xtermctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/xtermctl -------------------------------------------------------------------------------- /zsh/Functions/Misc/zargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/zargs -------------------------------------------------------------------------------- /zsh/Functions/Misc/zcalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/zcalc -------------------------------------------------------------------------------- /zsh/Functions/Misc/zed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/zed -------------------------------------------------------------------------------- /zsh/Functions/Misc/zkbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/zkbd -------------------------------------------------------------------------------- /zsh/Functions/Misc/zmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/zmv -------------------------------------------------------------------------------- /zsh/Functions/Misc/zrecompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/zrecompile -------------------------------------------------------------------------------- /zsh/Functions/Misc/zstyle+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/zstyle+ -------------------------------------------------------------------------------- /zsh/Functions/Misc/ztodo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Misc/ztodo -------------------------------------------------------------------------------- /zsh/Functions/Newuser/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Prompts/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/README.zftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/README.zftp -------------------------------------------------------------------------------- /zsh/Functions/TCP/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_alias -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_close: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_close -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_command -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_expect -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_log -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_open -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_output -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_point: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_point -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_proxy -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_read -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_rename -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_send -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_sess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_sess -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_shoot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_shoot -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_spam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_spam -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_talk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_talk -------------------------------------------------------------------------------- /zsh/Functions/TCP/tcp_wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/TCP/tcp_wait -------------------------------------------------------------------------------- /zsh/Functions/VCS_Info/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/VCS_Info/Backends/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Zftp/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfanon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfanon -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfautocheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfautocheck -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfcd -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfcd_match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfcd_match -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfcget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfcget -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfclose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfclose -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfcput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfcput -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfdir -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zffcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zffcache -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfgcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfgcp -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfget -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfget_match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfget_match -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfgoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfgoto -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfhere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfhere -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfinit -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfls -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfmark -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfopen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfopen -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfparams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfparams -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfpcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfpcp -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfput -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfrglob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfrglob -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfrtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfrtime -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfsession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfsession -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfstat -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zftp_chpwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zftp_chpwd -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zftransfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zftransfer -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zftype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zftype -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfuget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfuget -------------------------------------------------------------------------------- /zsh/Functions/Zftp/zfuput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zftp/zfuput -------------------------------------------------------------------------------- /zsh/Functions/Zle/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Functions/Zle/incarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zle/incarg -------------------------------------------------------------------------------- /zsh/Functions/Zle/insert-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zle/insert-files -------------------------------------------------------------------------------- /zsh/Functions/Zle/keeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zle/keeper -------------------------------------------------------------------------------- /zsh/Functions/Zle/predict-on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zle/predict-on -------------------------------------------------------------------------------- /zsh/Functions/Zle/surround: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zle/surround -------------------------------------------------------------------------------- /zsh/Functions/Zle/vi-pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Functions/Zle/vi-pipe -------------------------------------------------------------------------------- /zsh/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/INSTALL -------------------------------------------------------------------------------- /zsh/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/LICENCE -------------------------------------------------------------------------------- /zsh/MACHINES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/MACHINES -------------------------------------------------------------------------------- /zsh/META-FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/META-FAQ -------------------------------------------------------------------------------- /zsh/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Makefile.in -------------------------------------------------------------------------------- /zsh/Misc/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Misc/bash2zshprompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/bash2zshprompt -------------------------------------------------------------------------------- /zsh/Misc/c2z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/c2z -------------------------------------------------------------------------------- /zsh/Misc/compctl-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/compctl-examples -------------------------------------------------------------------------------- /zsh/Misc/globtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/globtests -------------------------------------------------------------------------------- /zsh/Misc/globtests.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/globtests.ksh -------------------------------------------------------------------------------- /zsh/Misc/job-control-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/job-control-tests -------------------------------------------------------------------------------- /zsh/Misc/lete2ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/lete2ctl -------------------------------------------------------------------------------- /zsh/Misc/make-zsh-urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/make-zsh-urls -------------------------------------------------------------------------------- /zsh/Misc/vcs_info-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Misc/vcs_info-examples -------------------------------------------------------------------------------- /zsh/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/NEWS -------------------------------------------------------------------------------- /zsh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/README -------------------------------------------------------------------------------- /zsh/Scripts/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Scripts/newuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Scripts/newuser -------------------------------------------------------------------------------- /zsh/Src/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/.cvsignore -------------------------------------------------------------------------------- /zsh/Src/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Src/.exrc: -------------------------------------------------------------------------------- 1 | set ai 2 | set sw=4 3 | -------------------------------------------------------------------------------- /zsh/Src/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/.indent.pro -------------------------------------------------------------------------------- /zsh/Src/Builtins/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Builtins/.cvsignore -------------------------------------------------------------------------------- /zsh/Src/Builtins/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Src/Builtins/.exrc: -------------------------------------------------------------------------------- 1 | set ai 2 | set sw=4 3 | -------------------------------------------------------------------------------- /zsh/Src/Builtins/rlimits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Builtins/rlimits.c -------------------------------------------------------------------------------- /zsh/Src/Builtins/rlimits.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Builtins/rlimits.mdd -------------------------------------------------------------------------------- /zsh/Src/Builtins/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Builtins/sched.c -------------------------------------------------------------------------------- /zsh/Src/Builtins/sched.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Builtins/sched.mdd -------------------------------------------------------------------------------- /zsh/Src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Makefile.in -------------------------------------------------------------------------------- /zsh/Src/Makemod.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Makemod.in.in -------------------------------------------------------------------------------- /zsh/Src/Modules/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/.cvsignore -------------------------------------------------------------------------------- /zsh/Src/Modules/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Src/Modules/.exrc: -------------------------------------------------------------------------------- 1 | set ai 2 | set sw=4 3 | -------------------------------------------------------------------------------- /zsh/Src/Modules/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/attr.c -------------------------------------------------------------------------------- /zsh/Src/Modules/attr.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/attr.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/cap.c -------------------------------------------------------------------------------- /zsh/Src/Modules/cap.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/cap.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/clone.c -------------------------------------------------------------------------------- /zsh/Src/Modules/clone.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/clone.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/curses.c -------------------------------------------------------------------------------- /zsh/Src/Modules/curses.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/curses.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/datetime.c -------------------------------------------------------------------------------- /zsh/Src/Modules/datetime.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/datetime.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/db_gdbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/db_gdbm.c -------------------------------------------------------------------------------- /zsh/Src/Modules/db_gdbm.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/db_gdbm.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/errnames1.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/errnames1.awk -------------------------------------------------------------------------------- /zsh/Src/Modules/errnames2.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/errnames2.awk -------------------------------------------------------------------------------- /zsh/Src/Modules/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/example.c -------------------------------------------------------------------------------- /zsh/Src/Modules/example.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/example.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/files.c -------------------------------------------------------------------------------- /zsh/Src/Modules/files.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/files.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/langinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/langinfo.c -------------------------------------------------------------------------------- /zsh/Src/Modules/langinfo.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/langinfo.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/mapfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/mapfile.c -------------------------------------------------------------------------------- /zsh/Src/Modules/mapfile.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/mapfile.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/mathfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/mathfunc.c -------------------------------------------------------------------------------- /zsh/Src/Modules/mathfunc.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/mathfunc.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/nearcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/nearcolor.c -------------------------------------------------------------------------------- /zsh/Src/Modules/nearcolor.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/nearcolor.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/newuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/newuser.c -------------------------------------------------------------------------------- /zsh/Src/Modules/newuser.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/newuser.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/parameter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/parameter.c -------------------------------------------------------------------------------- /zsh/Src/Modules/parameter.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/parameter.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/pcre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/pcre.c -------------------------------------------------------------------------------- /zsh/Src/Modules/pcre.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/pcre.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/regex.c -------------------------------------------------------------------------------- /zsh/Src/Modules/regex.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/regex.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/socket.c -------------------------------------------------------------------------------- /zsh/Src/Modules/socket.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/socket.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/stat.c -------------------------------------------------------------------------------- /zsh/Src/Modules/stat.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/stat.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/system.c -------------------------------------------------------------------------------- /zsh/Src/Modules/system.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/system.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/tcp.c -------------------------------------------------------------------------------- /zsh/Src/Modules/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/tcp.h -------------------------------------------------------------------------------- /zsh/Src/Modules/tcp.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/tcp.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/termcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/termcap.c -------------------------------------------------------------------------------- /zsh/Src/Modules/termcap.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/termcap.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/terminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/terminfo.c -------------------------------------------------------------------------------- /zsh/Src/Modules/terminfo.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/terminfo.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/watch.c -------------------------------------------------------------------------------- /zsh/Src/Modules/watch.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/watch.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/zftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zftp.c -------------------------------------------------------------------------------- /zsh/Src/Modules/zftp.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zftp.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/zprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zprof.c -------------------------------------------------------------------------------- /zsh/Src/Modules/zprof.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zprof.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/zpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zpty.c -------------------------------------------------------------------------------- /zsh/Src/Modules/zpty.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zpty.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/zselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zselect.c -------------------------------------------------------------------------------- /zsh/Src/Modules/zselect.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zselect.mdd -------------------------------------------------------------------------------- /zsh/Src/Modules/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zutil.c -------------------------------------------------------------------------------- /zsh/Src/Modules/zutil.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Modules/zutil.mdd -------------------------------------------------------------------------------- /zsh/Src/Zle/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/.cvsignore -------------------------------------------------------------------------------- /zsh/Src/Zle/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Src/Zle/.exrc: -------------------------------------------------------------------------------- 1 | set ai 2 | set sw=4 3 | -------------------------------------------------------------------------------- /zsh/Src/Zle/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/comp.h -------------------------------------------------------------------------------- /zsh/Src/Zle/compcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/compcore.c -------------------------------------------------------------------------------- /zsh/Src/Zle/compctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/compctl.c -------------------------------------------------------------------------------- /zsh/Src/Zle/compctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/compctl.h -------------------------------------------------------------------------------- /zsh/Src/Zle/compctl.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/compctl.mdd -------------------------------------------------------------------------------- /zsh/Src/Zle/complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/complete.c -------------------------------------------------------------------------------- /zsh/Src/Zle/complete.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/complete.mdd -------------------------------------------------------------------------------- /zsh/Src/Zle/complist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/complist.c -------------------------------------------------------------------------------- /zsh/Src/Zle/complist.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/complist.mdd -------------------------------------------------------------------------------- /zsh/Src/Zle/compmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/compmatch.c -------------------------------------------------------------------------------- /zsh/Src/Zle/compresult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/compresult.c -------------------------------------------------------------------------------- /zsh/Src/Zle/computil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/computil.c -------------------------------------------------------------------------------- /zsh/Src/Zle/computil.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/computil.mdd -------------------------------------------------------------------------------- /zsh/Src/Zle/deltochar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/deltochar.c -------------------------------------------------------------------------------- /zsh/Src/Zle/deltochar.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/deltochar.mdd -------------------------------------------------------------------------------- /zsh/Src/Zle/iwidgets.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/iwidgets.list -------------------------------------------------------------------------------- /zsh/Src/Zle/textobjects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/textobjects.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle.h -------------------------------------------------------------------------------- /zsh/Src/Zle/zle.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle.mdd -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_bindings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_bindings.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_hist.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_keymap.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_main.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_misc.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_move.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_params.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_refresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_refresh.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_things.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_things.sed -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_thingy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_thingy.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_tricky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_tricky.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_utils.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_vi.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_widget.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_widget.sed -------------------------------------------------------------------------------- /zsh/Src/Zle/zle_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zle_word.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zleparameter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zleparameter.c -------------------------------------------------------------------------------- /zsh/Src/Zle/zleparameter.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/Zle/zleparameter.mdd -------------------------------------------------------------------------------- /zsh/Src/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/builtin.c -------------------------------------------------------------------------------- /zsh/Src/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/compat.c -------------------------------------------------------------------------------- /zsh/Src/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/cond.c -------------------------------------------------------------------------------- /zsh/Src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/context.c -------------------------------------------------------------------------------- /zsh/Src/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/exec.c -------------------------------------------------------------------------------- /zsh/Src/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/glob.c -------------------------------------------------------------------------------- /zsh/Src/hashnameddir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/hashnameddir.c -------------------------------------------------------------------------------- /zsh/Src/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/hashtable.c -------------------------------------------------------------------------------- /zsh/Src/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/hashtable.h -------------------------------------------------------------------------------- /zsh/Src/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/hist.c -------------------------------------------------------------------------------- /zsh/Src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/init.c -------------------------------------------------------------------------------- /zsh/Src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/input.c -------------------------------------------------------------------------------- /zsh/Src/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/jobs.c -------------------------------------------------------------------------------- /zsh/Src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/lex.c -------------------------------------------------------------------------------- /zsh/Src/linklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/linklist.c -------------------------------------------------------------------------------- /zsh/Src/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/loop.c -------------------------------------------------------------------------------- /zsh/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/main.c -------------------------------------------------------------------------------- /zsh/Src/makepro.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/makepro.awk -------------------------------------------------------------------------------- /zsh/Src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/math.c -------------------------------------------------------------------------------- /zsh/Src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/mem.c -------------------------------------------------------------------------------- /zsh/Src/mkbltnmlst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/mkbltnmlst.sh -------------------------------------------------------------------------------- /zsh/Src/mkmakemod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/mkmakemod.sh -------------------------------------------------------------------------------- /zsh/Src/modentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/modentry.c -------------------------------------------------------------------------------- /zsh/Src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/module.c -------------------------------------------------------------------------------- /zsh/Src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/options.c -------------------------------------------------------------------------------- /zsh/Src/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/params.c -------------------------------------------------------------------------------- /zsh/Src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/parse.c -------------------------------------------------------------------------------- /zsh/Src/patchlevel.h.release: -------------------------------------------------------------------------------- 1 | #define ZSH_PATCHLEVEL "zsh-5.9-0-g73d3173" 2 | -------------------------------------------------------------------------------- /zsh/Src/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/pattern.c -------------------------------------------------------------------------------- /zsh/Src/prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/prompt.c -------------------------------------------------------------------------------- /zsh/Src/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/prototypes.h -------------------------------------------------------------------------------- /zsh/Src/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/signals.c -------------------------------------------------------------------------------- /zsh/Src/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/signals.h -------------------------------------------------------------------------------- /zsh/Src/signames1.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/signames1.awk -------------------------------------------------------------------------------- /zsh/Src/signames2.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/signames2.awk -------------------------------------------------------------------------------- /zsh/Src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/sort.c -------------------------------------------------------------------------------- /zsh/Src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/string.c -------------------------------------------------------------------------------- /zsh/Src/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/subst.c -------------------------------------------------------------------------------- /zsh/Src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/text.c -------------------------------------------------------------------------------- /zsh/Src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/utils.c -------------------------------------------------------------------------------- /zsh/Src/wcwidth9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/wcwidth9.h -------------------------------------------------------------------------------- /zsh/Src/zsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/zsh.h -------------------------------------------------------------------------------- /zsh/Src/zsh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/zsh.ico -------------------------------------------------------------------------------- /zsh/Src/zsh.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/zsh.mdd -------------------------------------------------------------------------------- /zsh/Src/zsh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/zsh.rc -------------------------------------------------------------------------------- /zsh/Src/zsh_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/zsh_system.h -------------------------------------------------------------------------------- /zsh/Src/ztype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Src/ztype.h -------------------------------------------------------------------------------- /zsh/StartupFiles/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/StartupFiles/zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/StartupFiles/zlogin -------------------------------------------------------------------------------- /zsh/StartupFiles/zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/StartupFiles/zshenv -------------------------------------------------------------------------------- /zsh/StartupFiles/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/StartupFiles/zshrc -------------------------------------------------------------------------------- /zsh/Test/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.tmp 3 | *.swp 4 | -------------------------------------------------------------------------------- /zsh/Test/.distfiles: -------------------------------------------------------------------------------- 1 | DISTFILES_SRC=' 2 | ' 3 | -------------------------------------------------------------------------------- /zsh/Test/A01grammar.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/A01grammar.ztst -------------------------------------------------------------------------------- /zsh/Test/A02alias.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/A02alias.ztst -------------------------------------------------------------------------------- /zsh/Test/A03quoting.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/A03quoting.ztst -------------------------------------------------------------------------------- /zsh/Test/A04redirect.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/A04redirect.ztst -------------------------------------------------------------------------------- /zsh/Test/A05execution.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/A05execution.ztst -------------------------------------------------------------------------------- /zsh/Test/A06assign.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/A06assign.ztst -------------------------------------------------------------------------------- /zsh/Test/A07control.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/A07control.ztst -------------------------------------------------------------------------------- /zsh/Test/B01cd.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B01cd.ztst -------------------------------------------------------------------------------- /zsh/Test/B02typeset.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B02typeset.ztst -------------------------------------------------------------------------------- /zsh/Test/B03print.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B03print.ztst -------------------------------------------------------------------------------- /zsh/Test/B04read.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B04read.ztst -------------------------------------------------------------------------------- /zsh/Test/B05eval.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B05eval.ztst -------------------------------------------------------------------------------- /zsh/Test/B06fc.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B06fc.ztst -------------------------------------------------------------------------------- /zsh/Test/B07emulate.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B07emulate.ztst -------------------------------------------------------------------------------- /zsh/Test/B08shift.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B08shift.ztst -------------------------------------------------------------------------------- /zsh/Test/B09hash.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B09hash.ztst -------------------------------------------------------------------------------- /zsh/Test/B10getopts.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B10getopts.ztst -------------------------------------------------------------------------------- /zsh/Test/B11kill.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B11kill.ztst -------------------------------------------------------------------------------- /zsh/Test/B12limit.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B12limit.ztst -------------------------------------------------------------------------------- /zsh/Test/B13whence.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/B13whence.ztst -------------------------------------------------------------------------------- /zsh/Test/C01arith.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/C01arith.ztst -------------------------------------------------------------------------------- /zsh/Test/C02cond.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/C02cond.ztst -------------------------------------------------------------------------------- /zsh/Test/C03traps.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/C03traps.ztst -------------------------------------------------------------------------------- /zsh/Test/C04funcdef.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/C04funcdef.ztst -------------------------------------------------------------------------------- /zsh/Test/C05debug.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/C05debug.ztst -------------------------------------------------------------------------------- /zsh/Test/D01prompt.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D01prompt.ztst -------------------------------------------------------------------------------- /zsh/Test/D02glob.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D02glob.ztst -------------------------------------------------------------------------------- /zsh/Test/D03procsubst.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D03procsubst.ztst -------------------------------------------------------------------------------- /zsh/Test/D04parameter.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D04parameter.ztst -------------------------------------------------------------------------------- /zsh/Test/D05array.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D05array.ztst -------------------------------------------------------------------------------- /zsh/Test/D06subscript.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D06subscript.ztst -------------------------------------------------------------------------------- /zsh/Test/D07multibyte.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D07multibyte.ztst -------------------------------------------------------------------------------- /zsh/Test/D08cmdsubst.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D08cmdsubst.ztst -------------------------------------------------------------------------------- /zsh/Test/D09brace.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/D09brace.ztst -------------------------------------------------------------------------------- /zsh/Test/E01options.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/E01options.ztst -------------------------------------------------------------------------------- /zsh/Test/E02xtrace.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/E02xtrace.ztst -------------------------------------------------------------------------------- /zsh/Test/E03posix.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/E03posix.ztst -------------------------------------------------------------------------------- /zsh/Test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/Makefile.in -------------------------------------------------------------------------------- /zsh/Test/P01privileged.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/P01privileged.ztst -------------------------------------------------------------------------------- /zsh/Test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/README -------------------------------------------------------------------------------- /zsh/Test/V01zmodload.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V01zmodload.ztst -------------------------------------------------------------------------------- /zsh/Test/V02zregexparse.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V02zregexparse.ztst -------------------------------------------------------------------------------- /zsh/Test/V03mathfunc.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V03mathfunc.ztst -------------------------------------------------------------------------------- /zsh/Test/V04features.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V04features.ztst -------------------------------------------------------------------------------- /zsh/Test/V05styles.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V05styles.ztst -------------------------------------------------------------------------------- /zsh/Test/V06parameter.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V06parameter.ztst -------------------------------------------------------------------------------- /zsh/Test/V07pcre.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V07pcre.ztst -------------------------------------------------------------------------------- /zsh/Test/V08zpty.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V08zpty.ztst -------------------------------------------------------------------------------- /zsh/Test/V09datetime.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V09datetime.ztst -------------------------------------------------------------------------------- /zsh/Test/V10private.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V10private.ztst -------------------------------------------------------------------------------- /zsh/Test/V11db_gdbm.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V11db_gdbm.ztst -------------------------------------------------------------------------------- /zsh/Test/V12zparseopts.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V12zparseopts.ztst -------------------------------------------------------------------------------- /zsh/Test/V13zformat.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V13zformat.ztst -------------------------------------------------------------------------------- /zsh/Test/V14system.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/V14system.ztst -------------------------------------------------------------------------------- /zsh/Test/W01history.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/W01history.ztst -------------------------------------------------------------------------------- /zsh/Test/W02jobs.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/W02jobs.ztst -------------------------------------------------------------------------------- /zsh/Test/W03jobparameters.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/W03jobparameters.ztst -------------------------------------------------------------------------------- /zsh/Test/X02zlevi.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/X02zlevi.ztst -------------------------------------------------------------------------------- /zsh/Test/X03zlebindkey.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/X03zlebindkey.ztst -------------------------------------------------------------------------------- /zsh/Test/X04zlehighlight.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/X04zlehighlight.ztst -------------------------------------------------------------------------------- /zsh/Test/Y01completion.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/Y01completion.ztst -------------------------------------------------------------------------------- /zsh/Test/Y02compmatch.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/Y02compmatch.ztst -------------------------------------------------------------------------------- /zsh/Test/Y03arguments.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/Y03arguments.ztst -------------------------------------------------------------------------------- /zsh/Test/Z01is-at-least.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/Z01is-at-least.ztst -------------------------------------------------------------------------------- /zsh/Test/Z02zmathfunc.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/Z02zmathfunc.ztst -------------------------------------------------------------------------------- /zsh/Test/Z03run-help.ztst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/Z03run-help.ztst -------------------------------------------------------------------------------- /zsh/Test/comptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/comptest -------------------------------------------------------------------------------- /zsh/Test/list-XFails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/list-XFails -------------------------------------------------------------------------------- /zsh/Test/runtests.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/runtests.zsh -------------------------------------------------------------------------------- /zsh/Test/ztst.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Test/ztst.zsh -------------------------------------------------------------------------------- /zsh/Util/.distfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/.distfiles -------------------------------------------------------------------------------- /zsh/Util/check-tmux-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/check-tmux-state -------------------------------------------------------------------------------- /zsh/Util/check_exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/check_exports -------------------------------------------------------------------------------- /zsh/Util/helpfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/helpfiles -------------------------------------------------------------------------------- /zsh/Util/mkdisttree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/mkdisttree.sh -------------------------------------------------------------------------------- /zsh/Util/preconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/preconfig -------------------------------------------------------------------------------- /zsh/Util/reporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/reporter -------------------------------------------------------------------------------- /zsh/Util/ztst-ftplugin.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/ztst-ftplugin.vim -------------------------------------------------------------------------------- /zsh/Util/ztst-syntax.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/ztst-syntax.vim -------------------------------------------------------------------------------- /zsh/Util/zyodl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/Util/zyodl.vim -------------------------------------------------------------------------------- /zsh/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/aclocal.m4 -------------------------------------------------------------------------------- /zsh/aczsh.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/aczsh.m4 -------------------------------------------------------------------------------- /zsh/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/config.guess -------------------------------------------------------------------------------- /zsh/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/config.h.in -------------------------------------------------------------------------------- /zsh/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/config.sub -------------------------------------------------------------------------------- /zsh/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/configure -------------------------------------------------------------------------------- /zsh/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/configure.ac -------------------------------------------------------------------------------- /zsh/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/install-sh -------------------------------------------------------------------------------- /zsh/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zsh/mkinstalldirs -------------------------------------------------------------------------------- /zsh/stamp-h.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/zsh/HEAD/zshrc --------------------------------------------------------------------------------