oh-my-devpod 0.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1604) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +29 -0
  3. package/bin/omd +40 -0
  4. package/lib/platform.js +80 -0
  5. package/lib/postinstall.js +40 -0
  6. package/lib/source.js +45 -0
  7. package/package.json +49 -0
  8. package/runtime/VERSION +1 -0
  9. package/runtime/bin/omd +0 -0
  10. package/runtime/build/install-antidote.sh +26 -0
  11. package/runtime/build/install-lazyvim.sh +65 -0
  12. package/runtime/components.toml +171 -0
  13. package/runtime/config/.p10k.zsh +193 -0
  14. package/runtime/config/.zsh_plugins.txt +17 -0
  15. package/runtime/config/.zshrc +53 -0
  16. package/runtime/install/bootstrap.sh +474 -0
  17. package/runtime/install/update.sh +264 -0
  18. package/runtime/modules/core/linuxbrew.sh +95 -0
  19. package/runtime/modules/core/micromamba.sh +26 -0
  20. package/runtime/modules/core/uv.sh +26 -0
  21. package/runtime/modules/core/zsh.sh +33 -0
  22. package/runtime/modules/lib/common.sh +372 -0
  23. package/runtime/modules/lib/postflight.sh +20 -0
  24. package/runtime/modules/tools/atuin.sh +26 -0
  25. package/runtime/modules/tools/bat.sh +26 -0
  26. package/runtime/modules/tools/btop.sh +26 -0
  27. package/runtime/modules/tools/fd.sh +26 -0
  28. package/runtime/modules/tools/fzf.sh +26 -0
  29. package/runtime/modules/tools/git.sh +26 -0
  30. package/runtime/modules/tools/jq.sh +26 -0
  31. package/runtime/modules/tools/lazyvim.sh +71 -0
  32. package/runtime/modules/tools/neovim.sh +26 -0
  33. package/runtime/modules/tools/ripgrep.sh +26 -0
  34. package/runtime/modules/tools/yazi.sh +26 -0
  35. package/runtime/modules/tools/zellij.sh +26 -0
  36. package/runtime/modules/tools/zsh-config.sh +155 -0
  37. package/runtime/vendor/nvim/lazyvim-starter/.neoconf.json +15 -0
  38. package/runtime/vendor/nvim/lazyvim-starter/.oh-my-devpod-source-commit +1 -0
  39. package/runtime/vendor/nvim/lazyvim-starter/LICENSE +201 -0
  40. package/runtime/vendor/nvim/lazyvim-starter/README.md +4 -0
  41. package/runtime/vendor/nvim/lazyvim-starter/init.lua +2 -0
  42. package/runtime/vendor/nvim/lazyvim-starter/lua/config/autocmds.lua +8 -0
  43. package/runtime/vendor/nvim/lazyvim-starter/lua/config/keymaps.lua +3 -0
  44. package/runtime/vendor/nvim/lazyvim-starter/lua/config/lazy.lua +53 -0
  45. package/runtime/vendor/nvim/lazyvim-starter/lua/config/options.lua +3 -0
  46. package/runtime/vendor/nvim/lazyvim-starter/lua/plugins/example.lua +197 -0
  47. package/runtime/vendor/nvim/lazyvim-starter/stylua.toml +3 -0
  48. package/runtime/vendor/releases/antidote/v2.0.10/SHA256SUMS +1 -0
  49. package/runtime/vendor/releases/antidote/v2.0.10/antidote-v2.0.10.tar.gz +0 -0
  50. package/runtime/vendor/zsh/ohmyzsh/.devcontainer/devcontainer.json +20 -0
  51. package/runtime/vendor/zsh/ohmyzsh/.editorconfig +15 -0
  52. package/runtime/vendor/zsh/ohmyzsh/.github/CODEOWNERS +19 -0
  53. package/runtime/vendor/zsh/ohmyzsh/.github/FUNDING.yml +6 -0
  54. package/runtime/vendor/zsh/ohmyzsh/.github/INCIDENT_RESPONSE_PLAN.md +87 -0
  55. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/bug_report.yml +68 -0
  56. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/bug_report_omz.yml +77 -0
  57. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/config.yml +8 -0
  58. package/runtime/vendor/zsh/ohmyzsh/.github/ISSUE_TEMPLATE/feature_request.yml +37 -0
  59. package/runtime/vendor/zsh/ohmyzsh/.github/PULL_REQUEST_TEMPLATE.md +21 -0
  60. package/runtime/vendor/zsh/ohmyzsh/.github/dependabot.yml +14 -0
  61. package/runtime/vendor/zsh/ohmyzsh/.github/dependencies.yml +56 -0
  62. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies/requirements.txt +7 -0
  63. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies/updater.py +619 -0
  64. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/dependencies.yml +43 -0
  65. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer/.vercelignore +2 -0
  66. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer/vercel.json +23 -0
  67. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/installer.yml +66 -0
  68. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/main.yml +43 -0
  69. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/project.yml +155 -0
  70. package/runtime/vendor/zsh/ohmyzsh/.github/workflows/scorecard.yml +65 -0
  71. package/runtime/vendor/zsh/ohmyzsh/.prettierrc +4 -0
  72. package/runtime/vendor/zsh/ohmyzsh/CODE_OF_CONDUCT.md +76 -0
  73. package/runtime/vendor/zsh/ohmyzsh/CONTRIBUTING.md +270 -0
  74. package/runtime/vendor/zsh/ohmyzsh/LICENSE.txt +21 -0
  75. package/runtime/vendor/zsh/ohmyzsh/README.md +564 -0
  76. package/runtime/vendor/zsh/ohmyzsh/SECURITY.md +23 -0
  77. package/runtime/vendor/zsh/ohmyzsh/lib/async_prompt.zsh +145 -0
  78. package/runtime/vendor/zsh/ohmyzsh/lib/bzr.zsh +14 -0
  79. package/runtime/vendor/zsh/ohmyzsh/lib/cli.zsh +944 -0
  80. package/runtime/vendor/zsh/ohmyzsh/lib/clipboard.zsh +107 -0
  81. package/runtime/vendor/zsh/ohmyzsh/lib/compfix.zsh +44 -0
  82. package/runtime/vendor/zsh/ohmyzsh/lib/completion.zsh +78 -0
  83. package/runtime/vendor/zsh/ohmyzsh/lib/correction.zsh +10 -0
  84. package/runtime/vendor/zsh/ohmyzsh/lib/diagnostics.zsh +353 -0
  85. package/runtime/vendor/zsh/ohmyzsh/lib/directories.zsh +40 -0
  86. package/runtime/vendor/zsh/ohmyzsh/lib/functions.zsh +284 -0
  87. package/runtime/vendor/zsh/ohmyzsh/lib/git.zsh +367 -0
  88. package/runtime/vendor/zsh/ohmyzsh/lib/grep.zsh +41 -0
  89. package/runtime/vendor/zsh/ohmyzsh/lib/history.zsh +48 -0
  90. package/runtime/vendor/zsh/ohmyzsh/lib/key-bindings.zsh +145 -0
  91. package/runtime/vendor/zsh/ohmyzsh/lib/misc.zsh +38 -0
  92. package/runtime/vendor/zsh/ohmyzsh/lib/nvm.zsh +6 -0
  93. package/runtime/vendor/zsh/ohmyzsh/lib/prompt_info_functions.zsh +45 -0
  94. package/runtime/vendor/zsh/ohmyzsh/lib/spectrum.zsh +38 -0
  95. package/runtime/vendor/zsh/ohmyzsh/lib/termsupport.zsh +164 -0
  96. package/runtime/vendor/zsh/ohmyzsh/lib/tests/cli.test.zsh +169 -0
  97. package/runtime/vendor/zsh/ohmyzsh/lib/theme-and-appearance.zsh +81 -0
  98. package/runtime/vendor/zsh/ohmyzsh/lib/vcs_info.zsh +53 -0
  99. package/runtime/vendor/zsh/ohmyzsh/oh-my-zsh.sh +234 -0
  100. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/1password.plugin.zsh +15 -0
  101. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/README.md +40 -0
  102. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/_opswd +9 -0
  103. package/runtime/vendor/zsh/ohmyzsh/plugins/1password/opswd +49 -0
  104. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/.zunit.yml +9 -0
  105. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/README.md +70 -0
  106. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/alias-finder.plugin.zsh +70 -0
  107. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_output/.gitkeep +0 -0
  108. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_support/.gitkeep +0 -0
  109. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/_support/bootstrap +2 -0
  110. package/runtime/vendor/zsh/ohmyzsh/plugins/alias-finder/tests/test_run.sh +107 -0
  111. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/README.md +28 -0
  112. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/aliases.plugin.zsh +14 -0
  113. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/cheatsheet.py +69 -0
  114. package/runtime/vendor/zsh/ohmyzsh/plugins/aliases/termcolor.py +168 -0
  115. package/runtime/vendor/zsh/ohmyzsh/plugins/ansible/README.md +31 -0
  116. package/runtime/vendor/zsh/ohmyzsh/plugins/ansible/ansible.plugin.zsh +28 -0
  117. package/runtime/vendor/zsh/ohmyzsh/plugins/ant/README.md +12 -0
  118. package/runtime/vendor/zsh/ohmyzsh/plugins/ant/_ant +22 -0
  119. package/runtime/vendor/zsh/ohmyzsh/plugins/ant/ant.plugin.zsh +2 -0
  120. package/runtime/vendor/zsh/ohmyzsh/plugins/apache2-macports/README.md +21 -0
  121. package/runtime/vendor/zsh/ohmyzsh/plugins/apache2-macports/apache2-macports.plugin.zsh +6 -0
  122. package/runtime/vendor/zsh/ohmyzsh/plugins/arcanist/README.md +43 -0
  123. package/runtime/vendor/zsh/ohmyzsh/plugins/arcanist/arcanist.plugin.zsh +39 -0
  124. package/runtime/vendor/zsh/ohmyzsh/plugins/archlinux/README.md +184 -0
  125. package/runtime/vendor/zsh/ohmyzsh/plugins/archlinux/archlinux.plugin.zsh +204 -0
  126. package/runtime/vendor/zsh/ohmyzsh/plugins/arduino-cli/README.md +9 -0
  127. package/runtime/vendor/zsh/ohmyzsh/plugins/arduino-cli/arduino-cli.plugin.zsh +14 -0
  128. package/runtime/vendor/zsh/ohmyzsh/plugins/argocd/README.md +20 -0
  129. package/runtime/vendor/zsh/ohmyzsh/plugins/argocd/argocd.plugin.zsh +14 -0
  130. package/runtime/vendor/zsh/ohmyzsh/plugins/asdf/README.md +48 -0
  131. package/runtime/vendor/zsh/ohmyzsh/plugins/asdf/asdf.plugin.zsh +15 -0
  132. package/runtime/vendor/zsh/ohmyzsh/plugins/autoenv/README.md +20 -0
  133. package/runtime/vendor/zsh/ohmyzsh/plugins/autoenv/autoenv.plugin.zsh +80 -0
  134. package/runtime/vendor/zsh/ohmyzsh/plugins/autojump/README.md +11 -0
  135. package/runtime/vendor/zsh/ohmyzsh/plugins/autojump/autojump.plugin.zsh +41 -0
  136. package/runtime/vendor/zsh/ohmyzsh/plugins/autopep8/README.md +8 -0
  137. package/runtime/vendor/zsh/ohmyzsh/plugins/autopep8/_autopep8 +32 -0
  138. package/runtime/vendor/zsh/ohmyzsh/plugins/aws/README.md +98 -0
  139. package/runtime/vendor/zsh/ohmyzsh/plugins/aws/aws.plugin.zsh +338 -0
  140. package/runtime/vendor/zsh/ohmyzsh/plugins/azure/README.md +49 -0
  141. package/runtime/vendor/zsh/ohmyzsh/plugins/azure/azure.plugin.zsh +60 -0
  142. package/runtime/vendor/zsh/ohmyzsh/plugins/battery/README.md +42 -0
  143. package/runtime/vendor/zsh/ohmyzsh/plugins/battery/battery.plugin.zsh +314 -0
  144. package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/README.md +29 -0
  145. package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/_bazel +341 -0
  146. package/runtime/vendor/zsh/ohmyzsh/plugins/bazel/bazel.plugin.zsh +9 -0
  147. package/runtime/vendor/zsh/ohmyzsh/plugins/bbedit/README.md +20 -0
  148. package/runtime/vendor/zsh/ohmyzsh/plugins/bbedit/bbedit.plugin.zsh +21 -0
  149. package/runtime/vendor/zsh/ohmyzsh/plugins/bedtools/README.md +5 -0
  150. package/runtime/vendor/zsh/ohmyzsh/plugins/bedtools/_bedtools +64 -0
  151. package/runtime/vendor/zsh/ohmyzsh/plugins/bgnotify/README.md +64 -0
  152. package/runtime/vendor/zsh/ohmyzsh/plugins/bgnotify/bgnotify.plugin.zsh +144 -0
  153. package/runtime/vendor/zsh/ohmyzsh/plugins/bower/README.md +17 -0
  154. package/runtime/vendor/zsh/ohmyzsh/plugins/bower/_bower +58 -0
  155. package/runtime/vendor/zsh/ohmyzsh/plugins/bower/bower.plugin.zsh +84 -0
  156. package/runtime/vendor/zsh/ohmyzsh/plugins/branch/README.md +49 -0
  157. package/runtime/vendor/zsh/ohmyzsh/plugins/branch/branch.plugin.zsh +35 -0
  158. package/runtime/vendor/zsh/ohmyzsh/plugins/brew/README.md +68 -0
  159. package/runtime/vendor/zsh/ohmyzsh/plugins/brew/brew.plugin.zsh +85 -0
  160. package/runtime/vendor/zsh/ohmyzsh/plugins/bridgetown/README.md +26 -0
  161. package/runtime/vendor/zsh/ohmyzsh/plugins/bridgetown/bridgetown.plugin.zsh +12 -0
  162. package/runtime/vendor/zsh/ohmyzsh/plugins/buf/README.md +9 -0
  163. package/runtime/vendor/zsh/ohmyzsh/plugins/buf/buf.plugin.zsh +14 -0
  164. package/runtime/vendor/zsh/ohmyzsh/plugins/bun/README.md +20 -0
  165. package/runtime/vendor/zsh/ohmyzsh/plugins/bun/bun.plugin.zsh +14 -0
  166. package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/README.md +74 -0
  167. package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/_bundler +105 -0
  168. package/runtime/vendor/zsh/ohmyzsh/plugins/bundler/bundler.plugin.zsh +95 -0
  169. package/runtime/vendor/zsh/ohmyzsh/plugins/cabal/README.md +9 -0
  170. package/runtime/vendor/zsh/ohmyzsh/plugins/cabal/cabal.plugin.zsh +93 -0
  171. package/runtime/vendor/zsh/ohmyzsh/plugins/cake/README.md +15 -0
  172. package/runtime/vendor/zsh/ohmyzsh/plugins/cake/cake.plugin.zsh +33 -0
  173. package/runtime/vendor/zsh/ohmyzsh/plugins/cakephp3/README.md +16 -0
  174. package/runtime/vendor/zsh/ohmyzsh/plugins/cakephp3/cakephp3.plugin.zsh +38 -0
  175. package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/README.md +14 -0
  176. package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/_capistrano +49 -0
  177. package/runtime/vendor/zsh/ohmyzsh/plugins/capistrano/capistrano.plugin.zsh +11 -0
  178. package/runtime/vendor/zsh/ohmyzsh/plugins/cask/README.md +15 -0
  179. package/runtime/vendor/zsh/ohmyzsh/plugins/cask/cask.plugin.zsh +26 -0
  180. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/README.md +24 -0
  181. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/catimg.plugin.zsh +19 -0
  182. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/catimg.sh +92 -0
  183. package/runtime/vendor/zsh/ohmyzsh/plugins/catimg/colors.png +0 -0
  184. package/runtime/vendor/zsh/ohmyzsh/plugins/celery/README.md +9 -0
  185. package/runtime/vendor/zsh/ohmyzsh/plugins/celery/_celery +129 -0
  186. package/runtime/vendor/zsh/ohmyzsh/plugins/charm/README.md +9 -0
  187. package/runtime/vendor/zsh/ohmyzsh/plugins/charm/charm.plugin.zsh +14 -0
  188. package/runtime/vendor/zsh/ohmyzsh/plugins/chezmoi/README.md +11 -0
  189. package/runtime/vendor/zsh/ohmyzsh/plugins/chezmoi/chezmoi.plugin.zsh +14 -0
  190. package/runtime/vendor/zsh/ohmyzsh/plugins/chruby/README.md +21 -0
  191. package/runtime/vendor/zsh/ohmyzsh/plugins/chruby/chruby.plugin.zsh +90 -0
  192. package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/README.md +45 -0
  193. package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/chucknorris.plugin.zsh +24 -0
  194. package/runtime/vendor/zsh/ohmyzsh/plugins/chucknorris/fortunes/chucknorris +568 -0
  195. package/runtime/vendor/zsh/ohmyzsh/plugins/cloudfoundry/README.md +58 -0
  196. package/runtime/vendor/zsh/ohmyzsh/plugins/cloudfoundry/cloudfoundry.plugin.zsh +34 -0
  197. package/runtime/vendor/zsh/ohmyzsh/plugins/codeclimate/README.md +8 -0
  198. package/runtime/vendor/zsh/ohmyzsh/plugins/codeclimate/_codeclimate +82 -0
  199. package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/README.md +31 -0
  200. package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/_coffee +81 -0
  201. package/runtime/vendor/zsh/ohmyzsh/plugins/coffee/coffee.plugin.zsh +16 -0
  202. package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/README.md +48 -0
  203. package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/colemak-less +6 -0
  204. package/runtime/vendor/zsh/ohmyzsh/plugins/colemak/colemak.plugin.zsh +38 -0
  205. package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/README.md +32 -0
  206. package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/colored-man-pages.plugin.zsh +54 -0
  207. package/runtime/vendor/zsh/ohmyzsh/plugins/colored-man-pages/nroff +12 -0
  208. package/runtime/vendor/zsh/ohmyzsh/plugins/colorize/README.md +56 -0
  209. package/runtime/vendor/zsh/ohmyzsh/plugins/colorize/colorize.plugin.zsh +114 -0
  210. package/runtime/vendor/zsh/ohmyzsh/plugins/command-not-found/README.md +36 -0
  211. package/runtime/vendor/zsh/ohmyzsh/plugins/command-not-found/command-not-found.plugin.zsh +76 -0
  212. package/runtime/vendor/zsh/ohmyzsh/plugins/common-aliases/README.md +130 -0
  213. package/runtime/vendor/zsh/ohmyzsh/plugins/common-aliases/common-aliases.plugin.zsh +90 -0
  214. package/runtime/vendor/zsh/ohmyzsh/plugins/compleat/README.md +9 -0
  215. package/runtime/vendor/zsh/ohmyzsh/plugins/compleat/compleat.plugin.zsh +20 -0
  216. package/runtime/vendor/zsh/ohmyzsh/plugins/composer/README.md +35 -0
  217. package/runtime/vendor/zsh/ohmyzsh/plugins/composer/composer.plugin.zsh +76 -0
  218. package/runtime/vendor/zsh/ohmyzsh/plugins/conda/README.md +37 -0
  219. package/runtime/vendor/zsh/ohmyzsh/plugins/conda/conda.plugin.zsh +23 -0
  220. package/runtime/vendor/zsh/ohmyzsh/plugins/conda-env/README.md +44 -0
  221. package/runtime/vendor/zsh/ohmyzsh/plugins/conda-env/conda-env.plugin.zsh +9 -0
  222. package/runtime/vendor/zsh/ohmyzsh/plugins/copybuffer/README.md +11 -0
  223. package/runtime/vendor/zsh/ohmyzsh/plugins/copybuffer/copybuffer.plugin.zsh +16 -0
  224. package/runtime/vendor/zsh/ohmyzsh/plugins/copyfile/README.md +11 -0
  225. package/runtime/vendor/zsh/ohmyzsh/plugins/copyfile/copyfile.plugin.zsh +19 -0
  226. package/runtime/vendor/zsh/ohmyzsh/plugins/copypath/README.md +15 -0
  227. package/runtime/vendor/zsh/ohmyzsh/plugins/copypath/copypath.plugin.zsh +15 -0
  228. package/runtime/vendor/zsh/ohmyzsh/plugins/cp/README.md +32 -0
  229. package/runtime/vendor/zsh/ohmyzsh/plugins/cp/cp.plugin.zsh +4 -0
  230. package/runtime/vendor/zsh/ohmyzsh/plugins/cpanm/README.md +9 -0
  231. package/runtime/vendor/zsh/ohmyzsh/plugins/cpanm/_cpanm +64 -0
  232. package/runtime/vendor/zsh/ohmyzsh/plugins/dash/README.md +28 -0
  233. package/runtime/vendor/zsh/ohmyzsh/plugins/dash/dash.plugin.zsh +84 -0
  234. package/runtime/vendor/zsh/ohmyzsh/plugins/dbt/README.md +27 -0
  235. package/runtime/vendor/zsh/ohmyzsh/plugins/dbt/dbt.plugin.zsh +23 -0
  236. package/runtime/vendor/zsh/ohmyzsh/plugins/debian/README.md +92 -0
  237. package/runtime/vendor/zsh/ohmyzsh/plugins/debian/debian.plugin.zsh +227 -0
  238. package/runtime/vendor/zsh/ohmyzsh/plugins/deno/README.md +20 -0
  239. package/runtime/vendor/zsh/ohmyzsh/plugins/deno/deno.plugin.zsh +28 -0
  240. package/runtime/vendor/zsh/ohmyzsh/plugins/dircycle/README.md +82 -0
  241. package/runtime/vendor/zsh/ohmyzsh/plugins/dircycle/dircycle.plugin.zsh +87 -0
  242. package/runtime/vendor/zsh/ohmyzsh/plugins/direnv/README.md +15 -0
  243. package/runtime/vendor/zsh/ohmyzsh/plugins/direnv/direnv.plugin.zsh +19 -0
  244. package/runtime/vendor/zsh/ohmyzsh/plugins/dirhistory/README.md +105 -0
  245. package/runtime/vendor/zsh/ohmyzsh/plugins/dirhistory/dirhistory.plugin.zsh +236 -0
  246. package/runtime/vendor/zsh/ohmyzsh/plugins/dirpersist/README.md +10 -0
  247. package/runtime/vendor/zsh/ohmyzsh/plugins/dirpersist/dirpersist.plugin.zsh +21 -0
  248. package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/README.md +32 -0
  249. package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/_dnf5 +570 -0
  250. package/runtime/vendor/zsh/ohmyzsh/plugins/dnf/dnf.plugin.zsh +27 -0
  251. package/runtime/vendor/zsh/ohmyzsh/plugins/dnote/README.md +51 -0
  252. package/runtime/vendor/zsh/ohmyzsh/plugins/dnote/_dnote +39 -0
  253. package/runtime/vendor/zsh/ohmyzsh/plugins/docker/README.md +89 -0
  254. package/runtime/vendor/zsh/ohmyzsh/plugins/docker/completions/_docker +3126 -0
  255. package/runtime/vendor/zsh/ohmyzsh/plugins/docker/docker.plugin.zsh +69 -0
  256. package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/README.md +36 -0
  257. package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/_docker-compose +421 -0
  258. package/runtime/vendor/zsh/ohmyzsh/plugins/docker-compose/docker-compose.plugin.zsh +27 -0
  259. package/runtime/vendor/zsh/ohmyzsh/plugins/doctl/README.md +9 -0
  260. package/runtime/vendor/zsh/ohmyzsh/plugins/doctl/doctl.plugin.zsh +17 -0
  261. package/runtime/vendor/zsh/ohmyzsh/plugins/dotenv/README.md +100 -0
  262. package/runtime/vendor/zsh/ohmyzsh/plugins/dotenv/dotenv.plugin.zsh +67 -0
  263. package/runtime/vendor/zsh/ohmyzsh/plugins/dotnet/README.md +26 -0
  264. package/runtime/vendor/zsh/ohmyzsh/plugins/dotnet/dotnet.plugin.zsh +27 -0
  265. package/runtime/vendor/zsh/ohmyzsh/plugins/droplr/README.md +19 -0
  266. package/runtime/vendor/zsh/ohmyzsh/plugins/droplr/droplr.plugin.zsh +15 -0
  267. package/runtime/vendor/zsh/ohmyzsh/plugins/drush/README.md +66 -0
  268. package/runtime/vendor/zsh/ohmyzsh/plugins/drush/drush.complete.sh +50 -0
  269. package/runtime/vendor/zsh/ohmyzsh/plugins/drush/drush.plugin.zsh +107 -0
  270. package/runtime/vendor/zsh/ohmyzsh/plugins/eecms/README.md +11 -0
  271. package/runtime/vendor/zsh/ohmyzsh/plugins/eecms/eecms.plugin.zsh +20 -0
  272. package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/README.md +30 -0
  273. package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/emacs.plugin.zsh +68 -0
  274. package/runtime/vendor/zsh/ohmyzsh/plugins/emacs/emacsclient.sh +38 -0
  275. package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/README.md +33 -0
  276. package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/_ember-cli +189 -0
  277. package/runtime/vendor/zsh/ohmyzsh/plugins/ember-cli/ember-cli.plugin.zsh +12 -0
  278. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/README.md +127 -0
  279. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji-char-definitions.zsh +7274 -0
  280. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji-data.txt +4122 -0
  281. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/emoji.plugin.zsh +110 -0
  282. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/gemoji_db.json +21538 -0
  283. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji/update_emoji.py +213 -0
  284. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji-clock/README.md +14 -0
  285. package/runtime/vendor/zsh/ohmyzsh/plugins/emoji-clock/emoji-clock.plugin.zsh +33 -0
  286. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/README.md +39 -0
  287. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty.plugin.zsh +55 -0
  288. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_emoji_set.zsh +24 -0
  289. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_floral_set.zsh +18 -0
  290. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_love_set.zsh +34 -0
  291. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_nature_set.zsh +58 -0
  292. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_stellar_set.zsh +25 -0
  293. package/runtime/vendor/zsh/ohmyzsh/plugins/emotty/emotty_zodiac_set.zsh +29 -0
  294. package/runtime/vendor/zsh/ohmyzsh/plugins/encode64/README.md +73 -0
  295. package/runtime/vendor/zsh/ohmyzsh/plugins/encode64/encode64.plugin.zsh +27 -0
  296. package/runtime/vendor/zsh/ohmyzsh/plugins/extract/README.md +69 -0
  297. package/runtime/vendor/zsh/ohmyzsh/plugins/extract/_extract +57 -0
  298. package/runtime/vendor/zsh/ohmyzsh/plugins/extract/extract.plugin.zsh +145 -0
  299. package/runtime/vendor/zsh/ohmyzsh/plugins/eza/README.md +144 -0
  300. package/runtime/vendor/zsh/ohmyzsh/plugins/eza/eza.plugin.zsh +76 -0
  301. package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/README.md +9 -0
  302. package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/_fab +69 -0
  303. package/runtime/vendor/zsh/ohmyzsh/plugins/fabric/fabric.plugin.zsh +0 -0
  304. package/runtime/vendor/zsh/ohmyzsh/plugins/fancy-ctrl-z/README.md +24 -0
  305. package/runtime/vendor/zsh/ohmyzsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh +12 -0
  306. package/runtime/vendor/zsh/ohmyzsh/plugins/fasd/README.md +21 -0
  307. package/runtime/vendor/zsh/ohmyzsh/plugins/fasd/fasd.plugin.zsh +16 -0
  308. package/runtime/vendor/zsh/ohmyzsh/plugins/fastfile/README.md +85 -0
  309. package/runtime/vendor/zsh/ohmyzsh/plugins/fastfile/fastfile.plugin.zsh +128 -0
  310. package/runtime/vendor/zsh/ohmyzsh/plugins/fbterm/README.md +10 -0
  311. package/runtime/vendor/zsh/ohmyzsh/plugins/fbterm/fbterm.plugin.zsh +7 -0
  312. package/runtime/vendor/zsh/ohmyzsh/plugins/firewalld/README.md +22 -0
  313. package/runtime/vendor/zsh/ohmyzsh/plugins/firewalld/firewalld.plugin.zsh +17 -0
  314. package/runtime/vendor/zsh/ohmyzsh/plugins/flutter/README.md +28 -0
  315. package/runtime/vendor/zsh/ohmyzsh/plugins/flutter/flutter.plugin.zsh +29 -0
  316. package/runtime/vendor/zsh/ohmyzsh/plugins/fluxcd/README.md +9 -0
  317. package/runtime/vendor/zsh/ohmyzsh/plugins/fluxcd/fluxcd.plugin.zsh +14 -0
  318. package/runtime/vendor/zsh/ohmyzsh/plugins/fnm/README.md +9 -0
  319. package/runtime/vendor/zsh/ohmyzsh/plugins/fnm/fnm.plugin.zsh +13 -0
  320. package/runtime/vendor/zsh/ohmyzsh/plugins/foot/README.md +35 -0
  321. package/runtime/vendor/zsh/ohmyzsh/plugins/foot/foot.plugin.zsh +10 -0
  322. package/runtime/vendor/zsh/ohmyzsh/plugins/forklift/README.md +23 -0
  323. package/runtime/vendor/zsh/ohmyzsh/plugins/forklift/forklift.plugin.zsh +128 -0
  324. package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/README.md +7 -0
  325. package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/_fossil +32 -0
  326. package/runtime/vendor/zsh/ohmyzsh/plugins/fossil/fossil.plugin.zsh +56 -0
  327. package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/README.md +85 -0
  328. package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/_frontend +161 -0
  329. package/runtime/vendor/zsh/ohmyzsh/plugins/frontend-search/frontend-search.plugin.zsh +119 -0
  330. package/runtime/vendor/zsh/ohmyzsh/plugins/fzf/README.md +52 -0
  331. package/runtime/vendor/zsh/ohmyzsh/plugins/fzf/fzf.plugin.zsh +274 -0
  332. package/runtime/vendor/zsh/ohmyzsh/plugins/gas/README.md +10 -0
  333. package/runtime/vendor/zsh/ohmyzsh/plugins/gas/_gas +39 -0
  334. package/runtime/vendor/zsh/ohmyzsh/plugins/gatsby/README.md +7 -0
  335. package/runtime/vendor/zsh/ohmyzsh/plugins/gatsby/_gatsby +24 -0
  336. package/runtime/vendor/zsh/ohmyzsh/plugins/gcloud/README.md +24 -0
  337. package/runtime/vendor/zsh/ohmyzsh/plugins/gcloud/gcloud.plugin.zsh +52 -0
  338. package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/README.md +10 -0
  339. package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/_geeknote +157 -0
  340. package/runtime/vendor/zsh/ohmyzsh/plugins/geeknote/geeknote.plugin.zsh +2 -0
  341. package/runtime/vendor/zsh/ohmyzsh/plugins/gem/README.md +17 -0
  342. package/runtime/vendor/zsh/ohmyzsh/plugins/gem/completions/_gem +72 -0
  343. package/runtime/vendor/zsh/ohmyzsh/plugins/gem/gem.plugin.zsh +32 -0
  344. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/README.md +66 -0
  345. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-apple +79 -0
  346. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-monkey +32 -0
  347. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass-xkcd +68 -0
  348. package/runtime/vendor/zsh/ohmyzsh/plugins/genpass/genpass.plugin.zsh +1 -0
  349. package/runtime/vendor/zsh/ohmyzsh/plugins/gh/README.md +23 -0
  350. package/runtime/vendor/zsh/ohmyzsh/plugins/gh/gh.plugin.zsh +14 -0
  351. package/runtime/vendor/zsh/ohmyzsh/plugins/git/README.md +275 -0
  352. package/runtime/vendor/zsh/ohmyzsh/plugins/git/git.plugin.zsh +431 -0
  353. package/runtime/vendor/zsh/ohmyzsh/plugins/git-auto-fetch/README.md +50 -0
  354. package/runtime/vendor/zsh/ohmyzsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh +65 -0
  355. package/runtime/vendor/zsh/ohmyzsh/plugins/git-commit/README.md +47 -0
  356. package/runtime/vendor/zsh/ohmyzsh/plugins/git-commit/git-commit.plugin.zsh +58 -0
  357. package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/README.md +16 -0
  358. package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/git-escape-magic +135 -0
  359. package/runtime/vendor/zsh/ohmyzsh/plugins/git-escape-magic/git-escape-magic.plugin.zsh +9 -0
  360. package/runtime/vendor/zsh/ohmyzsh/plugins/git-extras/README.md +17 -0
  361. package/runtime/vendor/zsh/ohmyzsh/plugins/git-extras/git-extras.plugin.zsh +418 -0
  362. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/README.md +40 -0
  363. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/_git-flow +327 -0
  364. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow/git-flow.plugin.zsh +32 -0
  365. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow-avh/README.md +19 -0
  366. package/runtime/vendor/zsh/ohmyzsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh +526 -0
  367. package/runtime/vendor/zsh/ohmyzsh/plugins/git-hubflow/README.md +24 -0
  368. package/runtime/vendor/zsh/ohmyzsh/plugins/git-hubflow/git-hubflow.plugin.zsh +333 -0
  369. package/runtime/vendor/zsh/ohmyzsh/plugins/git-lfs/README.md +24 -0
  370. package/runtime/vendor/zsh/ohmyzsh/plugins/git-lfs/git-lfs.plugin.zsh +17 -0
  371. package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/README.md +72 -0
  372. package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/git-prompt.plugin.zsh +113 -0
  373. package/runtime/vendor/zsh/ohmyzsh/plugins/git-prompt/gitstatus.py +103 -0
  374. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/MANUAL.adoc +40 -0
  375. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/README.md +9 -0
  376. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/_git +274 -0
  377. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/git-completion.bash +3562 -0
  378. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/git-prompt.sh +594 -0
  379. package/runtime/vendor/zsh/ohmyzsh/plugins/gitfast/gitfast.plugin.zsh +11 -0
  380. package/runtime/vendor/zsh/ohmyzsh/plugins/github/README.md +45 -0
  381. package/runtime/vendor/zsh/ohmyzsh/plugins/github/_hub +174 -0
  382. package/runtime/vendor/zsh/ohmyzsh/plugins/github/github.plugin.zsh +77 -0
  383. package/runtime/vendor/zsh/ohmyzsh/plugins/gitignore/README.md +17 -0
  384. package/runtime/vendor/zsh/ohmyzsh/plugins/gitignore/gitignore.plugin.zsh +21 -0
  385. package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/README.md +9 -0
  386. package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/_asadmin +1150 -0
  387. package/runtime/vendor/zsh/ohmyzsh/plugins/glassfish/glassfish.plugin.zsh +0 -0
  388. package/runtime/vendor/zsh/ohmyzsh/plugins/globalias/README.md +79 -0
  389. package/runtime/vendor/zsh/ohmyzsh/plugins/globalias/globalias.plugin.zsh +23 -0
  390. package/runtime/vendor/zsh/ohmyzsh/plugins/gnu-utils/README.md +38 -0
  391. package/runtime/vendor/zsh/ohmyzsh/plugins/gnu-utils/gnu-utils.plugin.zsh +74 -0
  392. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/README.md +41 -0
  393. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/_golang +249 -0
  394. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/golang.plugin.zsh +38 -0
  395. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/templates/package.txt +29 -0
  396. package/runtime/vendor/zsh/ohmyzsh/plugins/golang/templates/search.txt +0 -0
  397. package/runtime/vendor/zsh/ohmyzsh/plugins/gpg-agent/README.md +14 -0
  398. package/runtime/vendor/zsh/ohmyzsh/plugins/gpg-agent/gpg-agent.plugin.zsh +17 -0
  399. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/LICENSE +19 -0
  400. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/README.md +30 -0
  401. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/_gradle +503 -0
  402. package/runtime/vendor/zsh/ohmyzsh/plugins/gradle/gradle.plugin.zsh +26 -0
  403. package/runtime/vendor/zsh/ohmyzsh/plugins/grails/README.md +16 -0
  404. package/runtime/vendor/zsh/ohmyzsh/plugins/grails/grails.plugin.zsh +60 -0
  405. package/runtime/vendor/zsh/ohmyzsh/plugins/grc/README.md +15 -0
  406. package/runtime/vendor/zsh/ohmyzsh/plugins/grc/grc.plugin.zsh +20 -0
  407. package/runtime/vendor/zsh/ohmyzsh/plugins/grunt/README.md +37 -0
  408. package/runtime/vendor/zsh/ohmyzsh/plugins/grunt/grunt.plugin.zsh +255 -0
  409. package/runtime/vendor/zsh/ohmyzsh/plugins/gulp/README.md +8 -0
  410. package/runtime/vendor/zsh/ohmyzsh/plugins/gulp/gulp.plugin.zsh +29 -0
  411. package/runtime/vendor/zsh/ohmyzsh/plugins/hanami/README.md +45 -0
  412. package/runtime/vendor/zsh/ohmyzsh/plugins/hanami/hanami.plugin.zsh +19 -0
  413. package/runtime/vendor/zsh/ohmyzsh/plugins/hasura/README.md +9 -0
  414. package/runtime/vendor/zsh/ohmyzsh/plugins/hasura/hasura.plugin.zsh +13 -0
  415. package/runtime/vendor/zsh/ohmyzsh/plugins/hcloud/README.md +143 -0
  416. package/runtime/vendor/zsh/ohmyzsh/plugins/hcloud/hcloud.plugin.zsh +129 -0
  417. package/runtime/vendor/zsh/ohmyzsh/plugins/helm/README.md +19 -0
  418. package/runtime/vendor/zsh/ohmyzsh/plugins/helm/helm.plugin.zsh +19 -0
  419. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku/README.md +9 -0
  420. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku/heroku.plugin.zsh +9 -0
  421. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku-alias/README.md +140 -0
  422. package/runtime/vendor/zsh/ohmyzsh/plugins/heroku-alias/heroku-alias.plugin.zsh +92 -0
  423. package/runtime/vendor/zsh/ohmyzsh/plugins/history/README.md +18 -0
  424. package/runtime/vendor/zsh/ohmyzsh/plugins/history/history.plugin.zsh +4 -0
  425. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/README.md +251 -0
  426. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/dependencies/OMZ-README.md +15 -0
  427. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/history-substring-search.plugin.zsh +25 -0
  428. package/runtime/vendor/zsh/ohmyzsh/plugins/history-substring-search/history-substring-search.zsh +846 -0
  429. package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/README.md +44 -0
  430. package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/fortunes/hitchhiker +275 -0
  431. package/runtime/vendor/zsh/ohmyzsh/plugins/hitchhiker/hitchhiker.plugin.zsh +28 -0
  432. package/runtime/vendor/zsh/ohmyzsh/plugins/hitokoto/README.md +15 -0
  433. package/runtime/vendor/zsh/ohmyzsh/plugins/hitokoto/hitokoto.plugin.zsh +18 -0
  434. package/runtime/vendor/zsh/ohmyzsh/plugins/homestead/README.md +9 -0
  435. package/runtime/vendor/zsh/ohmyzsh/plugins/homestead/homestead.plugin.zsh +10 -0
  436. package/runtime/vendor/zsh/ohmyzsh/plugins/httpie/README.md +14 -0
  437. package/runtime/vendor/zsh/ohmyzsh/plugins/httpie/_httpie +181 -0
  438. package/runtime/vendor/zsh/ohmyzsh/plugins/invoke/README.md +10 -0
  439. package/runtime/vendor/zsh/ohmyzsh/plugins/invoke/invoke.plugin.zsh +5 -0
  440. package/runtime/vendor/zsh/ohmyzsh/plugins/ionic/README.md +30 -0
  441. package/runtime/vendor/zsh/ohmyzsh/plugins/ionic/ionic.plugin.zsh +15 -0
  442. package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/LICENSE +22 -0
  443. package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/README.md +17 -0
  444. package/runtime/vendor/zsh/ohmyzsh/plugins/ipfs/_ipfs +791 -0
  445. package/runtime/vendor/zsh/ohmyzsh/plugins/isodate/README.md +22 -0
  446. package/runtime/vendor/zsh/ohmyzsh/plugins/isodate/isodate.plugin.zsh +7 -0
  447. package/runtime/vendor/zsh/ohmyzsh/plugins/istioctl/README.md +9 -0
  448. package/runtime/vendor/zsh/ohmyzsh/plugins/istioctl/istioctl.plugin.zsh +4 -0
  449. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/README.md +41 -0
  450. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/iterm2.plugin.zsh +79 -0
  451. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/iterm2_shell_integration.zsh +178 -0
  452. package/runtime/vendor/zsh/ohmyzsh/plugins/iterm2/update +4 -0
  453. package/runtime/vendor/zsh/ohmyzsh/plugins/jake-node/README.md +9 -0
  454. package/runtime/vendor/zsh/ohmyzsh/plugins/jake-node/jake-node.plugin.zsh +14 -0
  455. package/runtime/vendor/zsh/ohmyzsh/plugins/jenv/README.md +27 -0
  456. package/runtime/vendor/zsh/ohmyzsh/plugins/jenv/jenv.plugin.zsh +36 -0
  457. package/runtime/vendor/zsh/ohmyzsh/plugins/jfrog/README.md +11 -0
  458. package/runtime/vendor/zsh/ohmyzsh/plugins/jfrog/jfrog.plugin.zsh +11 -0
  459. package/runtime/vendor/zsh/ohmyzsh/plugins/jhbuild/README.md +34 -0
  460. package/runtime/vendor/zsh/ohmyzsh/plugins/jhbuild/jhbuild.plugin.zsh +32 -0
  461. package/runtime/vendor/zsh/ohmyzsh/plugins/jira/README.md +103 -0
  462. package/runtime/vendor/zsh/ohmyzsh/plugins/jira/_jira +27 -0
  463. package/runtime/vendor/zsh/ohmyzsh/plugins/jira/jira.plugin.zsh +183 -0
  464. package/runtime/vendor/zsh/ohmyzsh/plugins/jj/README.md +127 -0
  465. package/runtime/vendor/zsh/ohmyzsh/plugins/jj/jj.plugin.zsh +71 -0
  466. package/runtime/vendor/zsh/ohmyzsh/plugins/jruby/README.md +21 -0
  467. package/runtime/vendor/zsh/ohmyzsh/plugins/jruby/jruby.plugin.zsh +4 -0
  468. package/runtime/vendor/zsh/ohmyzsh/plugins/jsontools/README.md +90 -0
  469. package/runtime/vendor/zsh/ohmyzsh/plugins/jsontools/jsontools.plugin.zsh +113 -0
  470. package/runtime/vendor/zsh/ohmyzsh/plugins/juju/README.md +132 -0
  471. package/runtime/vendor/zsh/ohmyzsh/plugins/juju/juju.plugin.zsh +202 -0
  472. package/runtime/vendor/zsh/ohmyzsh/plugins/jump/README.md +31 -0
  473. package/runtime/vendor/zsh/ohmyzsh/plugins/jump/jump.plugin.zsh +60 -0
  474. package/runtime/vendor/zsh/ohmyzsh/plugins/k9s/README.md +9 -0
  475. package/runtime/vendor/zsh/ohmyzsh/plugins/k9s/k9s.plugin.zsh +14 -0
  476. package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/README.md +16 -0
  477. package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/_kamal +691 -0
  478. package/runtime/vendor/zsh/ohmyzsh/plugins/kamal/kamal.plugin.zsh +25 -0
  479. package/runtime/vendor/zsh/ohmyzsh/plugins/kate/README.md +20 -0
  480. package/runtime/vendor/zsh/ohmyzsh/plugins/kate/kate.plugin.zsh +9 -0
  481. package/runtime/vendor/zsh/ohmyzsh/plugins/keychain/README.md +45 -0
  482. package/runtime/vendor/zsh/ohmyzsh/plugins/keychain/keychain.plugin.zsh +40 -0
  483. package/runtime/vendor/zsh/ohmyzsh/plugins/kind/README.md +22 -0
  484. package/runtime/vendor/zsh/ohmyzsh/plugins/kind/kind.plugin.zsh +23 -0
  485. package/runtime/vendor/zsh/ohmyzsh/plugins/kitchen/README.md +9 -0
  486. package/runtime/vendor/zsh/ohmyzsh/plugins/kitchen/_kitchen +85 -0
  487. package/runtime/vendor/zsh/ohmyzsh/plugins/kitty/README.md +23 -0
  488. package/runtime/vendor/zsh/ohmyzsh/plugins/kitty/kitty.plugin.zsh +16 -0
  489. package/runtime/vendor/zsh/ohmyzsh/plugins/kn/README.md +17 -0
  490. package/runtime/vendor/zsh/ohmyzsh/plugins/kn/kn.plugin.zsh +8 -0
  491. package/runtime/vendor/zsh/ohmyzsh/plugins/knife/README.md +25 -0
  492. package/runtime/vendor/zsh/ohmyzsh/plugins/knife/_knife +257 -0
  493. package/runtime/vendor/zsh/ohmyzsh/plugins/knife_ssh/README.md +14 -0
  494. package/runtime/vendor/zsh/ohmyzsh/plugins/knife_ssh/knife_ssh.plugin.zsh +18 -0
  495. package/runtime/vendor/zsh/ohmyzsh/plugins/kompose/README.md +12 -0
  496. package/runtime/vendor/zsh/ohmyzsh/plugins/kompose/kompose.plugin.zsh +3 -0
  497. package/runtime/vendor/zsh/ohmyzsh/plugins/kops/README.md +12 -0
  498. package/runtime/vendor/zsh/ohmyzsh/plugins/kops/kops.plugin.zsh +3 -0
  499. package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/LICENSE +201 -0
  500. package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/README.md +354 -0
  501. package/runtime/vendor/zsh/ohmyzsh/plugins/kube-ps1/kube-ps1.plugin.zsh +440 -0
  502. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectl/README.md +145 -0
  503. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectl/kubectl.plugin.zsh +208 -0
  504. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/README.md +56 -0
  505. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/kubectx.plugin.zsh +15 -0
  506. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/prod.png +0 -0
  507. package/runtime/vendor/zsh/ohmyzsh/plugins/kubectx/stage.png +0 -0
  508. package/runtime/vendor/zsh/ohmyzsh/plugins/lando/LICENSE +21 -0
  509. package/runtime/vendor/zsh/ohmyzsh/plugins/lando/README.md +56 -0
  510. package/runtime/vendor/zsh/ohmyzsh/plugins/lando/lando.plugin.zsh +52 -0
  511. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/README.md +64 -0
  512. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/_artisan +40 -0
  513. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel/laravel.plugin.zsh +48 -0
  514. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel4/README.md +18 -0
  515. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel4/laravel4.plugin.zsh +20 -0
  516. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel5/README.md +18 -0
  517. package/runtime/vendor/zsh/ohmyzsh/plugins/laravel5/laravel5.plugin.zsh +19 -0
  518. package/runtime/vendor/zsh/ohmyzsh/plugins/last-working-dir/README.md +33 -0
  519. package/runtime/vendor/zsh/ohmyzsh/plugins/last-working-dir/last-working-dir.plugin.zsh +31 -0
  520. package/runtime/vendor/zsh/ohmyzsh/plugins/lein/README.md +9 -0
  521. package/runtime/vendor/zsh/ohmyzsh/plugins/lein/_lein +69 -0
  522. package/runtime/vendor/zsh/ohmyzsh/plugins/lighthouse/README.md +29 -0
  523. package/runtime/vendor/zsh/ohmyzsh/plugins/lighthouse/lighthouse.plugin.zsh +12 -0
  524. package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/README.md +24 -0
  525. package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/localstack.plugin.zsh +37 -0
  526. package/runtime/vendor/zsh/ohmyzsh/plugins/localstack/sqs-send-result.png +0 -0
  527. package/runtime/vendor/zsh/ohmyzsh/plugins/lol/README.md +71 -0
  528. package/runtime/vendor/zsh/ohmyzsh/plugins/lol/lol.plugin.zsh +51 -0
  529. package/runtime/vendor/zsh/ohmyzsh/plugins/lpass/README.md +13 -0
  530. package/runtime/vendor/zsh/ohmyzsh/plugins/lpass/_lpass +169 -0
  531. package/runtime/vendor/zsh/ohmyzsh/plugins/lxd/README.md +9 -0
  532. package/runtime/vendor/zsh/ohmyzsh/plugins/lxd/lxd.plugin.zsh +26 -0
  533. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/README.md +70 -0
  534. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/_security +90 -0
  535. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/macos.plugin.zsh +316 -0
  536. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/music +170 -0
  537. package/runtime/vendor/zsh/ohmyzsh/plugins/macos/spotify +479 -0
  538. package/runtime/vendor/zsh/ohmyzsh/plugins/macports/README.md +47 -0
  539. package/runtime/vendor/zsh/ohmyzsh/plugins/macports/_port +92 -0
  540. package/runtime/vendor/zsh/ohmyzsh/plugins/macports/macports.plugin.zsh +44 -0
  541. package/runtime/vendor/zsh/ohmyzsh/plugins/magic-enter/README.md +17 -0
  542. package/runtime/vendor/zsh/ohmyzsh/plugins/magic-enter/magic-enter.plugin.zsh +42 -0
  543. package/runtime/vendor/zsh/ohmyzsh/plugins/man/README.md +13 -0
  544. package/runtime/vendor/zsh/ohmyzsh/plugins/man/man.plugin.zsh +37 -0
  545. package/runtime/vendor/zsh/ohmyzsh/plugins/marked2/README.md +13 -0
  546. package/runtime/vendor/zsh/ohmyzsh/plugins/marked2/marked2.plugin.zsh +7 -0
  547. package/runtime/vendor/zsh/ohmyzsh/plugins/marktext/README.md +17 -0
  548. package/runtime/vendor/zsh/ohmyzsh/plugins/marktext/marktext.plugin.zsh +7 -0
  549. package/runtime/vendor/zsh/ohmyzsh/plugins/mercurial/README.md +69 -0
  550. package/runtime/vendor/zsh/ohmyzsh/plugins/mercurial/mercurial.plugin.zsh +118 -0
  551. package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/README.md +46 -0
  552. package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/_meteor +67 -0
  553. package/runtime/vendor/zsh/ohmyzsh/plugins/meteor/meteor.plugin.zsh +33 -0
  554. package/runtime/vendor/zsh/ohmyzsh/plugins/microk8s/README.md +24 -0
  555. package/runtime/vendor/zsh/ohmyzsh/plugins/microk8s/microk8s.plugin.zsh +82 -0
  556. package/runtime/vendor/zsh/ohmyzsh/plugins/minikube/README.md +9 -0
  557. package/runtime/vendor/zsh/ohmyzsh/plugins/minikube/minikube.plugin.zsh +13 -0
  558. package/runtime/vendor/zsh/ohmyzsh/plugins/mise/README.md +32 -0
  559. package/runtime/vendor/zsh/ohmyzsh/plugins/mise/mise.plugin.zsh +17 -0
  560. package/runtime/vendor/zsh/ohmyzsh/plugins/mix/README.md +20 -0
  561. package/runtime/vendor/zsh/ohmyzsh/plugins/mix/_mix +170 -0
  562. package/runtime/vendor/zsh/ohmyzsh/plugins/mix-fast/README.md +28 -0
  563. package/runtime/vendor/zsh/ohmyzsh/plugins/mix-fast/mix-fast.plugin.zsh +30 -0
  564. package/runtime/vendor/zsh/ohmyzsh/plugins/molecule/README.md +20 -0
  565. package/runtime/vendor/zsh/ohmyzsh/plugins/molecule/molecule.plugin.zsh +22 -0
  566. package/runtime/vendor/zsh/ohmyzsh/plugins/mongo-atlas/README.md +10 -0
  567. package/runtime/vendor/zsh/ohmyzsh/plugins/mongo-atlas/mongo-atlas.plugin.zsh +14 -0
  568. package/runtime/vendor/zsh/ohmyzsh/plugins/mongocli/README.md +19 -0
  569. package/runtime/vendor/zsh/ohmyzsh/plugins/mongocli/mongocli.plugin.zsh +4 -0
  570. package/runtime/vendor/zsh/ohmyzsh/plugins/mosh/README.md +9 -0
  571. package/runtime/vendor/zsh/ohmyzsh/plugins/mosh/mosh.plugin.zsh +2 -0
  572. package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/README.md +22 -0
  573. package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/_multipass +73 -0
  574. package/runtime/vendor/zsh/ohmyzsh/plugins/multipass/multipass.plugin.zsh +7 -0
  575. package/runtime/vendor/zsh/ohmyzsh/plugins/mvn/README.md +63 -0
  576. package/runtime/vendor/zsh/ohmyzsh/plugins/mvn/mvn.plugin.zsh +352 -0
  577. package/runtime/vendor/zsh/ohmyzsh/plugins/mysql-macports/README.md +20 -0
  578. package/runtime/vendor/zsh/ohmyzsh/plugins/mysql-macports/mysql-macports.plugin.zsh +8 -0
  579. package/runtime/vendor/zsh/ohmyzsh/plugins/n98-magerun/README.md +21 -0
  580. package/runtime/vendor/zsh/ohmyzsh/plugins/n98-magerun/n98-magerun.plugin.zsh +42 -0
  581. package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/README.md +20 -0
  582. package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/_nanoc +92 -0
  583. package/runtime/vendor/zsh/ohmyzsh/plugins/nanoc/nanoc.plugin.zsh +6 -0
  584. package/runtime/vendor/zsh/ohmyzsh/plugins/nats/README.md +14 -0
  585. package/runtime/vendor/zsh/ohmyzsh/plugins/nats/nats.plugin.zsh +23 -0
  586. package/runtime/vendor/zsh/ohmyzsh/plugins/nestjs/README.md +52 -0
  587. package/runtime/vendor/zsh/ohmyzsh/plugins/nestjs/nestjs.plugin.zsh +41 -0
  588. package/runtime/vendor/zsh/ohmyzsh/plugins/ng/README.md +10 -0
  589. package/runtime/vendor/zsh/ohmyzsh/plugins/ng/_ng +56 -0
  590. package/runtime/vendor/zsh/ohmyzsh/plugins/ngrok/README.md +20 -0
  591. package/runtime/vendor/zsh/ohmyzsh/plugins/ngrok/ngrok.plugin.zsh +14 -0
  592. package/runtime/vendor/zsh/ohmyzsh/plugins/nmap/README.md +27 -0
  593. package/runtime/vendor/zsh/ohmyzsh/plugins/nmap/nmap.plugin.zsh +32 -0
  594. package/runtime/vendor/zsh/ohmyzsh/plugins/node/README.md +19 -0
  595. package/runtime/vendor/zsh/ohmyzsh/plugins/node/node.plugin.zsh +6 -0
  596. package/runtime/vendor/zsh/ohmyzsh/plugins/nodenv/README.md +20 -0
  597. package/runtime/vendor/zsh/ohmyzsh/plugins/nodenv/nodenv.plugin.zsh +43 -0
  598. package/runtime/vendor/zsh/ohmyzsh/plugins/nomad/README.md +15 -0
  599. package/runtime/vendor/zsh/ohmyzsh/plugins/nomad/_nomad +153 -0
  600. package/runtime/vendor/zsh/ohmyzsh/plugins/npm/README.md +50 -0
  601. package/runtime/vendor/zsh/ohmyzsh/plugins/npm/npm.plugin.zsh +117 -0
  602. package/runtime/vendor/zsh/ohmyzsh/plugins/nvm/README.md +60 -0
  603. package/runtime/vendor/zsh/ohmyzsh/plugins/nvm/nvm.plugin.zsh +99 -0
  604. package/runtime/vendor/zsh/ohmyzsh/plugins/oc/README.md +13 -0
  605. package/runtime/vendor/zsh/ohmyzsh/plugins/oc/oc.plugin.zsh +8 -0
  606. package/runtime/vendor/zsh/ohmyzsh/plugins/octozen/README.md +12 -0
  607. package/runtime/vendor/zsh/ohmyzsh/plugins/octozen/octozen.plugin.zsh +11 -0
  608. package/runtime/vendor/zsh/ohmyzsh/plugins/opentofu/README.md +61 -0
  609. package/runtime/vendor/zsh/ohmyzsh/plugins/opentofu/opentofu.plugin.zsh +46 -0
  610. package/runtime/vendor/zsh/ohmyzsh/plugins/operator-sdk/README.md +11 -0
  611. package/runtime/vendor/zsh/ohmyzsh/plugins/operator-sdk/operator-sdk.plugin.zsh +4 -0
  612. package/runtime/vendor/zsh/ohmyzsh/plugins/otp/README.md +22 -0
  613. package/runtime/vendor/zsh/ohmyzsh/plugins/otp/otp.plugin.zsh +45 -0
  614. package/runtime/vendor/zsh/ohmyzsh/plugins/pass/README.md +22 -0
  615. package/runtime/vendor/zsh/ohmyzsh/plugins/pass/_pass +147 -0
  616. package/runtime/vendor/zsh/ohmyzsh/plugins/paver/README.md +12 -0
  617. package/runtime/vendor/zsh/ohmyzsh/plugins/paver/paver.plugin.zsh +16 -0
  618. package/runtime/vendor/zsh/ohmyzsh/plugins/pep8/README.md +8 -0
  619. package/runtime/vendor/zsh/ohmyzsh/plugins/pep8/_pep8 +34 -0
  620. package/runtime/vendor/zsh/ohmyzsh/plugins/per-directory-history/README.md +50 -0
  621. package/runtime/vendor/zsh/ohmyzsh/plugins/per-directory-history/per-directory-history.zsh +178 -0
  622. package/runtime/vendor/zsh/ohmyzsh/plugins/percol/README.md +23 -0
  623. package/runtime/vendor/zsh/ohmyzsh/plugins/percol/percol.plugin.zsh +25 -0
  624. package/runtime/vendor/zsh/ohmyzsh/plugins/perl/README.md +43 -0
  625. package/runtime/vendor/zsh/ohmyzsh/plugins/perl/perl.plugin.zsh +65 -0
  626. package/runtime/vendor/zsh/ohmyzsh/plugins/perms/README.md +25 -0
  627. package/runtime/vendor/zsh/ohmyzsh/plugins/perms/perms.plugin.zsh +87 -0
  628. package/runtime/vendor/zsh/ohmyzsh/plugins/phing/README.md +9 -0
  629. package/runtime/vendor/zsh/ohmyzsh/plugins/phing/phing.plugin.zsh +7 -0
  630. package/runtime/vendor/zsh/ohmyzsh/plugins/pip/README.md +36 -0
  631. package/runtime/vendor/zsh/ohmyzsh/plugins/pip/_pip +100 -0
  632. package/runtime/vendor/zsh/ohmyzsh/plugins/pip/pip.plugin.zsh +135 -0
  633. package/runtime/vendor/zsh/ohmyzsh/plugins/pipenv/README.md +40 -0
  634. package/runtime/vendor/zsh/ohmyzsh/plugins/pipenv/pipenv.plugin.zsh +57 -0
  635. package/runtime/vendor/zsh/ohmyzsh/plugins/pj/README.md +45 -0
  636. package/runtime/vendor/zsh/ohmyzsh/plugins/pj/pj.plugin.zsh +34 -0
  637. package/runtime/vendor/zsh/ohmyzsh/plugins/please/README.md +26 -0
  638. package/runtime/vendor/zsh/ohmyzsh/plugins/please/please.plugin.zsh +7 -0
  639. package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/README.md +19 -0
  640. package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/_pm2 +374 -0
  641. package/runtime/vendor/zsh/ohmyzsh/plugins/pm2/pm2.plugin.zsh +6 -0
  642. package/runtime/vendor/zsh/ohmyzsh/plugins/pod/README.md +10 -0
  643. package/runtime/vendor/zsh/ohmyzsh/plugins/pod/_pod +682 -0
  644. package/runtime/vendor/zsh/ohmyzsh/plugins/podman/README.md +47 -0
  645. package/runtime/vendor/zsh/ohmyzsh/plugins/podman/podman.plugin.zsh +47 -0
  646. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry/README.md +42 -0
  647. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry/poetry.plugin.zsh +42 -0
  648. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry-env/README.md +10 -0
  649. package/runtime/vendor/zsh/ohmyzsh/plugins/poetry-env/poetry-env.plugin.zsh +27 -0
  650. package/runtime/vendor/zsh/ohmyzsh/plugins/postgres/README.md +22 -0
  651. package/runtime/vendor/zsh/ohmyzsh/plugins/postgres/postgres.plugin.zsh +13 -0
  652. package/runtime/vendor/zsh/ohmyzsh/plugins/pow/README.md +21 -0
  653. package/runtime/vendor/zsh/ohmyzsh/plugins/pow/pow.plugin.zsh +85 -0
  654. package/runtime/vendor/zsh/ohmyzsh/plugins/powder/README.md +8 -0
  655. package/runtime/vendor/zsh/ohmyzsh/plugins/powder/_powder +4 -0
  656. package/runtime/vendor/zsh/ohmyzsh/plugins/powify/README.md +10 -0
  657. package/runtime/vendor/zsh/ohmyzsh/plugins/powify/_powify +55 -0
  658. package/runtime/vendor/zsh/ohmyzsh/plugins/pre-commit/README.md +22 -0
  659. package/runtime/vendor/zsh/ohmyzsh/plugins/pre-commit/pre-commit.plugin.zsh +17 -0
  660. package/runtime/vendor/zsh/ohmyzsh/plugins/procs/README.md +9 -0
  661. package/runtime/vendor/zsh/ohmyzsh/plugins/procs/procs.plugin.zsh +21 -0
  662. package/runtime/vendor/zsh/ohmyzsh/plugins/profiles/README.md +25 -0
  663. package/runtime/vendor/zsh/ohmyzsh/plugins/profiles/profiles.plugin.zsh +12 -0
  664. package/runtime/vendor/zsh/ohmyzsh/plugins/pulumi/README.md +41 -0
  665. package/runtime/vendor/zsh/ohmyzsh/plugins/pulumi/pulumi.plugin.zsh +28 -0
  666. package/runtime/vendor/zsh/ohmyzsh/plugins/pyenv/README.md +40 -0
  667. package/runtime/vendor/zsh/ohmyzsh/plugins/pyenv/pyenv.plugin.zsh +108 -0
  668. package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/README.md +16 -0
  669. package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/_pylint +31 -0
  670. package/runtime/vendor/zsh/ohmyzsh/plugins/pylint/pylint.plugin.zsh +1 -0
  671. package/runtime/vendor/zsh/ohmyzsh/plugins/python/README.md +68 -0
  672. package/runtime/vendor/zsh/ohmyzsh/plugins/python/python.plugin.zsh +122 -0
  673. package/runtime/vendor/zsh/ohmyzsh/plugins/qodana/README.md +20 -0
  674. package/runtime/vendor/zsh/ohmyzsh/plugins/qodana/qodana.plugin.zsh +14 -0
  675. package/runtime/vendor/zsh/ohmyzsh/plugins/qrcode/README.md +8 -0
  676. package/runtime/vendor/zsh/ohmyzsh/plugins/qrcode/qrcode.plugin.zsh +17 -0
  677. package/runtime/vendor/zsh/ohmyzsh/plugins/rails/README.md +122 -0
  678. package/runtime/vendor/zsh/ohmyzsh/plugins/rails/_rails +538 -0
  679. package/runtime/vendor/zsh/ohmyzsh/plugins/rails/rails.plugin.zsh +120 -0
  680. package/runtime/vendor/zsh/ohmyzsh/plugins/rake/README.md +41 -0
  681. package/runtime/vendor/zsh/ohmyzsh/plugins/rake/rake.plugin.zsh +9 -0
  682. package/runtime/vendor/zsh/ohmyzsh/plugins/rake-fast/README.md +35 -0
  683. package/runtime/vendor/zsh/ohmyzsh/plugins/rake-fast/rake-fast.plugin.zsh +79 -0
  684. package/runtime/vendor/zsh/ohmyzsh/plugins/rand-quote/README.md +15 -0
  685. package/runtime/vendor/zsh/ohmyzsh/plugins/rand-quote/rand-quote.plugin.zsh +23 -0
  686. package/runtime/vendor/zsh/ohmyzsh/plugins/rbenv/README.md +26 -0
  687. package/runtime/vendor/zsh/ohmyzsh/plugins/rbenv/rbenv.plugin.zsh +68 -0
  688. package/runtime/vendor/zsh/ohmyzsh/plugins/rbw/README.md +22 -0
  689. package/runtime/vendor/zsh/ohmyzsh/plugins/rbw/rbw.plugin.zsh +58 -0
  690. package/runtime/vendor/zsh/ohmyzsh/plugins/rclone/README.md +9 -0
  691. package/runtime/vendor/zsh/ohmyzsh/plugins/rclone/rclone.plugin.zsh +14 -0
  692. package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/README.md +92 -0
  693. package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/_react-native +32 -0
  694. package/runtime/vendor/zsh/ohmyzsh/plugins/react-native/react-native.plugin.zsh +79 -0
  695. package/runtime/vendor/zsh/ohmyzsh/plugins/rebar/README.md +9 -0
  696. package/runtime/vendor/zsh/ohmyzsh/plugins/rebar/_rebar +79 -0
  697. package/runtime/vendor/zsh/ohmyzsh/plugins/redis-cli/README.md +15 -0
  698. package/runtime/vendor/zsh/ohmyzsh/plugins/redis-cli/_redis-cli +142 -0
  699. package/runtime/vendor/zsh/ohmyzsh/plugins/repo/README.md +25 -0
  700. package/runtime/vendor/zsh/ohmyzsh/plugins/repo/_repo +281 -0
  701. package/runtime/vendor/zsh/ohmyzsh/plugins/repo/repo.plugin.zsh +10 -0
  702. package/runtime/vendor/zsh/ohmyzsh/plugins/ros/README.md +10 -0
  703. package/runtime/vendor/zsh/ohmyzsh/plugins/ros/_ros +64 -0
  704. package/runtime/vendor/zsh/ohmyzsh/plugins/rsync/README.md +26 -0
  705. package/runtime/vendor/zsh/ohmyzsh/plugins/rsync/rsync.plugin.zsh +4 -0
  706. package/runtime/vendor/zsh/ohmyzsh/plugins/ruby/README.md +33 -0
  707. package/runtime/vendor/zsh/ohmyzsh/plugins/ruby/ruby.plugin.zsh +26 -0
  708. package/runtime/vendor/zsh/ohmyzsh/plugins/rust/README.md +9 -0
  709. package/runtime/vendor/zsh/ohmyzsh/plugins/rust/_rustc +228 -0
  710. package/runtime/vendor/zsh/ohmyzsh/plugins/rust/rust.plugin.zsh +26 -0
  711. package/runtime/vendor/zsh/ohmyzsh/plugins/rvm/README.md +37 -0
  712. package/runtime/vendor/zsh/ohmyzsh/plugins/rvm/rvm.plugin.zsh +56 -0
  713. package/runtime/vendor/zsh/ohmyzsh/plugins/safe-paste/README.md +9 -0
  714. package/runtime/vendor/zsh/ohmyzsh/plugins/safe-paste/safe-paste.plugin.zsh +101 -0
  715. package/runtime/vendor/zsh/ohmyzsh/plugins/salt/README.md +5 -0
  716. package/runtime/vendor/zsh/ohmyzsh/plugins/salt/_salt +279 -0
  717. package/runtime/vendor/zsh/ohmyzsh/plugins/samtools/README.md +5 -0
  718. package/runtime/vendor/zsh/ohmyzsh/plugins/samtools/_samtools +40 -0
  719. package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/README.md +32 -0
  720. package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/_sbt +56 -0
  721. package/runtime/vendor/zsh/ohmyzsh/plugins/sbt/sbt.plugin.zsh +25 -0
  722. package/runtime/vendor/zsh/ohmyzsh/plugins/scala/README.md +16 -0
  723. package/runtime/vendor/zsh/ohmyzsh/plugins/scala/_scala +249 -0
  724. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/README.md +159 -0
  725. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/_scd +60 -0
  726. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/scd +533 -0
  727. package/runtime/vendor/zsh/ohmyzsh/plugins/scd/scd.plugin.zsh +17 -0
  728. package/runtime/vendor/zsh/ohmyzsh/plugins/screen/README.md +10 -0
  729. package/runtime/vendor/zsh/ohmyzsh/plugins/screen/screen.plugin.zsh +58 -0
  730. package/runtime/vendor/zsh/ohmyzsh/plugins/scw/README.md +9 -0
  731. package/runtime/vendor/zsh/ohmyzsh/plugins/scw/scw.plugin.zsh +14 -0
  732. package/runtime/vendor/zsh/ohmyzsh/plugins/sdk/README.md +14 -0
  733. package/runtime/vendor/zsh/ohmyzsh/plugins/sdk/sdk.plugin.zsh +58 -0
  734. package/runtime/vendor/zsh/ohmyzsh/plugins/sfdx/README.md +11 -0
  735. package/runtime/vendor/zsh/ohmyzsh/plugins/sfdx/_sfdx +1110 -0
  736. package/runtime/vendor/zsh/ohmyzsh/plugins/sfffe/README.md +17 -0
  737. package/runtime/vendor/zsh/ohmyzsh/plugins/sfffe/sfffe.plugin.zsh +28 -0
  738. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/.editorconfig +3 -0
  739. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/README.md +67 -0
  740. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/proxy.py +91 -0
  741. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/shell-proxy.plugin.zsh +44 -0
  742. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/ssh-agent.py +16 -0
  743. package/runtime/vendor/zsh/ohmyzsh/plugins/shell-proxy/ssh-proxy.py +37 -0
  744. package/runtime/vendor/zsh/ohmyzsh/plugins/shrink-path/README.md +116 -0
  745. package/runtime/vendor/zsh/ohmyzsh/plugins/shrink-path/shrink-path.plugin.zsh +197 -0
  746. package/runtime/vendor/zsh/ohmyzsh/plugins/sigstore/README.md +13 -0
  747. package/runtime/vendor/zsh/ohmyzsh/plugins/sigstore/sigstore.plugin.zsh +22 -0
  748. package/runtime/vendor/zsh/ohmyzsh/plugins/singlechar/README.md +118 -0
  749. package/runtime/vendor/zsh/ohmyzsh/plugins/singlechar/singlechar.plugin.zsh +123 -0
  750. package/runtime/vendor/zsh/ohmyzsh/plugins/skaffold/README.md +9 -0
  751. package/runtime/vendor/zsh/ohmyzsh/plugins/skaffold/skaffold.plugin.zsh +14 -0
  752. package/runtime/vendor/zsh/ohmyzsh/plugins/snap/README.md +18 -0
  753. package/runtime/vendor/zsh/ohmyzsh/plugins/snap/snap.plugin.zsh +10 -0
  754. package/runtime/vendor/zsh/ohmyzsh/plugins/spackenv/README.md +17 -0
  755. package/runtime/vendor/zsh/ohmyzsh/plugins/spackenv/spackenv.plugin.zsh +5 -0
  756. package/runtime/vendor/zsh/ohmyzsh/plugins/spring/README.md +21 -0
  757. package/runtime/vendor/zsh/ohmyzsh/plugins/spring/_spring +29 -0
  758. package/runtime/vendor/zsh/ohmyzsh/plugins/sprunge/README.md +38 -0
  759. package/runtime/vendor/zsh/ohmyzsh/plugins/sprunge/sprunge.plugin.zsh +52 -0
  760. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh/README.md +16 -0
  761. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh/ssh.plugin.zsh +53 -0
  762. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh-agent/README.md +133 -0
  763. package/runtime/vendor/zsh/ohmyzsh/plugins/ssh-agent/ssh-agent.plugin.zsh +119 -0
  764. package/runtime/vendor/zsh/ohmyzsh/plugins/stack/README.md +9 -0
  765. package/runtime/vendor/zsh/ohmyzsh/plugins/stack/stack.plugin.zsh +4 -0
  766. package/runtime/vendor/zsh/ohmyzsh/plugins/starship/README.md +21 -0
  767. package/runtime/vendor/zsh/ohmyzsh/plugins/starship/starship.plugin.zsh +8 -0
  768. package/runtime/vendor/zsh/ohmyzsh/plugins/stripe/README.md +9 -0
  769. package/runtime/vendor/zsh/ohmyzsh/plugins/stripe/stripe.plugin.zsh +13 -0
  770. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime/README.md +37 -0
  771. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime/sublime.plugin.zsh +124 -0
  772. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime-merge/README.md +17 -0
  773. package/runtime/vendor/zsh/ohmyzsh/plugins/sublime-merge/sublime-merge.plugin.zsh +55 -0
  774. package/runtime/vendor/zsh/ohmyzsh/plugins/sudo/README.md +75 -0
  775. package/runtime/vendor/zsh/ohmyzsh/plugins/sudo/sudo.plugin.zsh +108 -0
  776. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/README.md +13 -0
  777. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/_supervisorctl +143 -0
  778. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/_supervisord +33 -0
  779. package/runtime/vendor/zsh/ohmyzsh/plugins/supervisor/supervisor.plugin.zsh +14 -0
  780. package/runtime/vendor/zsh/ohmyzsh/plugins/suse/README.md +98 -0
  781. package/runtime/vendor/zsh/ohmyzsh/plugins/suse/suse.plugin.zsh +59 -0
  782. package/runtime/vendor/zsh/ohmyzsh/plugins/svcat/README.md +9 -0
  783. package/runtime/vendor/zsh/ohmyzsh/plugins/svcat/svcat.plugin.zsh +6 -0
  784. package/runtime/vendor/zsh/ohmyzsh/plugins/svn/README.md +67 -0
  785. package/runtime/vendor/zsh/ohmyzsh/plugins/svn/svn.plugin.zsh +89 -0
  786. package/runtime/vendor/zsh/ohmyzsh/plugins/svn-fast-info/README.md +56 -0
  787. package/runtime/vendor/zsh/ohmyzsh/plugins/svn-fast-info/svn-fast-info.plugin.zsh +74 -0
  788. package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/README.md +20 -0
  789. package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/_swift +844 -0
  790. package/runtime/vendor/zsh/ohmyzsh/plugins/swiftpm/swiftpm.plugin.zsh +8 -0
  791. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony/README.md +9 -0
  792. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony/symfony.plugin.zsh +13 -0
  793. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony2/README.md +28 -0
  794. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony2/symfony2.plugin.zsh +34 -0
  795. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony6/README.md +9 -0
  796. package/runtime/vendor/zsh/ohmyzsh/plugins/symfony6/symfony6.plugin.zsh +82 -0
  797. package/runtime/vendor/zsh/ohmyzsh/plugins/systemadmin/README.md +52 -0
  798. package/runtime/vendor/zsh/ohmyzsh/plugins/systemadmin/systemadmin.plugin.zsh +188 -0
  799. package/runtime/vendor/zsh/ohmyzsh/plugins/systemd/README.md +98 -0
  800. package/runtime/vendor/zsh/ohmyzsh/plugins/systemd/systemd.plugin.zsh +121 -0
  801. package/runtime/vendor/zsh/ohmyzsh/plugins/tailscale/README.md +11 -0
  802. package/runtime/vendor/zsh/ohmyzsh/plugins/tailscale/tailscale.plugin.zsh +25 -0
  803. package/runtime/vendor/zsh/ohmyzsh/plugins/task/README.md +9 -0
  804. package/runtime/vendor/zsh/ohmyzsh/plugins/task/task.plugin.zsh +14 -0
  805. package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/README.md +18 -0
  806. package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/_task +285 -0
  807. package/runtime/vendor/zsh/ohmyzsh/plugins/taskwarrior/taskwarrior.plugin.zsh +7 -0
  808. package/runtime/vendor/zsh/ohmyzsh/plugins/term_tab/README.md +18 -0
  809. package/runtime/vendor/zsh/ohmyzsh/plugins/term_tab/term_tab.plugin.zsh +42 -0
  810. package/runtime/vendor/zsh/ohmyzsh/plugins/terminitor/README.md +9 -0
  811. package/runtime/vendor/zsh/ohmyzsh/plugins/terminitor/_terminitor +38 -0
  812. package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/README.md +61 -0
  813. package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/_terraform +545 -0
  814. package/runtime/vendor/zsh/ohmyzsh/plugins/terraform/terraform.plugin.zsh +40 -0
  815. package/runtime/vendor/zsh/ohmyzsh/plugins/textastic/README.md +15 -0
  816. package/runtime/vendor/zsh/ohmyzsh/plugins/textastic/textastic.plugin.zsh +17 -0
  817. package/runtime/vendor/zsh/ohmyzsh/plugins/textmate/README.md +17 -0
  818. package/runtime/vendor/zsh/ohmyzsh/plugins/textmate/textmate.plugin.zsh +14 -0
  819. package/runtime/vendor/zsh/ohmyzsh/plugins/thefuck/README.md +13 -0
  820. package/runtime/vendor/zsh/ohmyzsh/plugins/thefuck/thefuck.plugin.zsh +21 -0
  821. package/runtime/vendor/zsh/ohmyzsh/plugins/themes/README.md +18 -0
  822. package/runtime/vendor/zsh/ohmyzsh/plugins/themes/themes.plugin.zsh +35 -0
  823. package/runtime/vendor/zsh/ohmyzsh/plugins/thor/README.md +10 -0
  824. package/runtime/vendor/zsh/ohmyzsh/plugins/thor/_thor +4 -0
  825. package/runtime/vendor/zsh/ohmyzsh/plugins/tig/README.md +16 -0
  826. package/runtime/vendor/zsh/ohmyzsh/plugins/tig/tig.plugin.zsh +5 -0
  827. package/runtime/vendor/zsh/ohmyzsh/plugins/timer/README.md +18 -0
  828. package/runtime/vendor/zsh/ohmyzsh/plugins/timer/timer.plugin.zsh +38 -0
  829. package/runtime/vendor/zsh/ohmyzsh/plugins/timoni/README.md +9 -0
  830. package/runtime/vendor/zsh/ohmyzsh/plugins/timoni/timoni.plugin.zsh +14 -0
  831. package/runtime/vendor/zsh/ohmyzsh/plugins/tldr/README.md +18 -0
  832. package/runtime/vendor/zsh/ohmyzsh/plugins/tldr/tldr.plugin.zsh +19 -0
  833. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/README.md +48 -0
  834. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.extra.conf +2 -0
  835. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.only.conf +1 -0
  836. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux/tmux.plugin.zsh +204 -0
  837. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux-cssh/README.md +10 -0
  838. package/runtime/vendor/zsh/ohmyzsh/plugins/tmux-cssh/_tmux-cssh +25 -0
  839. package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/README.md +19 -0
  840. package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/_tmuxinator +23 -0
  841. package/runtime/vendor/zsh/ohmyzsh/plugins/tmuxinator/tmuxinator.plugin.zsh +5 -0
  842. package/runtime/vendor/zsh/ohmyzsh/plugins/toolbox/README.md +29 -0
  843. package/runtime/vendor/zsh/ohmyzsh/plugins/toolbox/toolbox.plugin.zsh +16 -0
  844. package/runtime/vendor/zsh/ohmyzsh/plugins/torrent/README.md +13 -0
  845. package/runtime/vendor/zsh/ohmyzsh/plugins/torrent/torrent.plugin.zsh +17 -0
  846. package/runtime/vendor/zsh/ohmyzsh/plugins/transfer/README.md +41 -0
  847. package/runtime/vendor/zsh/ohmyzsh/plugins/transfer/transfer.plugin.zsh +97 -0
  848. package/runtime/vendor/zsh/ohmyzsh/plugins/tt/README.MD +26 -0
  849. package/runtime/vendor/zsh/ohmyzsh/plugins/tt/tt.plugin.zsh +21 -0
  850. package/runtime/vendor/zsh/ohmyzsh/plugins/tugboat/README.md +12 -0
  851. package/runtime/vendor/zsh/ohmyzsh/plugins/tugboat/_tugboat +106 -0
  852. package/runtime/vendor/zsh/ohmyzsh/plugins/ubuntu/README.md +62 -0
  853. package/runtime/vendor/zsh/ohmyzsh/plugins/ubuntu/ubuntu.plugin.zsh +138 -0
  854. package/runtime/vendor/zsh/ohmyzsh/plugins/ufw/README.md +18 -0
  855. package/runtime/vendor/zsh/ohmyzsh/plugins/ufw/_ufw +115 -0
  856. package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/README.md +76 -0
  857. package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/_universalarchive +6 -0
  858. package/runtime/vendor/zsh/ohmyzsh/plugins/universalarchive/universalarchive.plugin.zsh +70 -0
  859. package/runtime/vendor/zsh/ohmyzsh/plugins/urltools/README.md +29 -0
  860. package/runtime/vendor/zsh/ohmyzsh/plugins/urltools/urltools.plugin.zsh +42 -0
  861. package/runtime/vendor/zsh/ohmyzsh/plugins/uv/README.md +36 -0
  862. package/runtime/vendor/zsh/ohmyzsh/plugins/uv/uv.plugin.zsh +47 -0
  863. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/README.md +40 -0
  864. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/_vagrant +133 -0
  865. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant/vagrant.plugin.zsh +33 -0
  866. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant-prompt/README.md +52 -0
  867. package/runtime/vendor/zsh/ohmyzsh/plugins/vagrant-prompt/vagrant-prompt.plugin.zsh +18 -0
  868. package/runtime/vendor/zsh/ohmyzsh/plugins/vault/README.md +9 -0
  869. package/runtime/vendor/zsh/ohmyzsh/plugins/vault/vault.plugin.zsh +7 -0
  870. package/runtime/vendor/zsh/ohmyzsh/plugins/vi-mode/README.md +197 -0
  871. package/runtime/vendor/zsh/ohmyzsh/plugins/vi-mode/vi-mode.plugin.zsh +174 -0
  872. package/runtime/vendor/zsh/ohmyzsh/plugins/vim-interaction/README.md +82 -0
  873. package/runtime/vendor/zsh/ohmyzsh/plugins/vim-interaction/vim-interaction.plugin.zsh +69 -0
  874. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenv/README.md +15 -0
  875. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenv/virtualenv.plugin.zsh +7 -0
  876. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenvwrapper/README.md +38 -0
  877. package/runtime/vendor/zsh/ohmyzsh/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh +93 -0
  878. package/runtime/vendor/zsh/ohmyzsh/plugins/volta/README.md +11 -0
  879. package/runtime/vendor/zsh/ohmyzsh/plugins/volta/volta.plugin.zsh +14 -0
  880. package/runtime/vendor/zsh/ohmyzsh/plugins/vscode/README.md +88 -0
  881. package/runtime/vendor/zsh/ohmyzsh/plugins/vscode/vscode.plugin.zsh +52 -0
  882. package/runtime/vendor/zsh/ohmyzsh/plugins/vundle/README.md +19 -0
  883. package/runtime/vendor/zsh/ohmyzsh/plugins/vundle/vundle.plugin.zsh +27 -0
  884. package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/README.md +43 -0
  885. package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/_wake +4 -0
  886. package/runtime/vendor/zsh/ohmyzsh/plugins/wakeonlan/wakeonlan.plugin.zsh +14 -0
  887. package/runtime/vendor/zsh/ohmyzsh/plugins/watson/README.md +9 -0
  888. package/runtime/vendor/zsh/ohmyzsh/plugins/watson/_watson +34 -0
  889. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/LICENSE +21 -0
  890. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/README.md +297 -0
  891. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/_wd.sh +106 -0
  892. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/wd.plugin.zsh +20 -0
  893. package/runtime/vendor/zsh/ohmyzsh/plugins/wd/wd.sh +658 -0
  894. package/runtime/vendor/zsh/ohmyzsh/plugins/web-search/README.md +92 -0
  895. package/runtime/vendor/zsh/ohmyzsh/plugins/web-search/web-search.plugin.zsh +119 -0
  896. package/runtime/vendor/zsh/ohmyzsh/plugins/wp-cli/README.md +109 -0
  897. package/runtime/vendor/zsh/ohmyzsh/plugins/wp-cli/wp-cli.plugin.zsh +123 -0
  898. package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/README.md +86 -0
  899. package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/_xcselv +19 -0
  900. package/runtime/vendor/zsh/ohmyzsh/plugins/xcode/xcode.plugin.zsh +208 -0
  901. package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/README.md +74 -0
  902. package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/_yarn +502 -0
  903. package/runtime/vendor/zsh/ohmyzsh/plugins/yarn/yarn.plugin.zsh +64 -0
  904. package/runtime/vendor/zsh/ohmyzsh/plugins/yii/README.md +15 -0
  905. package/runtime/vendor/zsh/ohmyzsh/plugins/yii/yii.plugin.zsh +17 -0
  906. package/runtime/vendor/zsh/ohmyzsh/plugins/yii2/README.md +7 -0
  907. package/runtime/vendor/zsh/ohmyzsh/plugins/yii2/yii2.plugin.zsh +29 -0
  908. package/runtime/vendor/zsh/ohmyzsh/plugins/yum/README.md +27 -0
  909. package/runtime/vendor/zsh/ohmyzsh/plugins/yum/yum.plugin.zsh +16 -0
  910. package/runtime/vendor/zsh/ohmyzsh/plugins/z/LICENSE +21 -0
  911. package/runtime/vendor/zsh/ohmyzsh/plugins/z/MANUAL.md +365 -0
  912. package/runtime/vendor/zsh/ohmyzsh/plugins/z/README.md +24 -0
  913. package/runtime/vendor/zsh/ohmyzsh/plugins/z/_z +82 -0
  914. package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/demo.gif +0 -0
  915. package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/mit_license.svg +1 -0
  916. package/runtime/vendor/zsh/ohmyzsh/plugins/z/img/zsh_4.3.11_plus.svg +1 -0
  917. package/runtime/vendor/zsh/ohmyzsh/plugins/z/z.plugin.zsh +1022 -0
  918. package/runtime/vendor/zsh/ohmyzsh/plugins/zbell/README.md +33 -0
  919. package/runtime/vendor/zsh/ohmyzsh/plugins/zbell/zbell.plugin.zsh +96 -0
  920. package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/README.md +50 -0
  921. package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/_zeus +98 -0
  922. package/runtime/vendor/zsh/ohmyzsh/plugins/zeus/zeus.plugin.zsh +70 -0
  923. package/runtime/vendor/zsh/ohmyzsh/plugins/zoxide/README.md +17 -0
  924. package/runtime/vendor/zsh/ohmyzsh/plugins/zoxide/zoxide.plugin.zsh +5 -0
  925. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/LICENSE +375 -0
  926. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/README.md +21 -0
  927. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/demo.gif +0 -0
  928. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-interactive-cd/zsh-interactive-cd.plugin.zsh +180 -0
  929. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-aliases.conf +33 -0
  930. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-cd.conf +68 -0
  931. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-env.conf +38 -0
  932. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-functions.conf +41 -0
  933. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-history.conf +43 -0
  934. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-kill.conf +46 -0
  935. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-list.conf +55 -0
  936. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-options.conf +34 -0
  937. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/.config/znt/n-panelize.conf +34 -0
  938. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/LICENSE +700 -0
  939. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/Makefile +35 -0
  940. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/NEWS +17 -0
  941. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/README.md +259 -0
  942. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/_n-kill +41 -0
  943. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/generate_single_file +35 -0
  944. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/img/n-history2.png +0 -0
  945. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/install.sh +70 -0
  946. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/n-preview +224 -0
  947. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/doc/znt-tmux.zsh +50 -0
  948. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-aliases +47 -0
  949. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-cd +71 -0
  950. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-env +47 -0
  951. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-functions +54 -0
  952. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-help +135 -0
  953. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-history +371 -0
  954. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-kill +96 -0
  955. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list +517 -0
  956. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list-draw +133 -0
  957. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-list-input +377 -0
  958. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-options +84 -0
  959. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/n-panelize +68 -0
  960. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-cd-widget +8 -0
  961. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-history-widget +22 -0
  962. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-kill-widget +8 -0
  963. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/znt-usetty-wrapper +40 -0
  964. package/runtime/vendor/zsh/ohmyzsh/plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh +77 -0
  965. package/runtime/vendor/zsh/ohmyzsh/templates/minimal.zshrc +5 -0
  966. package/runtime/vendor/zsh/ohmyzsh/templates/zshrc.zsh-template +104 -0
  967. package/runtime/vendor/zsh/ohmyzsh/themes/3den.zsh-theme +7 -0
  968. package/runtime/vendor/zsh/ohmyzsh/themes/Soliah.zsh-theme +85 -0
  969. package/runtime/vendor/zsh/ohmyzsh/themes/adben.zsh-theme +118 -0
  970. package/runtime/vendor/zsh/ohmyzsh/themes/af-magic.zsh-theme +49 -0
  971. package/runtime/vendor/zsh/ohmyzsh/themes/afowler.zsh-theme +10 -0
  972. package/runtime/vendor/zsh/ohmyzsh/themes/agnoster.zsh-theme +377 -0
  973. package/runtime/vendor/zsh/ohmyzsh/themes/alanpeabody.zsh-theme +24 -0
  974. package/runtime/vendor/zsh/ohmyzsh/themes/amuse.zsh-theme +24 -0
  975. package/runtime/vendor/zsh/ohmyzsh/themes/apple.zsh-theme +24 -0
  976. package/runtime/vendor/zsh/ohmyzsh/themes/arrow.zsh-theme +14 -0
  977. package/runtime/vendor/zsh/ohmyzsh/themes/aussiegeek.zsh-theme +8 -0
  978. package/runtime/vendor/zsh/ohmyzsh/themes/avit.zsh-theme +90 -0
  979. package/runtime/vendor/zsh/ohmyzsh/themes/awesomepanda.zsh-theme +16 -0
  980. package/runtime/vendor/zsh/ohmyzsh/themes/bira.zsh-theme +38 -0
  981. package/runtime/vendor/zsh/ohmyzsh/themes/blinks.zsh-theme +30 -0
  982. package/runtime/vendor/zsh/ohmyzsh/themes/bureau.zsh-theme +133 -0
  983. package/runtime/vendor/zsh/ohmyzsh/themes/candy-kingdom.zsh-theme +34 -0
  984. package/runtime/vendor/zsh/ohmyzsh/themes/candy.zsh-theme +7 -0
  985. package/runtime/vendor/zsh/ohmyzsh/themes/clean.zsh-theme +14 -0
  986. package/runtime/vendor/zsh/ohmyzsh/themes/cloud.zsh-theme +10 -0
  987. package/runtime/vendor/zsh/ohmyzsh/themes/crcandy.zsh-theme +8 -0
  988. package/runtime/vendor/zsh/ohmyzsh/themes/crunch.zsh-theme +39 -0
  989. package/runtime/vendor/zsh/ohmyzsh/themes/cypher.zsh-theme +4 -0
  990. package/runtime/vendor/zsh/ohmyzsh/themes/dallas.zsh-theme +27 -0
  991. package/runtime/vendor/zsh/ohmyzsh/themes/darkblood.zsh-theme +9 -0
  992. package/runtime/vendor/zsh/ohmyzsh/themes/daveverwer.zsh-theme +7 -0
  993. package/runtime/vendor/zsh/ohmyzsh/themes/dieter.zsh-theme +56 -0
  994. package/runtime/vendor/zsh/ohmyzsh/themes/dogenpunk.zsh-theme +77 -0
  995. package/runtime/vendor/zsh/ohmyzsh/themes/dpoggi.zsh-theme +11 -0
  996. package/runtime/vendor/zsh/ohmyzsh/themes/dst.zsh-theme +16 -0
  997. package/runtime/vendor/zsh/ohmyzsh/themes/dstufft.zsh-theme +19 -0
  998. package/runtime/vendor/zsh/ohmyzsh/themes/duellj.zsh-theme +7 -0
  999. package/runtime/vendor/zsh/ohmyzsh/themes/eastwood.zsh-theme +23 -0
  1000. package/runtime/vendor/zsh/ohmyzsh/themes/edvardm.zsh-theme +6 -0
  1001. package/runtime/vendor/zsh/ohmyzsh/themes/emotty.zsh-theme +113 -0
  1002. package/runtime/vendor/zsh/ohmyzsh/themes/essembeh.zsh-theme +36 -0
  1003. package/runtime/vendor/zsh/ohmyzsh/themes/evan.zsh-theme +2 -0
  1004. package/runtime/vendor/zsh/ohmyzsh/themes/fino-time.zsh-theme +38 -0
  1005. package/runtime/vendor/zsh/ohmyzsh/themes/fino.zsh-theme +47 -0
  1006. package/runtime/vendor/zsh/ohmyzsh/themes/fishy.zsh-theme +36 -0
  1007. package/runtime/vendor/zsh/ohmyzsh/themes/flazz.zsh-theme +19 -0
  1008. package/runtime/vendor/zsh/ohmyzsh/themes/fletcherm.zsh-theme +12 -0
  1009. package/runtime/vendor/zsh/ohmyzsh/themes/fox.zsh-theme +9 -0
  1010. package/runtime/vendor/zsh/ohmyzsh/themes/frisk.zsh-theme +12 -0
  1011. package/runtime/vendor/zsh/ohmyzsh/themes/frontcube.zsh-theme +13 -0
  1012. package/runtime/vendor/zsh/ohmyzsh/themes/funky.zsh-theme +14 -0
  1013. package/runtime/vendor/zsh/ohmyzsh/themes/fwalch.zsh-theme +6 -0
  1014. package/runtime/vendor/zsh/ohmyzsh/themes/gallifrey.zsh-theme +11 -0
  1015. package/runtime/vendor/zsh/ohmyzsh/themes/gallois.zsh-theme +140 -0
  1016. package/runtime/vendor/zsh/ohmyzsh/themes/garyblessington.zsh-theme +6 -0
  1017. package/runtime/vendor/zsh/ohmyzsh/themes/gentoo.zsh-theme +30 -0
  1018. package/runtime/vendor/zsh/ohmyzsh/themes/geoffgarside.zsh-theme +5 -0
  1019. package/runtime/vendor/zsh/ohmyzsh/themes/gianu.zsh-theme +6 -0
  1020. package/runtime/vendor/zsh/ohmyzsh/themes/gnzh.zsh-theme +46 -0
  1021. package/runtime/vendor/zsh/ohmyzsh/themes/gozilla.zsh-theme +15 -0
  1022. package/runtime/vendor/zsh/ohmyzsh/themes/half-life.zsh-theme +97 -0
  1023. package/runtime/vendor/zsh/ohmyzsh/themes/humza.zsh-theme +26 -0
  1024. package/runtime/vendor/zsh/ohmyzsh/themes/imajes.zsh-theme +5 -0
  1025. package/runtime/vendor/zsh/ohmyzsh/themes/intheloop.zsh-theme +23 -0
  1026. package/runtime/vendor/zsh/ohmyzsh/themes/itchy.zsh-theme +18 -0
  1027. package/runtime/vendor/zsh/ohmyzsh/themes/jaischeema.zsh-theme +12 -0
  1028. package/runtime/vendor/zsh/ohmyzsh/themes/jbergantine.zsh-theme +6 -0
  1029. package/runtime/vendor/zsh/ohmyzsh/themes/jispwoso.zsh-theme +10 -0
  1030. package/runtime/vendor/zsh/ohmyzsh/themes/jnrowe.zsh-theme +37 -0
  1031. package/runtime/vendor/zsh/ohmyzsh/themes/jonathan.zsh-theme +126 -0
  1032. package/runtime/vendor/zsh/ohmyzsh/themes/josh.zsh-theme +43 -0
  1033. package/runtime/vendor/zsh/ohmyzsh/themes/jreese.zsh-theme +14 -0
  1034. package/runtime/vendor/zsh/ohmyzsh/themes/jtriley.zsh-theme +2 -0
  1035. package/runtime/vendor/zsh/ohmyzsh/themes/juanghurtado.zsh-theme +44 -0
  1036. package/runtime/vendor/zsh/ohmyzsh/themes/junkfood.zsh-theme +30 -0
  1037. package/runtime/vendor/zsh/ohmyzsh/themes/kafeitu.zsh-theme +6 -0
  1038. package/runtime/vendor/zsh/ohmyzsh/themes/kardan.zsh-theme +12 -0
  1039. package/runtime/vendor/zsh/ohmyzsh/themes/kennethreitz.zsh-theme +15 -0
  1040. package/runtime/vendor/zsh/ohmyzsh/themes/kiwi.zsh-theme +10 -0
  1041. package/runtime/vendor/zsh/ohmyzsh/themes/kolo.zsh-theme +24 -0
  1042. package/runtime/vendor/zsh/ohmyzsh/themes/kphoen.zsh-theme +43 -0
  1043. package/runtime/vendor/zsh/ohmyzsh/themes/lambda.zsh-theme +4 -0
  1044. package/runtime/vendor/zsh/ohmyzsh/themes/linuxonly.zsh-theme +58 -0
  1045. package/runtime/vendor/zsh/ohmyzsh/themes/lukerandall.zsh-theme +24 -0
  1046. package/runtime/vendor/zsh/ohmyzsh/themes/macovsky.zsh-theme +12 -0
  1047. package/runtime/vendor/zsh/ohmyzsh/themes/maran.zsh-theme +6 -0
  1048. package/runtime/vendor/zsh/ohmyzsh/themes/mgutz.zsh-theme +6 -0
  1049. package/runtime/vendor/zsh/ohmyzsh/themes/mh.zsh-theme +24 -0
  1050. package/runtime/vendor/zsh/ohmyzsh/themes/michelebologna.zsh-theme +78 -0
  1051. package/runtime/vendor/zsh/ohmyzsh/themes/mikeh.zsh-theme +21 -0
  1052. package/runtime/vendor/zsh/ohmyzsh/themes/miloshadzic.zsh-theme +8 -0
  1053. package/runtime/vendor/zsh/ohmyzsh/themes/minimal.zsh-theme +26 -0
  1054. package/runtime/vendor/zsh/ohmyzsh/themes/mira.zsh-theme +23 -0
  1055. package/runtime/vendor/zsh/ohmyzsh/themes/mlh.zsh-theme +105 -0
  1056. package/runtime/vendor/zsh/ohmyzsh/themes/mortalscumbag.zsh-theme +71 -0
  1057. package/runtime/vendor/zsh/ohmyzsh/themes/mrtazz.zsh-theme +7 -0
  1058. package/runtime/vendor/zsh/ohmyzsh/themes/murilasso.zsh-theme +14 -0
  1059. package/runtime/vendor/zsh/ohmyzsh/themes/muse.zsh-theme +16 -0
  1060. package/runtime/vendor/zsh/ohmyzsh/themes/nanotech.zsh-theme +7 -0
  1061. package/runtime/vendor/zsh/ohmyzsh/themes/nebirhos.zsh-theme +21 -0
  1062. package/runtime/vendor/zsh/ohmyzsh/themes/nicoulaj.zsh-theme +43 -0
  1063. package/runtime/vendor/zsh/ohmyzsh/themes/norm.zsh-theme +7 -0
  1064. package/runtime/vendor/zsh/ohmyzsh/themes/obraun.zsh-theme +10 -0
  1065. package/runtime/vendor/zsh/ohmyzsh/themes/oldgallois.zsh-theme +24 -0
  1066. package/runtime/vendor/zsh/ohmyzsh/themes/peepcode.zsh-theme +47 -0
  1067. package/runtime/vendor/zsh/ohmyzsh/themes/philips.zsh-theme +14 -0
  1068. package/runtime/vendor/zsh/ohmyzsh/themes/pmcgee.zsh-theme +16 -0
  1069. package/runtime/vendor/zsh/ohmyzsh/themes/pygmalion-virtualenv.zsh-theme +54 -0
  1070. package/runtime/vendor/zsh/ohmyzsh/themes/pygmalion.zsh-theme +12 -0
  1071. package/runtime/vendor/zsh/ohmyzsh/themes/random.zsh-theme +47 -0
  1072. package/runtime/vendor/zsh/ohmyzsh/themes/re5et.zsh-theme +15 -0
  1073. package/runtime/vendor/zsh/ohmyzsh/themes/refined.zsh-theme +108 -0
  1074. package/runtime/vendor/zsh/ohmyzsh/themes/rgm.zsh-theme +8 -0
  1075. package/runtime/vendor/zsh/ohmyzsh/themes/risto.zsh-theme +6 -0
  1076. package/runtime/vendor/zsh/ohmyzsh/themes/rixius.zsh-theme +21 -0
  1077. package/runtime/vendor/zsh/ohmyzsh/themes/rkj-repos.zsh-theme +35 -0
  1078. package/runtime/vendor/zsh/ohmyzsh/themes/rkj.zsh-theme +9 -0
  1079. package/runtime/vendor/zsh/ohmyzsh/themes/robbyrussell.zsh-theme +7 -0
  1080. package/runtime/vendor/zsh/ohmyzsh/themes/sammy.zsh-theme +6 -0
  1081. package/runtime/vendor/zsh/ohmyzsh/themes/simonoff.zsh-theme +99 -0
  1082. package/runtime/vendor/zsh/ohmyzsh/themes/simple.zsh-theme +6 -0
  1083. package/runtime/vendor/zsh/ohmyzsh/themes/skaro.zsh-theme +7 -0
  1084. package/runtime/vendor/zsh/ohmyzsh/themes/smt.zsh-theme +83 -0
  1085. package/runtime/vendor/zsh/ohmyzsh/themes/sonicradish.zsh-theme +37 -0
  1086. package/runtime/vendor/zsh/ohmyzsh/themes/sorin.zsh-theme +42 -0
  1087. package/runtime/vendor/zsh/ohmyzsh/themes/sporty_256.zsh-theme +13 -0
  1088. package/runtime/vendor/zsh/ohmyzsh/themes/steeef.zsh-theme +103 -0
  1089. package/runtime/vendor/zsh/ohmyzsh/themes/strug.zsh-theme +25 -0
  1090. package/runtime/vendor/zsh/ohmyzsh/themes/sunaku.zsh-theme +25 -0
  1091. package/runtime/vendor/zsh/ohmyzsh/themes/sunrise.zsh-theme +93 -0
  1092. package/runtime/vendor/zsh/ohmyzsh/themes/superjarin.zsh-theme +18 -0
  1093. package/runtime/vendor/zsh/ohmyzsh/themes/suvash.zsh-theme +21 -0
  1094. package/runtime/vendor/zsh/ohmyzsh/themes/takashiyoshida.zsh-theme +27 -0
  1095. package/runtime/vendor/zsh/ohmyzsh/themes/terminalparty.zsh-theme +8 -0
  1096. package/runtime/vendor/zsh/ohmyzsh/themes/theunraveler.zsh-theme +16 -0
  1097. package/runtime/vendor/zsh/ohmyzsh/themes/tjkirch.zsh-theme +15 -0
  1098. package/runtime/vendor/zsh/ohmyzsh/themes/tjkirch_mod.zsh-theme +13 -0
  1099. package/runtime/vendor/zsh/ohmyzsh/themes/tonotdo.zsh-theme +12 -0
  1100. package/runtime/vendor/zsh/ohmyzsh/themes/trapd00r.zsh-theme +132 -0
  1101. package/runtime/vendor/zsh/ohmyzsh/themes/wedisagree.zsh-theme +109 -0
  1102. package/runtime/vendor/zsh/ohmyzsh/themes/wezm+.zsh-theme +7 -0
  1103. package/runtime/vendor/zsh/ohmyzsh/themes/wezm.zsh-theme +7 -0
  1104. package/runtime/vendor/zsh/ohmyzsh/themes/wuffers.zsh-theme +5 -0
  1105. package/runtime/vendor/zsh/ohmyzsh/themes/xiong-chiamiov-plus.zsh-theme +6 -0
  1106. package/runtime/vendor/zsh/ohmyzsh/themes/xiong-chiamiov.zsh-theme +6 -0
  1107. package/runtime/vendor/zsh/ohmyzsh/themes/ys.zsh-theme +80 -0
  1108. package/runtime/vendor/zsh/ohmyzsh/themes/zhann.zsh-theme +25 -0
  1109. package/runtime/vendor/zsh/ohmyzsh/tools/changelog.sh +592 -0
  1110. package/runtime/vendor/zsh/ohmyzsh/tools/check_for_upgrade.sh +302 -0
  1111. package/runtime/vendor/zsh/ohmyzsh/tools/install.sh +579 -0
  1112. package/runtime/vendor/zsh/ohmyzsh/tools/require_tool.sh +161 -0
  1113. package/runtime/vendor/zsh/ohmyzsh/tools/theme_chooser.sh +98 -0
  1114. package/runtime/vendor/zsh/ohmyzsh/tools/uninstall.sh +41 -0
  1115. package/runtime/vendor/zsh/ohmyzsh/tools/upgrade.sh +295 -0
  1116. package/runtime/vendor/zsh/powerlevel10k/.gitattributes +5 -0
  1117. package/runtime/vendor/zsh/powerlevel10k/LICENSE +22 -0
  1118. package/runtime/vendor/zsh/powerlevel10k/Makefile +14 -0
  1119. package/runtime/vendor/zsh/powerlevel10k/README.md +2120 -0
  1120. package/runtime/vendor/zsh/powerlevel10k/config/p10k-classic.zsh +1738 -0
  1121. package/runtime/vendor/zsh/powerlevel10k/config/p10k-lean-8colors.zsh +1713 -0
  1122. package/runtime/vendor/zsh/powerlevel10k/config/p10k-lean.zsh +1713 -0
  1123. package/runtime/vendor/zsh/powerlevel10k/config/p10k-pure.zsh +193 -0
  1124. package/runtime/vendor/zsh/powerlevel10k/config/p10k-rainbow.zsh +1833 -0
  1125. package/runtime/vendor/zsh/powerlevel10k/config/p10k-robbyrussell.zsh +111 -0
  1126. package/runtime/vendor/zsh/powerlevel10k/font.md +185 -0
  1127. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.clang-format +4 -0
  1128. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.gitattributes +16 -0
  1129. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.vscode/c_cpp_properties.json +17 -0
  1130. package/runtime/vendor/zsh/powerlevel10k/gitstatus/.vscode/settings.json +72 -0
  1131. package/runtime/vendor/zsh/powerlevel10k/gitstatus/LICENSE +674 -0
  1132. package/runtime/vendor/zsh/powerlevel10k/gitstatus/Makefile +57 -0
  1133. package/runtime/vendor/zsh/powerlevel10k/gitstatus/README.md +534 -0
  1134. package/runtime/vendor/zsh/powerlevel10k/gitstatus/build +668 -0
  1135. package/runtime/vendor/zsh/powerlevel10k/gitstatus/build.info +22 -0
  1136. package/runtime/vendor/zsh/powerlevel10k/gitstatus/deps/.gitkeep +0 -0
  1137. package/runtime/vendor/zsh/powerlevel10k/gitstatus/docs/listdir.md +330 -0
  1138. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.plugin.sh +474 -0
  1139. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.plugin.zsh +908 -0
  1140. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.prompt.sh +111 -0
  1141. package/runtime/vendor/zsh/powerlevel10k/gitstatus/gitstatus.prompt.zsh +111 -0
  1142. package/runtime/vendor/zsh/powerlevel10k/gitstatus/install +476 -0
  1143. package/runtime/vendor/zsh/powerlevel10k/gitstatus/install.info +34 -0
  1144. package/runtime/vendor/zsh/powerlevel10k/gitstatus/mbuild +406 -0
  1145. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/algorithm.h +37 -0
  1146. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/arena.cc +118 -0
  1147. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/arena.h +273 -0
  1148. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/bits.h +29 -0
  1149. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check.h +61 -0
  1150. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check_dir_mtime.cc +157 -0
  1151. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/check_dir_mtime.h +31 -0
  1152. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/dir.cc +237 -0
  1153. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/dir.h +50 -0
  1154. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/git.cc +250 -0
  1155. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/git.h +115 -0
  1156. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/gitstatus.cc +219 -0
  1157. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/index.cc +456 -0
  1158. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/index.h +84 -0
  1159. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/logging.cc +139 -0
  1160. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/logging.h +124 -0
  1161. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/options.cc +362 -0
  1162. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/options.h +78 -0
  1163. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/print.h +101 -0
  1164. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo.cc +503 -0
  1165. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo.h +126 -0
  1166. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo_cache.cc +167 -0
  1167. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/repo_cache.h +60 -0
  1168. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/request.cc +130 -0
  1169. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/request.h +50 -0
  1170. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/response.cc +73 -0
  1171. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/response.h +50 -0
  1172. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/scope_guard.h +56 -0
  1173. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/serialization.h +28 -0
  1174. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/stat.h +23 -0
  1175. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/string_cmp.h +151 -0
  1176. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/string_view.h +77 -0
  1177. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/strings.cc +71 -0
  1178. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/strings.h +37 -0
  1179. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tag_db.cc +332 -0
  1180. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tag_db.h +79 -0
  1181. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/thread_pool.cc +87 -0
  1182. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/thread_pool.h +74 -0
  1183. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/time.h +14 -0
  1184. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/timer.cc +72 -0
  1185. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/timer.h +36 -0
  1186. package/runtime/vendor/zsh/powerlevel10k/gitstatus/src/tribool.h +27 -0
  1187. package/runtime/vendor/zsh/powerlevel10k/gitstatus/usrbin/.gitkeep +0 -0
  1188. package/runtime/vendor/zsh/powerlevel10k/internal/configure.zsh +84 -0
  1189. package/runtime/vendor/zsh/powerlevel10k/internal/icons.zsh +1174 -0
  1190. package/runtime/vendor/zsh/powerlevel10k/internal/notes.md +197 -0
  1191. package/runtime/vendor/zsh/powerlevel10k/internal/p10k.zsh +9524 -0
  1192. package/runtime/vendor/zsh/powerlevel10k/internal/parser.zsh +382 -0
  1193. package/runtime/vendor/zsh/powerlevel10k/internal/wizard.zsh +2257 -0
  1194. package/runtime/vendor/zsh/powerlevel10k/internal/worker.zsh +219 -0
  1195. package/runtime/vendor/zsh/powerlevel10k/powerlevel10k.png +0 -0
  1196. package/runtime/vendor/zsh/powerlevel10k/powerlevel10k.zsh-theme +83 -0
  1197. package/runtime/vendor/zsh/powerlevel10k/powerlevel9k.zsh-theme +1 -0
  1198. package/runtime/vendor/zsh/powerlevel10k/prompt_powerlevel10k_setup +1 -0
  1199. package/runtime/vendor/zsh/powerlevel10k/prompt_powerlevel9k_setup +1 -0
  1200. package/runtime/vendor/zsh/zsh-autosuggestions/.editorconfig +18 -0
  1201. package/runtime/vendor/zsh/zsh-autosuggestions/.github/ISSUE_TEMPLATE/bug-report.md +36 -0
  1202. package/runtime/vendor/zsh/zsh-autosuggestions/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  1203. package/runtime/vendor/zsh/zsh-autosuggestions/.github/workflows/integration.yml +51 -0
  1204. package/runtime/vendor/zsh/zsh-autosuggestions/.rspec +3 -0
  1205. package/runtime/vendor/zsh/zsh-autosuggestions/.rubocop.yml +30 -0
  1206. package/runtime/vendor/zsh/zsh-autosuggestions/.ruby-version +1 -0
  1207. package/runtime/vendor/zsh/zsh-autosuggestions/CHANGELOG.md +124 -0
  1208. package/runtime/vendor/zsh/zsh-autosuggestions/DESCRIPTION +1 -0
  1209. package/runtime/vendor/zsh/zsh-autosuggestions/Dockerfile +21 -0
  1210. package/runtime/vendor/zsh/zsh-autosuggestions/Gemfile +5 -0
  1211. package/runtime/vendor/zsh/zsh-autosuggestions/Gemfile.lock +41 -0
  1212. package/runtime/vendor/zsh/zsh-autosuggestions/INSTALL.md +82 -0
  1213. package/runtime/vendor/zsh/zsh-autosuggestions/LICENSE +23 -0
  1214. package/runtime/vendor/zsh/zsh-autosuggestions/Makefile +35 -0
  1215. package/runtime/vendor/zsh/zsh-autosuggestions/README.md +188 -0
  1216. package/runtime/vendor/zsh/zsh-autosuggestions/URL +1 -0
  1217. package/runtime/vendor/zsh/zsh-autosuggestions/VERSION +1 -0
  1218. package/runtime/vendor/zsh/zsh-autosuggestions/ZSH_VERSIONS +14 -0
  1219. package/runtime/vendor/zsh/zsh-autosuggestions/install_test_zsh.sh +23 -0
  1220. package/runtime/vendor/zsh/zsh-autosuggestions/spec/async_spec.rb +70 -0
  1221. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/auto_cd_spec.rb +14 -0
  1222. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/bracketed_paste_magic_spec.rb +43 -0
  1223. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/client_zpty_spec.rb +14 -0
  1224. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/glob_subst_spec.rb +12 -0
  1225. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/rebound_bracket_spec.rb +13 -0
  1226. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/vi_mode_spec.rb +80 -0
  1227. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/wrapped_widget_spec.rb +39 -0
  1228. package/runtime/vendor/zsh/zsh-autosuggestions/spec/integrations/zle_input_stack_spec.rb +24 -0
  1229. package/runtime/vendor/zsh/zsh-autosuggestions/spec/kill_ring_spec.rb +23 -0
  1230. package/runtime/vendor/zsh/zsh-autosuggestions/spec/line_init_spec.rb +17 -0
  1231. package/runtime/vendor/zsh/zsh-autosuggestions/spec/multi_line_spec.rb +8 -0
  1232. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/buffer_max_size_spec.rb +30 -0
  1233. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/highlight_style_spec.rb +7 -0
  1234. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/original_widget_prefix_spec.rb +7 -0
  1235. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/strategy_spec.rb +55 -0
  1236. package/runtime/vendor/zsh/zsh-autosuggestions/spec/options/widget_lists_spec.rb +121 -0
  1237. package/runtime/vendor/zsh/zsh-autosuggestions/spec/spec_helper.rb +54 -0
  1238. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/completion_spec.rb +72 -0
  1239. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/history_spec.rb +23 -0
  1240. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/match_prev_cmd_spec.rb +34 -0
  1241. package/runtime/vendor/zsh/zsh-autosuggestions/spec/strategies/special_characters_helper.rb +75 -0
  1242. package/runtime/vendor/zsh/zsh-autosuggestions/spec/terminal_session.rb +99 -0
  1243. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/disable_spec.rb +19 -0
  1244. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/enable_spec.rb +42 -0
  1245. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/fetch_spec.rb +24 -0
  1246. package/runtime/vendor/zsh/zsh-autosuggestions/spec/widgets/toggle_spec.rb +26 -0
  1247. package/runtime/vendor/zsh/zsh-autosuggestions/src/async.zsh +77 -0
  1248. package/runtime/vendor/zsh/zsh-autosuggestions/src/bind.zsh +106 -0
  1249. package/runtime/vendor/zsh/zsh-autosuggestions/src/config.zsh +95 -0
  1250. package/runtime/vendor/zsh/zsh-autosuggestions/src/fetch.zsh +27 -0
  1251. package/runtime/vendor/zsh/zsh-autosuggestions/src/highlight.zsh +26 -0
  1252. package/runtime/vendor/zsh/zsh-autosuggestions/src/start.zsh +33 -0
  1253. package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/completion.zsh +137 -0
  1254. package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/history.zsh +32 -0
  1255. package/runtime/vendor/zsh/zsh-autosuggestions/src/strategies/match_prev_cmd.zsh +66 -0
  1256. package/runtime/vendor/zsh/zsh-autosuggestions/src/util.zsh +11 -0
  1257. package/runtime/vendor/zsh/zsh-autosuggestions/src/widgets.zsh +231 -0
  1258. package/runtime/vendor/zsh/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh +1 -0
  1259. package/runtime/vendor/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh +867 -0
  1260. package/runtime/vendor/zsh/zsh-history-substring-search/README.md +236 -0
  1261. package/runtime/vendor/zsh/zsh-history-substring-search/zsh-history-substring-search.plugin.zsh +2 -0
  1262. package/runtime/vendor/zsh/zsh-history-substring-search/zsh-history-substring-search.zsh +846 -0
  1263. package/runtime/vendor/zsh/zsh-syntax-highlighting/.editorconfig +15 -0
  1264. package/runtime/vendor/zsh/zsh-syntax-highlighting/.gitattributes +1 -0
  1265. package/runtime/vendor/zsh/zsh-syntax-highlighting/.github/workflows/test.yml +75 -0
  1266. package/runtime/vendor/zsh/zsh-syntax-highlighting/.revision-hash +1 -0
  1267. package/runtime/vendor/zsh/zsh-syntax-highlighting/.version +1 -0
  1268. package/runtime/vendor/zsh/zsh-syntax-highlighting/COPYING.md +23 -0
  1269. package/runtime/vendor/zsh/zsh-syntax-highlighting/HACKING.md +99 -0
  1270. package/runtime/vendor/zsh/zsh-syntax-highlighting/INSTALL.md +169 -0
  1271. package/runtime/vendor/zsh/zsh-syntax-highlighting/Makefile +64 -0
  1272. package/runtime/vendor/zsh/zsh-syntax-highlighting/README.md +97 -0
  1273. package/runtime/vendor/zsh/zsh-syntax-highlighting/changelog.md +920 -0
  1274. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/brackets.md +31 -0
  1275. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/cursor.md +24 -0
  1276. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/line.md +24 -0
  1277. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/main.md +121 -0
  1278. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/pattern.md +24 -0
  1279. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/regexp.md +65 -0
  1280. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters/root.md +25 -0
  1281. package/runtime/vendor/zsh/zsh-syntax-highlighting/docs/highlighters.md +132 -0
  1282. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/README.md +8 -0
  1283. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/brackets-highlighter.zsh +107 -0
  1284. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket-line-finish.zsh +36 -0
  1285. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/cursor-matchingbracket.zsh +47 -0
  1286. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/empty-styles.zsh +33 -0
  1287. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/loop-styles.zsh +53 -0
  1288. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/mismatch-patentheses.zsh +42 -0
  1289. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/near-quotes.zsh +42 -0
  1290. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/nested-parentheses.zsh +45 -0
  1291. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/only-error.zsh +34 -0
  1292. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/quoted-patentheses.zsh +34 -0
  1293. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/simple-parentheses.zsh +42 -0
  1294. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses.zsh +41 -0
  1295. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/brackets/test-data/unclosed-patentheses2.zsh +40 -0
  1296. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/cursor/cursor-highlighter.zsh +47 -0
  1297. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/line/line-highlighter.zsh +44 -0
  1298. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/main-highlighter.zsh +1847 -0
  1299. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1.zsh +35 -0
  1300. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position1b.zsh +36 -0
  1301. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position2.zsh +35 -0
  1302. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3.zsh +37 -0
  1303. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position3b.zsh +38 -0
  1304. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position4.zsh +35 -0
  1305. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/abspath-in-command-position5.zsh +35 -0
  1306. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-assignment1.zsh +38 -0
  1307. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-basic.zsh +35 -0
  1308. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-brackets.zsh +41 -0
  1309. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-command-substitution.zsh +37 -0
  1310. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment1.zsh +37 -0
  1311. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-comment2.zsh +37 -0
  1312. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-complex.zsh +38 -0
  1313. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-empty.zsh +38 -0
  1314. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous1.zsh +36 -0
  1315. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-eponymous2.zsh +36 -0
  1316. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-in-cmdsubst.zsh +43 -0
  1317. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop.zsh +44 -0
  1318. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-loop2.zsh +35 -0
  1319. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested-precommand.zsh +43 -0
  1320. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-nested.zsh +40 -0
  1321. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-parameter.zsh +38 -0
  1322. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument1.zsh +42 -0
  1323. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument2.zsh +42 -0
  1324. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument3.zsh +42 -0
  1325. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-precommand-option-argument4.zsh +42 -0
  1326. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-quoted.zsh +39 -0
  1327. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-redirect.zsh +38 -0
  1328. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse1.zsh +39 -0
  1329. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse2.zsh +39 -0
  1330. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse3.zsh +39 -0
  1331. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse4.zsh +42 -0
  1332. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-reuse5.zsh +43 -0
  1333. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-self.zsh +38 -0
  1334. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-self2.zsh +37 -0
  1335. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir.zsh +36 -0
  1336. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-to-dir1b.zsh +37 -0
  1337. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token1.zsh +37 -0
  1338. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias-unknown-token2.zsh +37 -0
  1339. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/alias.zsh +53 -0
  1340. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always1.zsh +41 -0
  1341. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always2.zsh +43 -0
  1342. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/always3.zsh +43 -0
  1343. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/anonymous-function.zsh +44 -0
  1344. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arg0-colon.zsh +35 -0
  1345. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith-cmdsubst-mess.zsh +46 -0
  1346. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith1.zsh +37 -0
  1347. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arith2.zsh +38 -0
  1348. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-command-substitution.zsh +42 -0
  1349. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-doubled-parens.zsh +37 -0
  1350. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-empty.zsh +39 -0
  1351. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-evaluation.zsh +40 -0
  1352. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-hist-expn.zsh +38 -0
  1353. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-invalid-chars.zsh +39 -0
  1354. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-multiplication.zsh +39 -0
  1355. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-nested.zsh +38 -0
  1356. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-quoted.zsh +38 -0
  1357. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unclosed.zsh +37 -0
  1358. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/arithmetic-unfinished.zsh +41 -0
  1359. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep1.zsh +45 -0
  1360. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep2.zsh +41 -0
  1361. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/array-cmdsep3.zsh +41 -0
  1362. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-append.zsh +39 -0
  1363. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-argv.zsh +38 -0
  1364. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array.zsh +41 -0
  1365. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array2.zsh +40 -0
  1366. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-array3.zsh +41 -0
  1367. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-invalid-command.zsh +37 -0
  1368. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array.zsh +36 -0
  1369. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-not-array2.zsh +36 -0
  1370. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-quoted-cmdsubst.zsh +45 -0
  1371. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-semicolon.zsh +39 -0
  1372. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-subshell.zsh +37 -0
  1373. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote1.zsh +37 -0
  1374. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign-value-quote2.zsh +37 -0
  1375. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assign.zsh +42 -0
  1376. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword1.zsh +40 -0
  1377. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword2.zsh +40 -0
  1378. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword3.zsh +37 -0
  1379. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword4.zsh +40 -0
  1380. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-before-resword5.zsh +38 -0
  1381. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/assignment-quoted.zsh +37 -0
  1382. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-argument.zsh +58 -0
  1383. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/back-quoted-open.zsh +41 -0
  1384. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation.zsh +35 -0
  1385. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-continuation2.zsh +37 -0
  1386. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash-space.zsh +39 -0
  1387. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/backslash.zsh +34 -0
  1388. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-array.zsh +42 -0
  1389. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-assign-scalar.zsh +38 -0
  1390. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/bang-pipeline.zsh +39 -0
  1391. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/block-assignment-no-command.zsh +38 -0
  1392. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/braces1.zsh +41 -0
  1393. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/braces2.zsh +41 -0
  1394. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching1.zsh +38 -0
  1395. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-matching2.zsh +38 -0
  1396. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch1.zsh +39 -0
  1397. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch10-if-negative.zsh +42 -0
  1398. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch2.zsh +39 -0
  1399. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch3.zsh +36 -0
  1400. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch4.zsh +36 -0
  1401. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch5.zsh +37 -0
  1402. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch6.zsh +40 -0
  1403. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch7.zsh +45 -0
  1404. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8-if-positive.zsh +53 -0
  1405. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch8.zsh +38 -0
  1406. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-mismatch9-if-positive.zsh +42 -0
  1407. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/brackets-premature-termination.zsh +40 -0
  1408. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cdpath-abspath.zsh +38 -0
  1409. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cmdpos-elision-partial.zsh +44 -0
  1410. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-adjacent.zsh +45 -0
  1411. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-in-assignment.zsh +42 -0
  1412. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/command-substitution-unclosed.zsh +45 -0
  1413. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/commandseparator.zsh +38 -0
  1414. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-followed.zsh +39 -0
  1415. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-leading.zsh +36 -0
  1416. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comment-off.zsh +38 -0
  1417. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/comments.zsh +39 -0
  1418. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/commmand-parameter.zsh +45 -0
  1419. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow.zsh +57 -0
  1420. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow2.zsh +40 -0
  1421. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/control-flow3.zsh +39 -0
  1422. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/cthulhu.zsh +70 -0
  1423. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dinbrack1.zsh +41 -0
  1424. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dirs_blacklist.zsh +40 -0
  1425. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-dollar.zsh +39 -0
  1426. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-noise.zsh +42 -0
  1427. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-paren.zsh +49 -0
  1428. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted.zsh +38 -0
  1429. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted2.zsh +39 -0
  1430. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/dollar-quoted3.zsh +39 -0
  1431. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-hyphen-option.zsh +35 -0
  1432. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted.zsh +42 -0
  1433. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted2.zsh +39 -0
  1434. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted3.zsh +42 -0
  1435. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/double-quoted4.zsh +37 -0
  1436. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command-newline.zsh +39 -0
  1437. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command.zsh +36 -0
  1438. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-command2.zsh +39 -0
  1439. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/empty-line.zsh +36 -0
  1440. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals1.zsh +36 -0
  1441. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals2.zsh +38 -0
  1442. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals3.zsh +36 -0
  1443. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/equals4.zsh +36 -0
  1444. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/escaped-single-quote.zsh +38 -0
  1445. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/exec-redirection1.zsh +38 -0
  1446. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/fd-target-not-filename.zsh +40 -0
  1447. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-altsyntax.zsh +45 -0
  1448. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-named1.zsh +44 -0
  1449. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function-named2.zsh +39 -0
  1450. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/function.zsh +42 -0
  1451. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/glob.zsh +41 -0
  1452. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/global-alias1.zsh +38 -0
  1453. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/globs-with-quoting.zsh +43 -0
  1454. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/hashed-command.zsh +35 -0
  1455. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-escaped.zsh +38 -0
  1456. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-followed.zsh +39 -0
  1457. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-no.zsh +37 -0
  1458. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-unescaped.zsh +38 -0
  1459. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-double-quoted-yes.zsh +38 -0
  1460. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion.zsh +39 -0
  1461. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/history-expansion2.zsh +34 -0
  1462. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/inheritance.zsh +40 -0
  1463. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob.zsh +37 -0
  1464. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/jobsubst-isnt-glob2.zsh +37 -0
  1465. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/loop-newline.zsh +40 -0
  1466. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval1.zsh +49 -0
  1467. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/meta-no-eval2.zsh +40 -0
  1468. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-array-assignment1.zsh +41 -0
  1469. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string.zsh +37 -0
  1470. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiline-string2.zsh +36 -0
  1471. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing.zsh +39 -0
  1472. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multios-negates-globbing2.zsh +38 -0
  1473. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiple-quotes.zsh +42 -0
  1474. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/multiple-redirections.zsh +46 -0
  1475. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob-alias.zsh +36 -0
  1476. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob-always.zsh +45 -0
  1477. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob1.zsh +38 -0
  1478. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob2.zsh +40 -0
  1479. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob3.zsh +38 -0
  1480. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/noglob4.zsh +45 -0
  1481. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/null-exec.zsh +38 -0
  1482. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/null-exec2-printenv.zsh +38 -0
  1483. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/number_range-glob.zsh +42 -0
  1484. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/off-by-one.zsh +40 -0
  1485. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/opt-shwordsplit1.zsh +40 -0
  1486. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/optimized-cmdsubst-input.zsh +43 -0
  1487. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-dollar-quote-isnt-filename.zsh +39 -0
  1488. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-path_dirs.zsh +44 -0
  1489. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/option-with-quotes.zsh +37 -0
  1490. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/order-path-after-dollar.zsh +38 -0
  1491. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/order-path-before-globbing.zsh +39 -0
  1492. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-positional-in-array-append.zsh +39 -0
  1493. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument1.zsh +42 -0
  1494. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/param-precommand-option-argument3.zsh +42 -0
  1495. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-elision-command-word.zsh +36 -0
  1496. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-shwordsplit.zsh +38 -0
  1497. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized1.zsh +38 -0
  1498. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-expansion-untokenized2.zsh +38 -0
  1499. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-star.zsh +40 -0
  1500. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-to-global-alias.zsh +42 -0
  1501. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position1.zsh +38 -0
  1502. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/parameter-value-contains-command-position2.zsh +38 -0
  1503. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/pasted-quotes.zsh +38 -0
  1504. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-broken-symlink.zsh +41 -0
  1505. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word.zsh +45 -0
  1506. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word2.zsh +37 -0
  1507. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3.zsh +40 -0
  1508. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word3b.zsh +38 -0
  1509. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-dollared-word4.zsh +36 -0
  1510. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-mixed-quoting.zsh +39 -0
  1511. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-separators.zsh +53 -0
  1512. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-separators2.zsh +40 -0
  1513. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-space.zsh +37 -0
  1514. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home.zsh +36 -0
  1515. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home2.zsh +37 -0
  1516. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-home3.zsh +36 -0
  1517. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path-tilde-named.zsh +39 -0
  1518. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path.zsh +37 -0
  1519. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix.zsh +38 -0
  1520. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix2.zsh +39 -0
  1521. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/path_prefix3.zsh +38 -0
  1522. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/plain-file-in-command-position.zsh +39 -0
  1523. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing1.zsh +40 -0
  1524. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-killing2.zsh +39 -0
  1525. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-then-assignment.zsh +37 -0
  1526. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type1.zsh +61 -0
  1527. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type2.zsh +55 -0
  1528. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-type3.zsh +55 -0
  1529. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-uninstalled.zsh +44 -0
  1530. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand-unknown-option.zsh +43 -0
  1531. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand.zsh +36 -0
  1532. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand2.zsh +36 -0
  1533. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand3.zsh +41 -0
  1534. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/precommand4.zsh +39 -0
  1535. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/prefix-redirection.zsh +42 -0
  1536. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-after-redirection.zsh +46 -0
  1537. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution-redirection-isnt-globbing.zsh +41 -0
  1538. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution.zsh +43 -0
  1539. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/process-substitution2.zsh +51 -0
  1540. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/quoted-command-substitution-empty.zsh +44 -0
  1541. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/quoted-redirection-in-command-word.zsh +37 -0
  1542. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/rc-quotes.zsh +39 -0
  1543. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-all.zsh +95 -0
  1544. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-comment.zsh +38 -0
  1545. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-from-param.zsh +40 -0
  1546. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-in-cmdsubst.zsh +41 -0
  1547. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-inhibits-elision.zsh +38 -0
  1548. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-is-not-option.zsh +38 -0
  1549. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection-special-cases.zsh +44 -0
  1550. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection.zsh +39 -0
  1551. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection2.zsh +41 -0
  1552. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/redirection3.zsh +42 -0
  1553. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/reserved-word.zsh +38 -0
  1554. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/simple-command.zsh +34 -0
  1555. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/simple-redirection.zsh +38 -0
  1556. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/subshell.zsh +51 -0
  1557. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-command.zsh +54 -0
  1558. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-comment.zsh +39 -0
  1559. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-longopt.zsh +38 -0
  1560. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection.zsh +48 -0
  1561. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection2.zsh +41 -0
  1562. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/sudo-redirection3.zsh +41 -0
  1563. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/tilde-command-word.zsh +37 -0
  1564. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect1.zsh +39 -0
  1565. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/time-and-nocorrect2.zsh +40 -0
  1566. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/unbackslash.zsh +34 -0
  1567. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/unknown-command.zsh +34 -0
  1568. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/vanilla-newline.zsh +39 -0
  1569. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/main/test-data/vi-linewise-mode.zsh +43 -0
  1570. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/pattern/pattern-highlighter.zsh +60 -0
  1571. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/pattern/test-data/rm-rf.zsh +36 -0
  1572. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/regexp-highlighter.zsh +62 -0
  1573. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/complex.zsh +37 -0
  1574. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/subexpression.zsh +36 -0
  1575. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/regexp/test-data/word-boundary.zsh +42 -0
  1576. package/runtime/vendor/zsh/zsh-syntax-highlighting/highlighters/root/root-highlighter.zsh +44 -0
  1577. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after1-smaller.png +0 -0
  1578. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after1.png +0 -0
  1579. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after2-smaller.png +0 -0
  1580. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after2.png +0 -0
  1581. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after3-smaller.png +0 -0
  1582. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after3.png +0 -0
  1583. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/after4-smaller.png +0 -0
  1584. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before1-smaller.png +0 -0
  1585. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before1.png +0 -0
  1586. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before2-smaller.png +0 -0
  1587. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before2.png +0 -0
  1588. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before3-smaller.png +0 -0
  1589. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before3.png +0 -0
  1590. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/before4-smaller.png +0 -0
  1591. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/preview-smaller.png +0 -0
  1592. package/runtime/vendor/zsh/zsh-syntax-highlighting/images/preview.png +0 -0
  1593. package/runtime/vendor/zsh/zsh-syntax-highlighting/release.md +21 -0
  1594. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/README.md +124 -0
  1595. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/edit-failed-tests +40 -0
  1596. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/generate.zsh +117 -0
  1597. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/tap-colorizer.zsh +71 -0
  1598. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/tap-filter +47 -0
  1599. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-highlighting.zsh +291 -0
  1600. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-perfs.zsh +103 -0
  1601. package/runtime/vendor/zsh/zsh-syntax-highlighting/tests/test-zprof.zsh +78 -0
  1602. package/runtime/vendor/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh +2 -0
  1603. package/runtime/vendor/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +587 -0
  1604. package/runtime/versions.env +19 -0
@@ -0,0 +1,44 @@
1
+ # hitchhiker
2
+
3
+ This plugin adds quotes from The Hitchhiker's Guide to the Galaxy, from Douglas Adams.
4
+
5
+ To use it, add `hitchhiker` to the plugins array in your zshrc file:
6
+
7
+ ```zsh
8
+ plugins=(... hitchhiker)
9
+ ```
10
+
11
+ ## Aliases
12
+
13
+ - `hitchhiker`: displays a quote from the book using `fortune`.
14
+ - `hitchhiker_cow`: displays a quote from the book using `cowthink`.
15
+
16
+ ```console
17
+ $ hitchhiker_cow
18
+ _______________________________________
19
+ ( "OK, so ten out of ten for style, but )
20
+ ( minus several million for good )
21
+ ( thinking, yeah? " )
22
+ ---------------------------------------
23
+ o ^__^
24
+ o (oo)\_______
25
+ (__)\ )\/\
26
+ ||----w |
27
+ || ||
28
+ ```
29
+
30
+ ## Requirements
31
+
32
+ - `fortune` and `strfile`.
33
+ - `cowthink` if using the `hitchhiker_cow` command.
34
+
35
+ ## Credits
36
+
37
+ Fortune file: Andreas Gohr <andi@splitbrain.org> ([splitbrain.org](https://www.splitbrain.org/projects/fortunes/hg2g))
38
+
39
+ Spelling and formatting fixes: grok@resist.ca
40
+
41
+ Original quotes from:
42
+
43
+ - https://web.archive.org/web/20120106083254/http://tatooine.fortunecity.com/vonnegut/29/hitch/parhaat.html
44
+ - https://web.archive.org/web/20011112065737/http://www-personal.umd.umich.edu/~nhughes/dna/faqs/quotedir.html
@@ -0,0 +1,275 @@
1
+ "`...You hadn't exactly gone out of your way to call attention to them had you? I mean like actually telling anyone or anything.' `But the plans were on display...' `On display? I eventually had to go down to the cellar to find them.' `That's the display department.' `With a torch.' `Ah, well the lights had probably gone.' `So had the stairs.' `But look you found the notice didn't you?' `Yes,' said Arthur, `yes I did. It was on display in the bottom of a locked filing cabinet stuck in a disused lavatory with a sign on the door saying "Beware of The Leopard".'"
2
+
3
+ - Arthur singing the praises of the local council planning department.
4
+ %
5
+ "`Time is an illusion. Lunchtime doubly so.' `Very deep,' said Arthur, `you should send that in to the "Reader's Digest". They've got a page for people like you.'"
6
+
7
+ - Ford convincing Arthur to drink three pints in ten minutes at lunchtime.
8
+ %
9
+ "`This must be Thursday,' said Arthur to himself, sinking low over his beer, `I never could get the hang of Thursdays.'"
10
+
11
+ - Arthur, on what was to be his last Thursday on Earth.
12
+ %
13
+ "Pages one and two [of Zaphod's presidential speech] had been salvaged by a Damogran Frond Crested Eagle and had already become incorporated into an extraordinary new form of nest which the eagle had invented. It was constructed largely of papier mache and it was virtually impossible for a newly hatched baby eagle to break out of it. The Damogran Frond Crested Eagle had heard of the notion of survival of the species but wanted no truck with it."
14
+
15
+ - An example of Damogran wildlife.
16
+ %
17
+ "`How do you feel?' he asked him. `Like a military academy,' said Arthur, `bits of me keep passing out.'" .... `We're safe,' he said. `Oh good,' said Arthur. `We're in a small galley cabin,' said Ford, `in one of the spaceships of the Vogon Constructor Fleet.' `Ah,' said Arthur, `this is obviously some strange usage of the word "safe" that I wasn't previously aware of.'
18
+
19
+ - Arthur after his first ever teleport ride.
20
+ %
21
+ "`The best way to get a drink out of a Vogon is to stick your finger down his throat...'"
22
+
23
+ - The Book, on one of the Vogon's social inadequacies.
24
+ %
25
+ "`You'd better be prepared for the jump into hyperspace. It's unpleasantly like being drunk.' `What's so unpleasant about being drunk?' `You ask a glass of water.'"
26
+
27
+ - Arthur getting ready for his first jump into hyperspace.
28
+ %
29
+ "`You know,' said Arthur, `it's at times like this, when I'm trapped in a Vogon airlock with a man from Betelgeuse, and about to die from asphyxiation in deep space that I really wish I'd listened to what my mother told me when I was young.' `Why, what did she tell you?' `I don't know, I didn't listen.'"
30
+
31
+ - Arthur coping with certain death as best as he could.
32
+ %
33
+ "`Ford, you're turning into a penguin. Stop it.'"
34
+
35
+ - Arthur experiences the improbability drive at work.
36
+ %
37
+ "`I think you ought to know that I'm feeling very depressed.'" "`Life, don't talk to me about life.'" "`Here I am, brain the size of a planet and they ask me to take you down to the bridge. Call that "job satisfaction"? 'Cos I don't.'" "`I've got this terrible pain in all the diodes down my left side.'"
38
+
39
+ - Guess who.
40
+ %
41
+ "`If there's anything more important than my ego around, I want it caught and shot now.'"
42
+
43
+ - Zaphod.
44
+ %
45
+ "`In those days spirits were brave, the stakes were high, men were REAL men, women were REAL women, and small furry creatures from Alpha Centauri were REAL small furry creatures from Alpha Centauri.'"
46
+
47
+ - The Book getting all nostalgic.
48
+ %
49
+ "`Hey this is terrific!' Zaphod said. `Someone down there is trying to kill us!' `Terrific,' said Arthur. `But don't you see what this means?' `Yes. We are going to die.' `Yes, but apart from that.' `APART from that?' `It means we must be on to something!' `How soon can we get off it?'"
50
+
51
+ - Zaphod and Arthur in a certain death situation over Magrathea.
52
+ %
53
+ "And wow! Hey! What's this thing coming towards me very fast? Very very fast. So big and flat and round, it needs a big wide sounding word like... ow... ound... round... ground! That's it! That's a good name - ground! I wonder if it will be friends with me?"
54
+
55
+ - For the sperm whale, it wasn't.
56
+ %
57
+ "Oh no, not again."
58
+
59
+ - A bowl of petunias on it's way to certain death.
60
+ %
61
+ "`Er, hey Earthman...' `Arthur,' said Arthur. `Yeah, could you just sort of keep this robot with you and guard this end of the passageway. OK?' `Guard?' said Arthur. `What from? You just said there's no one here.' `Yeah, well, just for safety, OK?' said Zaphod. `Whose? Yours or mine?'"
62
+
63
+ - Arthur drawing the short straw on Magrathea.
64
+ %
65
+ "There are of course many problems connected with life, of which some of the most popular are `Why are people born?' `Why do they die?' `Why do they spend so much of the intervening time wearing digital watches?'"
66
+
67
+ - The Book.
68
+ %
69
+ "`Right,' said Ford, `I'm going to have a look.' He glanced round at the others. `Is no one going to say, "No you can't possibly, let me go instead"?' They all shook their heads. `Oh well.'"
70
+
71
+ - Ford attempting to be heroic whilst being seiged by Shooty and Bangbang.
72
+ %
73
+ "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." - The Book just recapping what happened in the last book. "`I am so amazingly cool you could keep a side of meat in me for a month. I am so hip I have difficulty seeing over my pelvis.'"
74
+
75
+ - Zaphod being cool.
76
+ %
77
+ "`You ARE Zaphod Beeblebrox?' `Yeah,' said Zaphod, `but don't shout it out or they'll all want one.' `THE Zaphod Beeblebrox?' `No, just A Zaphod Bebblebrox, didn't you hear I come in six packs?' `But sir,' it squealed, `I just heard on the sub-ether radio report. It said you were dead...' `Yeah, that's right, I just haven't stopped moving yet.'"
78
+
79
+ - Zaphod and the Guide's receptionist.
80
+ %
81
+ "The fronting for the eighty-yard-long marble-topped bar had been made by stitching together nearly twenty thousand Antarean Mosaic Lizard skins, despite the fact that the twenty thousand lizards concerned had needed them to keep their insides in."
82
+
83
+ - The Book describing Milliways' politically incorrect decor.
84
+ %
85
+ "`...and the Universe,' continued the waiter, determined not to be deflected on his home stretch, `will explode later for your pleasure.' Ford's head swivelled slowly towards him. He spoke with feeling. `Wow,' he said, `What sort of drinks do you serve in this place?' The waiter laughed a polite little waiter's laugh. `Ah,' he said, `I think sir has perhaps misunderstood me.' `Oh, I hope not,' breathed Ford."
86
+
87
+ - Ford in paradise.
88
+ %
89
+ "Zaphod grinned two manic grins, sauntered over to the bar and bought most of it."
90
+
91
+ - Zaphod in paradise.
92
+ %
93
+ "`Maybe somebody here tipped off the Galactic Police,' said Trillian. `Everybody saw you come in.' `You mean they want to arrest me over the phone?' said Zaphod, `Could be. I'm a pretty dangerous dude when I'm cornered.' `Yeah,' said a voice from under the table [Ford's now completely rat-arsed at this point], `you go to pieces so fast people get hit by the shrapnel.'"
94
+
95
+ - Zaphod getting paranoid over a phone call.
96
+ %
97
+ "`Hand me the rap-rod, Plate Captain.' The little waiter's eyebrows wandered about his forehead in confusion. `I beg your pardon, sir?' he said. `The phone, waiter,' said Zaphod, grabbing it off him. `Shee, you guys are so unhip it's a wonder your bums don't fall off.'"
98
+
99
+ - Zaphod discovers that waiters are the least hip people in the Universe.
100
+ %
101
+ "The main reception foyer was almost empty but Ford nevertheless weaved his way through it."
102
+
103
+ - Ford making his way out of Milliways whilst under the influence of enough alcohol to make a rhino sing.
104
+ %
105
+ "`The first ten million years were the worst,' said Marvin, `and the second ten million, they were the worst too. The third ten million I didn't enjoy at all. After that I went into a bit of a decline.'"
106
+
107
+ - Marvin reflecting back on his 576,000,003,579 year career as Milliways' car park attendant.
108
+ %
109
+ "`Incidentally,' he said, `what does teleport mean?' Another moment passed. Slowly, the others turned to face him. `Probably the wrong moment to ask,' said Arthur, `It's just I remember you use the word a short while ago and I only bring it up because...' `Where,' said Ford quietly, `does it say teleport?' `Well, just over here in fact,' said Arthur, pointing at a dark control box in the rear of the cabin, `Just under the word "emergency", above the word "system" and beside the sign saying "out of order".'"
110
+
111
+ - Arthur finding an escape route from a certain death situation.
112
+ %
113
+ "I teleported home one night With Ron and Sid and Meg. Ron stole Meggie's heart away And I got Sidney's leg."
114
+
115
+ - A poem about matter transference beams.
116
+ %
117
+ "Anyone who is capable of getting themselves made President should on no account be allowed to do the job."
118
+
119
+ - Some wisdom from The Book.
120
+ %
121
+ "`We've got to find out what people want from fire, how they relate to it, what sort of image it has for them.' The crowd were tense. They were expecting something wonderful from Ford. `Stick it up your nose,' he said. `Which is precisely the sort of thing we need to know,' insisted the girl, `Do people want fire that can be fitted nasally?'"
122
+
123
+ - Ford "debating" what to do with fire with a marketing girl.
124
+ %
125
+ "The story goes that I first had the idea for THHGTTG while lying drunk in a field in Innsbruck (or `Spain' as the BBC TV publicity department authoritatively has it, probably because it's easier to spell)." - Foreword by DNA.
126
+
127
+ FORD Six pints of bitter. And quickly please, the world's about to end. BARMAN Oh yes, sir? Nice weather for it.
128
+ %
129
+ BOOK Meanwhile, the starship has landed on the surface of Magrathea and Trillian is about to make one of the most important statements of her life. Its importance is not immediately recognised by her companions. TRILL. Hey, my white mice have escaped. ZAPHOD Nuts to your white mice.
130
+ %
131
+ BOOK ...Man had always assumed that he was more intelligent than dolphins because he had achieved so much... the wheel, New York, wars, and so on, whilst all the dolphins had ever done was muck about in the water having a good time. But conversely the dolphins believed themselves to be more intelligent than man for precisely the same reasons.
132
+ %
133
+ ARTHUR What is an Algolian Zylatburger anyway? FORD They're a kind of meatburger made from the most unpleasant parts of a creature well known for its total lack of any pleasant parts. ARTHUR So you mean that the Universe does actually end not with a bang but with a Wimpy?
134
+
135
+ - Cut dialogue from Fit the Fifth.
136
+ %
137
+ BOOK There is a theory which states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarrely inexplicable. There is another theory which states that this has already happened.
138
+
139
+ - Introduction to Fit the Seventh.
140
+ %
141
+ FORD Tell me Arthur... ARTHUR Yes? FORD This boulder we're stuck under, how big would you say it was? Roughly? ARTHUR Oh, about the size of Coventry Cathedral. FORD Do you think we could move it? (Arthur doesn't reply) Just asking.
142
+
143
+ - Ford and Arthur in a tricky situation, Fit the Eighth.
144
+ %
145
+ BOOK What to do if you find yourself stuck in a crack in the ground underneath a giant boulder you can't move, with no hope of rescue. Consider how lucky you are that life has been good to you so far. Alternatively, if life hasn't been good to you so far, which given your current circumstances seems more likely, consider how lucky you are that it won't be troubling you much longer.
146
+
147
+ - Comforting advice for Ford and Arthur in this current situation, Fit the Eighth.
148
+ %
149
+ ZAPHOD Hey, this rock... FORD Marble... ZAPHOD Marble... FORD Ice-covered marble... ZAPHOD Right... it's as slippery as... as... What's the slipperiest thing you can think of? FORD At the moment? This marble. ZAPHOD Right. This marble is as slippery as this marble.
150
+
151
+ - Zaphod and Ford trying to get a grip on things in Brontitall, Fit the Tenth.
152
+ %
153
+ ARTHUR It's not a question of whose habitat it is, it's a question of how hard you hit it.
154
+
155
+ - Arthur pointing out one of the disadvantages of gravity, Fit the Tenth.
156
+ %
157
+ ARTHUR It probably seems a terrible thing to say, but you know what I sometimes think would be useful in these situations? LINT. What? ARTHUR A gun of some sort. LINT.2 Will this help? ARTHUR What is it? LINT.2 A gun of some sort. ARTHUR Oh, that'll help. Can you make it fire? LINT. Er... F/X DEAFENING ROAR LINT. Yes.
158
+
159
+ - Arthur and the Lintillas gaining the upper hand, Fit the Twelfth.
160
+ %
161
+ "He stood up straight and looked the world squarely in the fields and hills. To add weight to his words he stuck the rabbit bone in his hair. He spread his arms out wide. `I will go mad!' he announced."
162
+
163
+ - Arthur discovering a way of coping with life on Prehistoric Earth.
164
+ %
165
+ "`... then I decided that I was a lemon for a couple of weeks. I kept myself amused all that time jumping in and out of a gin and tonic.' Arthur cleared his throat, and then did it again. `Where,' he said, `did you...?' `Find a gin and tonic?' said Ford brightly. `I found a small lake that thought it was a gin and tonic, and jumped in and out of that. At least, I think it thought it was a gin and tonic.' `I may,' he added with a grin which would have sent sane men scampering into the trees, `have been imagining it.'"
166
+
167
+ - Ford updating Arthur about what he's been doing for the past four years.
168
+ %
169
+ "`Eddies,' said Ford, `in the space-time continuum.' `Ah,' nodded Arthur, `is he? Is he?'"
170
+
171
+ - Arthur failing in his first lesson of galactic physics in four years.
172
+ %
173
+ "Ford grabbed him by the lapels of his dressing gown and spoke to him as slowly and distinctly and patiently as if he were somebody from a telephone company accounts department."
174
+
175
+ - Ford trying to rectify that situation.
176
+ %
177
+ "...[Arthur] leapt to his feet like an author hearing the phone ring..."
178
+
179
+ - Who says that the character of Arthur isn't autobiographical?
180
+ %
181
+ "Arthur's consciousness approached his body as from a great distance, and reluctantly. It had had some bad times in there. Slowly, nervously, it entered and settled down into its accustomed position. Arthur sat up. `Where am I?' he said. `Lord's Cricket Ground,' said Ford. `Fine,' said Arthur, and his consciousness stepped out again for a quick breather. His body flopped back on the grass."
182
+
183
+ - Arthur coping with his return to Earth as best as he could.
184
+ %
185
+ "`A curse,' said Slartibartfast, `which will engulf the Galaxy in fire and destruction, and possibly bring the Universe to a premature doom. I mean it,' he added. `Sounds like a bad time,' said Ford, `with luck I'll be drunk enough not to notice.'"
186
+
187
+ - Ford ensuring everyone knew where his priorities lay.
188
+ %
189
+ "`My doctor says that I have a malformed public-duty gland and a natural deficiency in moral fibre, and that I am therefore excused from saving Universes.'"
190
+
191
+ - Ford's last-ditch attempt to get out of helping Slartibartfast.
192
+ %
193
+ "Trillian did a little research in the ship's copy of THHGTTG. It had some advice to offer on drunkenness. `Go to it,' it said, `and good luck.' It was cross-referenced to the entry concerning the size of the Universe and ways of coping with that."
194
+
195
+ - One of the more preferable pieces of advice contained in the Guide.
196
+ %
197
+ "His eyes seemed to be popping out of his head. He wasn't certain if this was because they were trying to see more clearly, or if they simply wanted to leave at this point." - Arthur trying to see who had diverted him from going to a party.
198
+ %
199
+ "Arthur yawed wildly as his skin tried to jump one way and his skeleton the other, whilst his brain tried to work out which of his ears it most wanted to crawl out of. `Bet you weren't expecting to see me again,' said the monster, which Arthur couldn't help thinking was a strange remark for it to make, seeing as he had never met the creature before. He could tell that he hadn't met the creature before from the simple fact that he was able to sleep at nights." - Arthur discovering who had diverted him from going to a party.
200
+ %
201
+ "`That young girl is one of the least benightedly unintelligent organic life forms it has been my profound lack of pleasure not to be able to avoid meeting.'" - Marvin's first ever compliment about anybody.
202
+ %
203
+ "Arthur hoped and prayed that there wasn't an afterlife. Then he realised there was a contradiction there and merely hoped that there wasn't an afterlife." - Arthur realising that he's in a certain death situation with a supernova bomb that is shaped like a cricket ball.
204
+ %
205
+ "`Credit?' he said. `Aaaargggh...' These two words are usually coupled together in the Old Pink Dog Bar." - Ford in a spot of bother.
206
+ %
207
+ "`...we might as well start with where your hand is now.' Arthur said, `So which way do I go?' `Down,' said Fenchurch, `on this occasion.' He moved his hand. `Down,' she said, `is in fact the other way.' `Oh yes.'" - Arthur trying to discover which part of Fenchurch is wrong.
208
+ %
209
+ "There was a point to this story, but it has temporarily escaped the chronicler's mind." - This line perhaps best sums up the whole book.
210
+ %
211
+ "The last time anybody made a list of the top hundred character attributes of New Yorkers, common sense snuck in at number 79. .... When it's fall in New York, the air smells as if someone's been frying goats in it, and if you are keen to breathe the best plan is to open a window and stick your head in a building." - Nuff said??
212
+ %
213
+ "`What's been happening here?' he demanded. `Oh just the nicest things, sir, just the nicest things. can I sit on your lap please?'" "`Colin, I am going to abandon you to your fate.' `I'm so happy.'" "`It will be very, very nasty for you, and that's just too bad. Got it?' `I gurgle with pleasure.'" - Ford and Colin the robot.
214
+ %
215
+ "What the hell, he thought, you're only young once, and threw himself out of the window. That would at least keep the element of surprise on his side." - Ford outwitting a Vogon with a rocket launcher by going into another certain death situation.
216
+ %
217
+ "The major difference between a thing that might go wrong and a thing that cannot possibly go wrong is that when a thing that cannot possibly go wrong goes wrong it usually turns out to be impossible to get at or repair." - One of the laws of computers and programming revealed.
218
+ %
219
+ "`You know they've reintroduced the death penalty for insurance company directors?' `Really?' said Arthur. `No I didn't. For what offence?' Trillian frowned. `What do you mean, offence?' `I see.'" - Evidence that there will be some justice in the Universe eventually.
220
+ %
221
+ "`She hit me on the head with the rock again.' `I think I can confirm that that was my daughter.' `Sweet kid.' `You have to get to know her,' said Arthur. `She eases up does she?' `No,' said Arthur, `but you get a better sense of when to duck.'" - Ford and Arthur on Random.
222
+ %
223
+ "Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun. "
224
+ %
225
+ "Ah, " said Arthur, "this is obviously some strange usage of the word safe that I wasn't previously aware of. "
226
+ %
227
+ "I don't know, " said the voice on the PA, "apathetic bloody planet, I've no sympathy at all. "
228
+ %
229
+ "Now it is such a bizarrely improbable coincidence that anything so mindboggingly useful could have evolved purely by chance that some thinkers have chosen to see it as the final and clinching proof of the non-existence of God. "The argument goes something like this: `I refuse to prove that I exist,' says God, `for proof denies faith, and without faith I am nothing.' "`But,' says Man, `The Babel fish is a dead giveaway, isn't it? It could not have evolved by chance. It proves you exist, and so therefore, by your own arguments, you don't. QED.'
230
+ %
231
+ "Prostetnic Vogon Jeltz smiled very slowly. This was done not so much for effect as because he was trying to remember the sequence of muscle movements. "
232
+ %
233
+ "OK, so ten out of ten for style, but minus several million for good thinking, yeah? "
234
+ %
235
+ "In those days spirits were brave, the stakes were high, men were real men, women were real women, and small furry creatures from Alpha Centauri were real small furry creatures from Alpha Centauri. "
236
+ %
237
+ "For a moment, nothing happened. Then, after a second or so, nothing continued to happen. "
238
+ %
239
+ (aikamuotojen k�ytt� aikamatkustuksessa) "You can arrive (mayan arivan on-when) for any sitting you like without prior (late fore-when) reservation because you can book retrospectively, as it were when you return to your own time. (you can have on-book haventa forewhen presooning returningwenta retrohome.) "
240
+ %
241
+ "The suit into which the man's body had been stuffed looked as if it's only purpose in life was to demonstrate how difficult it was to get this sort of body into a suit. "
242
+ %
243
+ "He dropped his voice still lower. In the stillness, a fly would not have dared clear its throat. "
244
+ %
245
+ "And finally, " said Max, quieting the audience down and putting on his solemn face, "finally I believe we have with us here tonight, a party of believers, very devout believers, from the Church of the Second Coming of the Great Prophet Zarquon. " ... "There they are, " said Max, "sitting there, patiently. He said he'd come again, and he's kept you waiting a long time, so let's hope he's hurrying fellas, because he's only got eight minutes left! "
246
+ %
247
+ "As he came into the light they could see his black and gold uniform on which the buttons were so highly polished that they shone with an intensity that would have made an approaching motorist flash his lights in annoyance. "
248
+ %
249
+ "You're very sure of your facts, " he said at last, "I couldn't trust the thinking of a man who takes the Universe - if there is one - for granted. "
250
+ %
251
+ "What are you talking about? " "Never mind, eat the fruit. " "You know, this place almost looks like the Garden of Eden. " "Eat the fruit. " "Sounds quite like it too. "
252
+ %
253
+ "Rome wasn't burned in a day. "
254
+ %
255
+ "Does it worry you that you don't talk any kind of sense? "
256
+ %
257
+ "One's never alone with a rubber duck. "
258
+ %
259
+ "Another world, another day, another dawn. "
260
+ %
261
+ "He expanded his chest to make it totally clear that here was the sort of man you only dared to cross if you had a team of Sherpas with you. "
262
+ %
263
+ "It was real. At least, if it wasn't real, it did support them, and as that is what sofas are supposed to do, this, by any test that mattered, was a real sofa. "
264
+ %
265
+ Arthur said, "So which way do I go? " "Down, " said Fenchurch, "on this occasion. " He moved his hand. "Down, " she said, "is in fact the other way. " "Oh yes. "
266
+ %
267
+ "You're one hundred percent positive that the ship which is crashed on the bottom of this ocean is the ship which you said you were one hundred percent positive could one hundred percent positively never crash? "
268
+ %
269
+ "Yes, it's the right planet, all right, " he said again. "Right planet, wrong universe. "
270
+ %
271
+ "Ford had his own code of ethics. It wasn't much of one, but it was his and he stuck by it, more or less. One rule he made was never to buy his own drinks. He wasn't sure if that counted as an ethic, but you have to go with what you've got. "
272
+ %
273
+ "Arthur felt at a bit of a loss. There was a whole Galaxy of stuff out there for him, and he wondered if it was churlish of him to complain to himself that it lacked just two things: the world he was born on and the woman he loved. "
274
+ %
275
+ "What was the self-sacrifice? " "I jettisoned half of a much loved and I think irreplaceable pair of shoes. " "Why was that self-sacrifice? " "Because they were mine! " said Ford crossly. "I think we have different value systems. " "Well mine's better. " "That's according to your... oh never mind. "
@@ -0,0 +1,28 @@
1
+ # Handle $0 according to the standard:
2
+ # https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html
3
+ 0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}"
4
+ 0="${${(M)0:#/*}:-$PWD/$0}"
5
+
6
+ HITCHHIKER_DIR="${0:h}/fortunes"
7
+
8
+ # Aliases
9
+ alias hitchhiker="fortune -a $HITCHHIKER_DIR"
10
+ alias hitchhiker_cow="hitchhiker | cowthink"
11
+
12
+ () {
13
+ # Don't generate hitchhiker.dat if it exists and is up-to-date
14
+ if [[ -f "$HITCHHIKER_DIR/hitchhiker.dat" ]] && ! [[ "$HITCHHIKER_DIR/hitchhiker.dat" -ot "$HITCHHIKER_DIR/hitchhiker" ]]; then
15
+ return
16
+ fi
17
+
18
+ # If strfile is not found: some systems install strfile in /usr/sbin but it's not in $PATH
19
+ if ! command -v strfile &>/dev/null && ! [[ -f /usr/sbin/strfile ]]; then
20
+ echo "[oh-my-zsh] hitchhiker depends on strfile, which is not installed" >&2
21
+ echo "[oh-my-zsh] strfile is often provided as part of the 'fortune' package" >&2
22
+ return
23
+ fi
24
+
25
+ "${commands[strfile]:-/usr/sbin/strfile}" "$HITCHHIKER_DIR/hitchhiker" "$HITCHHIKER_DIR/hitchhiker.dat" >/dev/null
26
+ }
27
+
28
+ unset HITCHHIKER_DIR
@@ -0,0 +1,15 @@
1
+ # hitokoto plugin
2
+
3
+ Displays a random quote taken from [hitokoto.cn](https://v1.hitokoto.cn/)
4
+
5
+ Created by [Sinrimin](https://github.com/sinrimin)
6
+
7
+ ## Usage
8
+
9
+ Add the plugin to the plugins array in your zshrc file and restart zsh:
10
+
11
+ ```zsh
12
+ plugins=(... hitokoto)
13
+ ```
14
+
15
+ Then, run `hitokoto` to get a new random quote.
@@ -0,0 +1,18 @@
1
+ if ! (( $+commands[curl] )); then
2
+ echo "hitokoto plugin needs curl to work" >&2
3
+ return
4
+ fi
5
+
6
+ function hitokoto {
7
+ setopt localoptions nopromptsubst
8
+
9
+ # Get hitokoto data
10
+ local -a data
11
+ data=("${(ps:\n:)"$(command curl -s --connect-timeout 2 "https://v1.hitokoto.cn" | command jq -j '.hitokoto+"\n"+.from')"}")
12
+
13
+ # Exit if could not fetch hitokoto
14
+ [[ -n "$data" ]] || return 0
15
+
16
+ local quote="${data[1]}" author="${data[2]}"
17
+ print -P "%F{3}${author}%f: “%F{5}${quote}%f”"
18
+ }
@@ -0,0 +1,9 @@
1
+ # Homestead
2
+
3
+ This plugin provides completion for [Homestead](https://laravel.com/docs/homestead).
4
+
5
+ To use it add homestead to the plugins array in your zshrc file.
6
+
7
+ ```bash
8
+ plugins=(... homestead)
9
+ ```
@@ -0,0 +1,10 @@
1
+ # Homestead basic command completion
2
+ _homestead_get_command_list () {
3
+ homestead --no-ansi | sed -E "1,/(Available|Common) commands/d" | awk '/^ +[a-z]+/ { print $1 }'
4
+ }
5
+
6
+ _homestead () {
7
+ compadd `_homestead_get_command_list`
8
+ }
9
+
10
+ compdef _homestead homestead
@@ -0,0 +1,14 @@
1
+ # HTTPie plugin
2
+
3
+ This plugin adds completion for [HTTPie](https://httpie.org), a command line HTTP
4
+ client, a friendlier cURL replacement.
5
+
6
+ To use it, add `httpie` to the plugins array in your zshrc file:
7
+
8
+ ```zsh
9
+ plugins=(... httpie)
10
+ ```
11
+
12
+ It uses completion from [zsh-completions](https://github.com/zsh-users/zsh-completions).
13
+
14
+ **Maintainer:** [lululau](https://github.com/lululau)
@@ -0,0 +1,181 @@
1
+ #compdef http https
2
+ # ------------------------------------------------------------------------------
3
+ # Copyright (c) 2015 GitHub zsh-users - http://github.com/zsh-users
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions are met:
8
+ # * Redistributions of source code must retain the above copyright
9
+ # notice, this list of conditions and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright
11
+ # notice, this list of conditions and the following disclaimer in the
12
+ # documentation and/or other materials provided with the distribution.
13
+ # * Neither the name of the zsh-users nor the
14
+ # names of its contributors may be used to endorse or promote products
15
+ # derived from this software without specific prior written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
+ # DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY
21
+ # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24
+ # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ # ------------------------------------------------------------------------------
28
+ # Description
29
+ # -----------
30
+ #
31
+ # Completion script for httpie 0.7.2 (http://httpie.org)
32
+ #
33
+ # ------------------------------------------------------------------------------
34
+ # Authors
35
+ # -------
36
+ #
37
+ # * Akira Maeda <https://github.com/glidenote>
38
+ # * Valodim <https://github.com/Valodim>
39
+ # * Claus Klingberg <https://github.com/cjk>
40
+ #
41
+ # ------------------------------------------------------------------------------
42
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
43
+ # vim: ft=zsh sw=2 ts=2 et
44
+ # ------------------------------------------------------------------------------
45
+
46
+ _httpie_params () {
47
+
48
+ local ret=1 expl
49
+
50
+ # or a url
51
+ if (( CURRENT <= NORMARG+1 )) && [[ $words[NORMARG] != *:* ]] ; then
52
+ _httpie_urls && ret=0
53
+
54
+ # regular param, if we already have a url
55
+ elif (( CURRENT > NORMARG )); then
56
+
57
+ # if the suffix is precisely : this is shorthand for a header
58
+ if [[ -prefix ':' ]]; then
59
+ PREFIX=
60
+ SUFFIX=:
61
+ fi
62
+
63
+ # if we are in front of a : (possibly due to the PREFIX move before)
64
+ if [[ -suffix ':' ]]; then
65
+
66
+ # this is rather buggy with normal tab behavior :\
67
+ compstate[insert]=menu
68
+ _wanted http_header expl 'HTTP Header' \
69
+ compadd -s ':' -S '' -- Content-Type Cookie && return 0
70
+ fi
71
+
72
+ # ignore all prefix stuff
73
+ compset -P '(#b)([^:@=]#)'
74
+ local name=$match[1]
75
+
76
+ if compset -P '='; then
77
+ _message "$name data field value"
78
+ elif compset -P '@'; then
79
+ _files
80
+ elif compset -P ':=@'; then
81
+ _files
82
+ elif compset -P ':='; then
83
+ _message "$name raw json data"
84
+ elif compset -P '=='; then
85
+ _message "$name url parameter value"
86
+ elif compset -P ':'; then
87
+ _message "$name header content"
88
+ else
89
+ typeset -a ops
90
+ ops=(
91
+ '=:data field'
92
+ '\::header'
93
+ '==:request parameter'
94
+ '@:data file field'
95
+ '\:=:raw json field'
96
+ '\:=@:raw json field file path'
97
+ )
98
+ _describe -t httpparams "parameter types" ops -Q -S ''
99
+ fi
100
+
101
+ ret=0
102
+
103
+ fi
104
+
105
+ # first arg may be a request method
106
+ (( CURRENT == NORMARG )) &&
107
+ _wanted http_method expl 'Request Method' \
108
+ compadd GET POST PUT DELETE HEAD OPTIONS TRACE CONNECT PATCH LINK UNLINK && ret=0
109
+
110
+ return $ret
111
+
112
+ }
113
+
114
+ _httpie_urls() {
115
+
116
+ local ret=1
117
+
118
+ if ! [[ -prefix [-+.a-z0-9]#:// ]]; then
119
+ local expl
120
+ compset -S '[^:/]*' && compstate[to_end]=''
121
+ _wanted url-schemas expl 'URL schema' compadd -S '' http:// https:// && ret=0
122
+ else
123
+ _urls && ret=0
124
+ fi
125
+
126
+ return $ret
127
+
128
+ }
129
+
130
+ _httpie_printflags () {
131
+
132
+ local ret=1
133
+
134
+ # not sure why this is necessary, but it will complete "-pH" style without it
135
+ [[ $IPREFIX == "-p" ]] && IPREFIX+=" "
136
+
137
+ compset -P '(#b)([a-zA-Z]#)'
138
+
139
+ local -a flags
140
+ [[ $match[1] != *H* ]] && flags+=( "H:request headers" )
141
+ [[ $match[1] != *B* ]] && flags+=( "B:request body" )
142
+ [[ $match[1] != *h* ]] && flags+=( "h:response headers" )
143
+ [[ $match[1] != *b* ]] && flags+=( "b:response body" )
144
+
145
+ _describe -t printflags "print flags" flags -S '' && ret=0
146
+
147
+ return $ret
148
+
149
+ }
150
+
151
+ integer NORMARG
152
+
153
+ _arguments -n -C -s \
154
+ '(-j --json -f)'{-j,--json}'[Data items from the command line are serialized as a JSON object.]' \
155
+ '(-f --form -j)'{-f,--form}'[Data items from the command line are serialized as form fields.]' \
156
+ '--pretty=[Controls output processing.]:output format:(all colors format none)' \
157
+ '(-s --style)'{-s,--style}'=[Output coloring style]:STYLE:(autumn borland bw colorful default emacs friendly fruity manni monokai murphy native pastie perldoc ttr solarized tango trac vim vs)' \
158
+ '(-p --print)'{-p,--print}'=[String specifying what the output should contain]:print flags:_httpie_printflags' \
159
+ '(-v --verbose)'{-v,--verbose}'[Print the whole request as well as the response.]' \
160
+ '(-p -h --headers)'{-h,--headers}'[Print only the response headers.]' \
161
+ '(-p -b --body)'{-b,--body}'[Print only the response body.]' \
162
+ '(-S --stream)'{-S,--stream}'[Always stream the output by line, i.e., behave like `tail -f`.]' \
163
+ '(-o --output)'{-o,--output}'=[Save output to FILE.]:output file:_files' \
164
+ '(-d --download)'{-d,--download}'=[Do not print the response body to stdout.]' \
165
+ '(-c --continue)'{-c,--continue}'[Resume an interrupted download.]' \
166
+ '(--session-read-only)--session=[Create, or reuse and update a session.]:session name (or path)' \
167
+ '(--session)--session-read-only=[Create or read a session without updating it form the request/response exchange.]:session name (or path)' \
168
+ '(-a --auth)'{-a,--auth}'=[If only the username is provided (-a username)]:USER\:PASS' \
169
+ '--auth-type=[The authentication mechanism to be used. Defaults to "basic".]:AUTH-TYPE:(basic digest)' \
170
+ '--proxy=[String mapping protocol to the URL of the proxy.]:PROXY' \
171
+ '--follow[Allow full redirects.]' \
172
+ "--verify=[Enable or disable verification of ssl certificates.]:verify certificate:(yes no)" \
173
+ '--allow-redirects[Set this flag if full redirects are allowed (e.g. re-POST-ing of data at new ``Location``)]' \
174
+ '--timeout=[Float describes the timeout of the request (Use socket.setdefaulttimeout() as fallback).]:timeout (seconds)' \
175
+ '--check-status[This flag instructs HTTPie to also check the HTTP status code and exit with an error if the status indicates one.]' \
176
+ '--ignore-stdin[Do not attempt to read stdin.]' \
177
+ '(- *)--help[show help message.]' \
178
+ "(- *)--version[show program's version number and exit.]" \
179
+ '--traceback[Prints exception traceback should one occur.]' \
180
+ '--debug[Prints exception traceback should one occur and other information useful for debugging HTTPie itself.]' \
181
+ '*:args:_httpie_params' && return 0
@@ -0,0 +1,10 @@
1
+ # Invoke plugin
2
+
3
+ This plugin adds completion for [invoke](https://github.com/pyinvoke/invoke).
4
+
5
+ To use it, add `invoke` to the plugins array in your `~/.zshrc` file:
6
+
7
+ ```zsh
8
+ plugins=(... invoke)
9
+ ```
10
+
@@ -0,0 +1,5 @@
1
+ # Autocompletion for invoke.
2
+ #
3
+ if [ $commands[invoke] ]; then
4
+ source <(invoke --print-completion-script=zsh)
5
+ fi