├── .bumpversion.cfg ├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md └── workflows │ ├── test-zsh-5.4.2.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── antidote ├── antidote.zsh ├── functions ├── __antidote_bulk_clone ├── __antidote_bundle_dir ├── __antidote_bundle_name ├── __antidote_bundle_type ├── __antidote_bundle_zcompile ├── __antidote_collect_input ├── __antidote_del ├── __antidote_get_cachedir ├── __antidote_indent ├── __antidote_initfiles ├── __antidote_load_prep ├── __antidote_mktemp ├── __antidote_parse_bundles ├── __antidote_parser ├── __antidote_print_path ├── __antidote_setup ├── __antidote_tourl ├── __antidote_usage ├── __antidote_version ├── _antidote ├── antidote ├── antidote-bundle ├── antidote-help ├── antidote-home ├── antidote-init ├── antidote-install ├── antidote-list ├── antidote-load ├── antidote-main ├── antidote-path ├── antidote-purge ├── antidote-script └── antidote-update ├── makefile ├── man ├── antidote-bundle.md ├── antidote-help.md ├── antidote-home.md ├── antidote-init.md ├── antidote-install.md ├── antidote-list.md ├── antidote-load.md ├── antidote-path.md ├── antidote-purge.md ├── antidote-update.md ├── antidote.md ├── footer.md └── man1 │ ├── antidote-bundle.1 │ ├── antidote-help.1 │ ├── antidote-home.1 │ ├── antidote-init.1 │ ├── antidote-install.1 │ ├── antidote-list.1 │ ├── antidote-load.1 │ ├── antidote-path.1 │ ├── antidote-purge.1 │ ├── antidote-update.1 │ └── antidote.1 ├── tests ├── README.md ├── __init__.zsh ├── fakegitsite.com │ └── fakeuser │ │ └── fakerepo │ │ ├── .mockgit │ │ └── config │ │ │ └── remote.origin.url │ │ ├── fakerepo.plugin.zsh │ │ └── functions │ │ ├── _fakerepo │ │ └── fakerepo ├── functions │ ├── aarr_val │ ├── mockgit │ ├── normalize_aarr │ ├── print_aarr │ ├── subenv │ ├── t_reset │ ├── t_setup │ ├── t_setup_real │ ├── t_teardown │ └── t_unload_antidote ├── test_alt_zsh_defer_bundle.md ├── test_antidote.md ├── test_antidote_core.md ├── test_bundle_helpers.md ├── test_cmd_bundle.md ├── test_cmd_help.md ├── test_cmd_home.md ├── test_cmd_init.md ├── test_cmd_install.md ├── test_cmd_list.md ├── test_cmd_load.md ├── test_cmd_main.md ├── test_cmd_path.md ├── test_cmd_purge.md ├── test_cmd_script.md ├── test_cmd_update.md ├── test_fpath_rules.md ├── test_helpers.md ├── test_mockgit.md ├── test_parser.md ├── test_paths_with_spaces.md ├── test_real.md ├── test_setopts_special.md ├── test_zcompile_bundle.md ├── test_zcompile_static.md ├── test_zsetopts.md ├── testdata │ ├── .zplugins_fake_load.zsh │ ├── .zplugins_fake_zcompile_static.zsh │ ├── .zsh_plugins.zsh │ ├── .zsh_plugins_empty.txt │ ├── .zsh_plugins_multi_defer.zsh │ ├── .zsh_plugins_no_defer.zsh │ ├── .zsh_plugins_purged.txt │ ├── .zsh_plugins_repos.txt │ ├── antibody │ │ ├── script-foobar.zsh │ │ └── script-fooqux.zsh │ ├── real │ │ ├── .zsh_plugins.crlf.txt │ │ ├── .zsh_plugins.txt │ │ ├── .zsh_plugins.zsh │ │ └── repo-list.txt │ ├── script-foobar.zsh │ └── script-fooqux.zsh └── tmp_home │ ├── .cache │ ├── antibody │ │ ├── git-AT-github.com-COLON-foo-SLASH-qux │ │ │ ├── .mockgit │ │ │ │ └── .gitkeep │ │ │ └── qux.plugin.zsh │ │ ├── https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-bar │ │ │ ├── .mockgit │ │ │ │ └── .gitkeep │ │ │ └── bar.plugin.zsh │ │ ├── https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-baz │ │ │ ├── .mockgit │ │ │ │ └── .gitkeep │ │ │ ├── baz.plugin.zsh │ │ │ └── functions │ │ │ │ ├── _baz │ │ │ │ └── baz │ │ ├── https-COLON--SLASH--SLASH-github.com-SLASH-getantidote-SLASH-zsh-defer │ │ │ ├── .mockgit │ │ │ │ └── .gitkeep │ │ │ └── zsh-defer.plugin.zsh │ │ └── https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy │ │ │ ├── .mockgit │ │ │ └── .gitkeep │ │ │ ├── custom │ │ │ └── themes │ │ │ │ ├── pretty.zsh-theme │ │ │ │ └── ugly.zsh-theme │ │ │ ├── lib │ │ │ ├── lib1.zsh │ │ │ ├── lib2.zsh │ │ │ └── lib3.zsh │ │ │ ├── oh-my.sh │ │ │ ├── plugins │ │ │ ├── docker │ │ │ │ ├── _docker │ │ │ │ └── docker.plugin.zsh │ │ │ ├── extract │ │ │ │ └── extract.plugin.zsh │ │ │ ├── macos │ │ │ │ ├── functions │ │ │ │ │ └── macos_func │ │ │ │ └── macos.plugin.zsh │ │ │ └── magic-enter │ │ │ │ └── magic-enter.plugin.zsh │ │ │ └── themes │ │ │ └── pretty.zsh-theme │ └── antidote │ │ ├── foo │ │ ├── bar │ │ │ ├── .mockgit │ │ │ │ └── config │ │ │ │ │ └── remote.origin.url │ │ │ └── bar.plugin.zsh │ │ ├── baz │ │ │ ├── .mockgit │ │ │ │ └── config │ │ │ │ │ └── remote.origin.url │ │ │ ├── baz.plugin.zsh │ │ │ └── functions │ │ │ │ ├── _baz │ │ │ │ └── baz │ │ └── qux │ │ │ ├── .mockgit │ │ │ └── config │ │ │ │ └── remote.origin.url │ │ │ └── qux.plugin.zsh │ │ ├── getantidote │ │ └── zsh-defer │ │ │ ├── .mockgit │ │ │ └── config │ │ │ │ └── remote.origin.url │ │ │ └── zsh-defer.plugin.zsh │ │ └── ohmy │ │ └── ohmy │ │ ├── .mockgit │ │ └── config │ │ │ └── remote.origin.url │ │ ├── custom │ │ └── themes │ │ │ ├── pretty.zsh-theme │ │ │ └── ugly.zsh-theme │ │ ├── lib │ │ ├── lib1.zsh │ │ ├── lib2.zsh │ │ └── lib3.zsh │ │ ├── oh-my.sh │ │ ├── plugins │ │ ├── docker │ │ │ ├── _docker │ │ │ └── docker.plugin.zsh │ │ ├── extract │ │ │ └── extract.plugin.zsh │ │ ├── macos │ │ │ ├── functions │ │ │ │ └── macos_func │ │ │ └── macos.plugin.zsh │ │ └── magic-enter │ │ │ └── magic-enter.plugin.zsh │ │ └── themes │ │ └── pretty.zsh-theme │ └── .zsh │ ├── .zplugins_fake_load │ ├── .zsh_plugins.txt │ ├── aliases.zsh │ ├── custom │ ├── lib │ │ ├── lib1.zsh │ │ └── lib2.zsh │ └── plugins │ │ ├── grizwold │ │ └── grizwold.plugin.zsh │ │ ├── myplugin │ │ └── myplugin.plugin.zsh │ │ └── mytheme │ │ └── mytheme.zsh-theme │ └── functions │ └── myfunc └── tools ├── buildman ├── bumpver ├── run-clitests └── sloc /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/test-zsh-5.4.2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/.github/workflows/test-zsh-5.4.2.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/README.md -------------------------------------------------------------------------------- /antidote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/antidote -------------------------------------------------------------------------------- /antidote.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/antidote.zsh -------------------------------------------------------------------------------- /functions/__antidote_bulk_clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_bulk_clone -------------------------------------------------------------------------------- /functions/__antidote_bundle_dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_bundle_dir -------------------------------------------------------------------------------- /functions/__antidote_bundle_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_bundle_name -------------------------------------------------------------------------------- /functions/__antidote_bundle_type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_bundle_type -------------------------------------------------------------------------------- /functions/__antidote_bundle_zcompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_bundle_zcompile -------------------------------------------------------------------------------- /functions/__antidote_collect_input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_collect_input -------------------------------------------------------------------------------- /functions/__antidote_del: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_del -------------------------------------------------------------------------------- /functions/__antidote_get_cachedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_get_cachedir -------------------------------------------------------------------------------- /functions/__antidote_indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_indent -------------------------------------------------------------------------------- /functions/__antidote_initfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_initfiles -------------------------------------------------------------------------------- /functions/__antidote_load_prep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_load_prep -------------------------------------------------------------------------------- /functions/__antidote_mktemp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_mktemp -------------------------------------------------------------------------------- /functions/__antidote_parse_bundles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_parse_bundles -------------------------------------------------------------------------------- /functions/__antidote_parser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_parser -------------------------------------------------------------------------------- /functions/__antidote_print_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_print_path -------------------------------------------------------------------------------- /functions/__antidote_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_setup -------------------------------------------------------------------------------- /functions/__antidote_tourl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_tourl -------------------------------------------------------------------------------- /functions/__antidote_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_usage -------------------------------------------------------------------------------- /functions/__antidote_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/__antidote_version -------------------------------------------------------------------------------- /functions/_antidote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/_antidote -------------------------------------------------------------------------------- /functions/antidote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote -------------------------------------------------------------------------------- /functions/antidote-bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-bundle -------------------------------------------------------------------------------- /functions/antidote-help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-help -------------------------------------------------------------------------------- /functions/antidote-home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-home -------------------------------------------------------------------------------- /functions/antidote-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-init -------------------------------------------------------------------------------- /functions/antidote-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-install -------------------------------------------------------------------------------- /functions/antidote-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-list -------------------------------------------------------------------------------- /functions/antidote-load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-load -------------------------------------------------------------------------------- /functions/antidote-main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-main -------------------------------------------------------------------------------- /functions/antidote-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-path -------------------------------------------------------------------------------- /functions/antidote-purge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-purge -------------------------------------------------------------------------------- /functions/antidote-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-script -------------------------------------------------------------------------------- /functions/antidote-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/functions/antidote-update -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/makefile -------------------------------------------------------------------------------- /man/antidote-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-bundle.md -------------------------------------------------------------------------------- /man/antidote-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-help.md -------------------------------------------------------------------------------- /man/antidote-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-home.md -------------------------------------------------------------------------------- /man/antidote-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-init.md -------------------------------------------------------------------------------- /man/antidote-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-install.md -------------------------------------------------------------------------------- /man/antidote-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-list.md -------------------------------------------------------------------------------- /man/antidote-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-load.md -------------------------------------------------------------------------------- /man/antidote-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-path.md -------------------------------------------------------------------------------- /man/antidote-purge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-purge.md -------------------------------------------------------------------------------- /man/antidote-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote-update.md -------------------------------------------------------------------------------- /man/antidote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/antidote.md -------------------------------------------------------------------------------- /man/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/footer.md -------------------------------------------------------------------------------- /man/man1/antidote-bundle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-bundle.1 -------------------------------------------------------------------------------- /man/man1/antidote-help.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-help.1 -------------------------------------------------------------------------------- /man/man1/antidote-home.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-home.1 -------------------------------------------------------------------------------- /man/man1/antidote-init.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-init.1 -------------------------------------------------------------------------------- /man/man1/antidote-install.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-install.1 -------------------------------------------------------------------------------- /man/man1/antidote-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-list.1 -------------------------------------------------------------------------------- /man/man1/antidote-load.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-load.1 -------------------------------------------------------------------------------- /man/man1/antidote-path.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-path.1 -------------------------------------------------------------------------------- /man/man1/antidote-purge.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-purge.1 -------------------------------------------------------------------------------- /man/man1/antidote-update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote-update.1 -------------------------------------------------------------------------------- /man/man1/antidote.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/man/man1/antidote.1 -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/__init__.zsh -------------------------------------------------------------------------------- /tests/fakegitsite.com/fakeuser/fakerepo/.mockgit/config/remote.origin.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/fakegitsite.com/fakeuser/fakerepo/.mockgit/config/remote.origin.url -------------------------------------------------------------------------------- /tests/fakegitsite.com/fakeuser/fakerepo/fakerepo.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/fakegitsite.com/fakeuser/fakerepo/fakerepo.plugin.zsh -------------------------------------------------------------------------------- /tests/fakegitsite.com/fakeuser/fakerepo/functions/_fakerepo: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | echo _fakerepo completion 3 | -------------------------------------------------------------------------------- /tests/fakegitsite.com/fakeuser/fakerepo/functions/fakerepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/fakegitsite.com/fakeuser/fakerepo/functions/fakerepo -------------------------------------------------------------------------------- /tests/functions/aarr_val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/aarr_val -------------------------------------------------------------------------------- /tests/functions/mockgit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/mockgit -------------------------------------------------------------------------------- /tests/functions/normalize_aarr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/normalize_aarr -------------------------------------------------------------------------------- /tests/functions/print_aarr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/print_aarr -------------------------------------------------------------------------------- /tests/functions/subenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/subenv -------------------------------------------------------------------------------- /tests/functions/t_reset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/t_reset -------------------------------------------------------------------------------- /tests/functions/t_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/t_setup -------------------------------------------------------------------------------- /tests/functions/t_setup_real: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/t_setup_real -------------------------------------------------------------------------------- /tests/functions/t_teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/t_teardown -------------------------------------------------------------------------------- /tests/functions/t_unload_antidote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/functions/t_unload_antidote -------------------------------------------------------------------------------- /tests/test_alt_zsh_defer_bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_alt_zsh_defer_bundle.md -------------------------------------------------------------------------------- /tests/test_antidote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_antidote.md -------------------------------------------------------------------------------- /tests/test_antidote_core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_antidote_core.md -------------------------------------------------------------------------------- /tests/test_bundle_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_bundle_helpers.md -------------------------------------------------------------------------------- /tests/test_cmd_bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_bundle.md -------------------------------------------------------------------------------- /tests/test_cmd_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_help.md -------------------------------------------------------------------------------- /tests/test_cmd_home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_home.md -------------------------------------------------------------------------------- /tests/test_cmd_init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_init.md -------------------------------------------------------------------------------- /tests/test_cmd_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_install.md -------------------------------------------------------------------------------- /tests/test_cmd_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_list.md -------------------------------------------------------------------------------- /tests/test_cmd_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_load.md -------------------------------------------------------------------------------- /tests/test_cmd_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_main.md -------------------------------------------------------------------------------- /tests/test_cmd_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_path.md -------------------------------------------------------------------------------- /tests/test_cmd_purge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_purge.md -------------------------------------------------------------------------------- /tests/test_cmd_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_script.md -------------------------------------------------------------------------------- /tests/test_cmd_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_cmd_update.md -------------------------------------------------------------------------------- /tests/test_fpath_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_fpath_rules.md -------------------------------------------------------------------------------- /tests/test_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_helpers.md -------------------------------------------------------------------------------- /tests/test_mockgit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_mockgit.md -------------------------------------------------------------------------------- /tests/test_parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_parser.md -------------------------------------------------------------------------------- /tests/test_paths_with_spaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_paths_with_spaces.md -------------------------------------------------------------------------------- /tests/test_real.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_real.md -------------------------------------------------------------------------------- /tests/test_setopts_special.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_setopts_special.md -------------------------------------------------------------------------------- /tests/test_zcompile_bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_zcompile_bundle.md -------------------------------------------------------------------------------- /tests/test_zcompile_static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_zcompile_static.md -------------------------------------------------------------------------------- /tests/test_zsetopts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/test_zsetopts.md -------------------------------------------------------------------------------- /tests/testdata/.zplugins_fake_load.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/.zplugins_fake_load.zsh -------------------------------------------------------------------------------- /tests/testdata/.zplugins_fake_zcompile_static.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/.zplugins_fake_zcompile_static.zsh -------------------------------------------------------------------------------- /tests/testdata/.zsh_plugins.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/.zsh_plugins.zsh -------------------------------------------------------------------------------- /tests/testdata/.zsh_plugins_empty.txt: -------------------------------------------------------------------------------- 1 | # comments 2 | # nothing here 3 | -------------------------------------------------------------------------------- /tests/testdata/.zsh_plugins_multi_defer.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/.zsh_plugins_multi_defer.zsh -------------------------------------------------------------------------------- /tests/testdata/.zsh_plugins_no_defer.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/.zsh_plugins_no_defer.zsh -------------------------------------------------------------------------------- /tests/testdata/.zsh_plugins_purged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/.zsh_plugins_purged.txt -------------------------------------------------------------------------------- /tests/testdata/.zsh_plugins_repos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/.zsh_plugins_repos.txt -------------------------------------------------------------------------------- /tests/testdata/antibody/script-foobar.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/antibody/script-foobar.zsh -------------------------------------------------------------------------------- /tests/testdata/antibody/script-fooqux.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/antibody/script-fooqux.zsh -------------------------------------------------------------------------------- /tests/testdata/real/.zsh_plugins.crlf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/real/.zsh_plugins.crlf.txt -------------------------------------------------------------------------------- /tests/testdata/real/.zsh_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/real/.zsh_plugins.txt -------------------------------------------------------------------------------- /tests/testdata/real/.zsh_plugins.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/real/.zsh_plugins.zsh -------------------------------------------------------------------------------- /tests/testdata/real/repo-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/real/repo-list.txt -------------------------------------------------------------------------------- /tests/testdata/script-foobar.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/script-foobar.zsh -------------------------------------------------------------------------------- /tests/testdata/script-fooqux.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/testdata/script-fooqux.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/git-AT-github.com-COLON-foo-SLASH-qux/.mockgit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/git-AT-github.com-COLON-foo-SLASH-qux/qux.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/git-AT-github.com-COLON-foo-SLASH-qux/qux.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-bar/.mockgit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-bar/bar.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-bar/bar.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-baz/.mockgit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-baz/baz.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-baz/baz.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-baz/functions/_baz: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | echo _baz completion 3 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-baz/functions/baz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-foo-SLASH-baz/functions/baz -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-getantidote-SLASH-zsh-defer/.mockgit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-getantidote-SLASH-zsh-defer/zsh-defer.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-getantidote-SLASH-zsh-defer/zsh-defer.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/.mockgit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/custom/themes/pretty.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/custom/themes/pretty.zsh-theme -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/custom/themes/ugly.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/custom/themes/ugly.zsh-theme -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/lib/lib1.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/lib/lib1.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/lib/lib2.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/lib/lib2.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/lib/lib3.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/lib/lib3.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/oh-my.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/oh-my.sh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/docker/_docker: -------------------------------------------------------------------------------- 1 | #compdef 2 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/docker/docker.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/docker/docker.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/extract/extract.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/extract/extract.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/macos/functions/macos_func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/macos/functions/macos_func -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/macos/macos.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/macos/macos.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/magic-enter/magic-enter.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/plugins/magic-enter/magic-enter.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/themes/pretty.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antibody/https-COLON--SLASH--SLASH-github.com-SLASH-ohmy-SLASH-ohmy/themes/pretty.zsh-theme -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/bar/.mockgit/config/remote.origin.url: -------------------------------------------------------------------------------- 1 | https://github.com/foo/bar 2 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/bar/bar.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/foo/bar/bar.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/baz/.mockgit/config/remote.origin.url: -------------------------------------------------------------------------------- 1 | https://github.com/foo/baz 2 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/baz/baz.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/foo/baz/baz.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/baz/functions/_baz: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | echo _baz completion 3 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/baz/functions/baz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/foo/baz/functions/baz -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/qux/.mockgit/config/remote.origin.url: -------------------------------------------------------------------------------- 1 | git@github.com:foo/qux 2 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/foo/qux/qux.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/foo/qux/qux.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/getantidote/zsh-defer/.mockgit/config/remote.origin.url: -------------------------------------------------------------------------------- 1 | https://github.com/getantidote/zsh-defer 2 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/getantidote/zsh-defer/zsh-defer.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/getantidote/zsh-defer/zsh-defer.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/.mockgit/config/remote.origin.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/.mockgit/config/remote.origin.url -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/custom/themes/pretty.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/custom/themes/pretty.zsh-theme -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/custom/themes/ugly.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/custom/themes/ugly.zsh-theme -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/lib/lib1.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/lib/lib1.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/lib/lib2.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/lib/lib2.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/lib/lib3.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/lib/lib3.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/oh-my.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/oh-my.sh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/docker/_docker: -------------------------------------------------------------------------------- 1 | #compdef 2 | -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/docker/docker.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/docker/docker.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/extract/extract.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/extract/extract.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/macos/functions/macos_func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/macos/functions/macos_func -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/macos/macos.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/macos/macos.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/magic-enter/magic-enter.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/plugins/magic-enter/magic-enter.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.cache/antidote/ohmy/ohmy/themes/pretty.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.cache/antidote/ohmy/ohmy/themes/pretty.zsh-theme -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/.zplugins_fake_load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/.zplugins_fake_load -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/.zsh_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/.zsh_plugins.txt -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/aliases.zsh: -------------------------------------------------------------------------------- 1 | echo "sourcing aliases.zsh..." 2 | -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/custom/lib/lib1.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/custom/lib/lib1.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/custom/lib/lib2.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/custom/lib/lib2.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/custom/plugins/grizwold/grizwold.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/custom/plugins/grizwold/grizwold.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/custom/plugins/myplugin/myplugin.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/custom/plugins/myplugin/myplugin.plugin.zsh -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/custom/plugins/mytheme/mytheme.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/custom/plugins/mytheme/mytheme.zsh-theme -------------------------------------------------------------------------------- /tests/tmp_home/.zsh/functions/myfunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tests/tmp_home/.zsh/functions/myfunc -------------------------------------------------------------------------------- /tools/buildman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tools/buildman -------------------------------------------------------------------------------- /tools/bumpver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tools/bumpver -------------------------------------------------------------------------------- /tools/run-clitests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tools/run-clitests -------------------------------------------------------------------------------- /tools/sloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/antidote/HEAD/tools/sloc --------------------------------------------------------------------------------