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,37 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2010-2011 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ mkdir A
31
+ touch "A/mu with spaces"
32
+ BUFFER='ls A/mu\ with\ spaces'
33
+
34
+ expected_region_highlight=(
35
+ "1 2 command" # ls
36
+ "4 21 path" # A/mu\ with\ spaces
37
+ )
@@ -0,0 +1,36 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2010-2011 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ HOME="."
31
+ BUFFER='ls ~'
32
+
33
+ expected_region_highlight=(
34
+ "1 2 command" # ls
35
+ "4 4 path" # ~
36
+ )
@@ -0,0 +1,37 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2015 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ HOME="/nonexistent"
31
+ BUFFER='ls ~'
32
+
33
+ expected_region_highlight=(
34
+ "1 2 command" # ls
35
+ "4 4 default" # ~
36
+ )
37
+
@@ -0,0 +1,36 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2016 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ HOME="."
31
+ BUFFER='ls \~'
32
+
33
+ expected_region_highlight=(
34
+ "1 2 command" # ls
35
+ "4 5 default" # \~
36
+ )
@@ -0,0 +1,39 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2015 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ mkdir mydir
31
+ touch mydir/path-tilde-named.test
32
+ hash -d D=mydir
33
+
34
+ BUFFER='ls ~D/path-tilde-named.test'
35
+
36
+ expected_region_highlight=(
37
+ "1 2 command" # ls
38
+ "4 27 path" # ~D/path-tilde-named.test
39
+ )
@@ -0,0 +1,37 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2010-2011 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ mkdir A
31
+ touch A/mu
32
+ BUFFER='ls A/mu'
33
+
34
+ expected_region_highlight=(
35
+ "1 2 command" # ls
36
+ "4 7 path" # A/mu
37
+ )
@@ -0,0 +1,38 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2015 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ # Assumes that '/bin/sh' exists and '/bin/s' does not exist.
31
+ # Related to path_prefix2.zsh
32
+
33
+ BUFFER='ls /bin/s'
34
+
35
+ expected_region_highlight=(
36
+ "1 2 command" # ls
37
+ "4 9 path_prefix" # /bin/s
38
+ )
@@ -0,0 +1,39 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2015 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ # Assumes that '/bin/sh' exists and '/bin/s' does not exist.
31
+ # Related to path_prefix.zsh
32
+
33
+ BUFFER='ls /bin/s'
34
+ WIDGET=zle-line-finish
35
+
36
+ expected_region_highlight=(
37
+ "1 2 command" # ls
38
+ "4 9 default" # /bin/s
39
+ )
@@ -0,0 +1,38 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2015 zsh-syntax-highlighting contributors
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
6
+ # provided that the following conditions are met:
7
+ #
8
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
9
+ # and the following disclaimer.
10
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials provided
12
+ # with the distribution.
13
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
14
+ # may be used to endorse or promote products derived from this software without specific prior
15
+ # written permission.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
18
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
20
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+ # -------------------------------------------------------------------------------------------------
26
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
27
+ # vim: ft=zsh sw=2 ts=2 et
28
+ # -------------------------------------------------------------------------------------------------
29
+
30
+ # Assumes that '/bin/sh' exists and '/bin/s' does not exist.
31
+ # Related to path_prefix.zsh
32
+
33
+ PREBUFFER=$'ls \\\n'
34
+ BUFFER='/bin/s'
35
+
36
+ expected_region_highlight=(
37
+ '1 6 path_prefix' # /bin/s
38
+ )
@@ -0,0 +1,39 @@
1
+ #!/usr/bin/env zsh
2
+ # -------------------------------------------------------------------------------------------------
3
+ # Copyright (c) 2020 zsh-syntax-highlighting contributors
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
7
+ # provided that the following conditions are met:
8
+ #
9
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
10
+ # and the following disclaimer.
11
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
12
+ # conditions and the following disclaimer in the documentation and/or other materials provided
13
+ # with the distribution.
14
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
15
+ # may be used to endorse or promote products derived from this software without specific prior
16
+ # written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
19
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
24
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+ # -------------------------------------------------------------------------------------------------
27
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
28
+ # vim: ft=zsh sw=2 ts=2 et
29
+ # -------------------------------------------------------------------------------------------------
30
+
31
+ touch foo
32
+ chmod -x foo
33
+ BUFFER=$'./foo; ./foo'
34
+
35
+ expected_region_highlight=(
36
+ '1 5 unknown-token' # ./foo (in middle)
37
+ '6 6 commandseparator' # ;
38
+ '8 12 unknown-token' # ./foo (at end)
39
+ )
@@ -0,0 +1,40 @@
1
+ #!/usr/bin/env zsh
2
+ # -------------------------------------------------------------------------------------------------
3
+ # Copyright (c) 2020 zsh-syntax-highlighting contributors
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
7
+ # provided that the following conditions are met:
8
+ #
9
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
10
+ # and the following disclaimer.
11
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
12
+ # conditions and the following disclaimer in the documentation and/or other materials provided
13
+ # with the distribution.
14
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
15
+ # may be used to endorse or promote products derived from this software without specific prior
16
+ # written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
19
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
24
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+ # -------------------------------------------------------------------------------------------------
27
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
28
+ # vim: ft=zsh sw=2 ts=2 et
29
+ # -------------------------------------------------------------------------------------------------
30
+
31
+ hash sudo=false
32
+ touch foo
33
+
34
+ BUFFER='sudo -e ./foo'
35
+
36
+ expected_region_highlight=(
37
+ '1 4 precommand' # sudo
38
+ '6 7 single-hyphen-option' # -e
39
+ '9 13 path' # ./foo
40
+ )
@@ -0,0 +1,39 @@
1
+ #!/usr/bin/env zsh
2
+ # -------------------------------------------------------------------------------------------------
3
+ # Copyright (c) 2020 zsh-syntax-highlighting contributors
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
7
+ # provided that the following conditions are met:
8
+ #
9
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
10
+ # and the following disclaimer.
11
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
12
+ # conditions and the following disclaimer in the documentation and/or other materials provided
13
+ # with the distribution.
14
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
15
+ # may be used to endorse or promote products derived from this software without specific prior
16
+ # written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
19
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
24
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+ # -------------------------------------------------------------------------------------------------
27
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
28
+ # vim: ft=zsh sw=2 ts=2 et
29
+ # -------------------------------------------------------------------------------------------------
30
+
31
+ hash sudo=false
32
+
33
+ BUFFER='sudo -e /does/not/exist'
34
+
35
+ expected_region_highlight=(
36
+ '1 4 precommand' # sudo
37
+ '6 7 single-hyphen-option' # -e
38
+ '9 23 default' # /does/not/exist
39
+ )
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env zsh
2
+ # -------------------------------------------------------------------------------------------------
3
+ # Copyright (c) 2019 zsh-syntax-highlighting contributors
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
7
+ # provided that the following conditions are met:
8
+ #
9
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
10
+ # and the following disclaimer.
11
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
12
+ # conditions and the following disclaimer in the documentation and/or other materials provided
13
+ # with the distribution.
14
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
15
+ # may be used to endorse or promote products derived from this software without specific prior
16
+ # written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
19
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
24
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+ # -------------------------------------------------------------------------------------------------
27
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
28
+ # vim: ft=zsh sw=2 ts=2 et
29
+ # -------------------------------------------------------------------------------------------------
30
+
31
+ BUFFER=$'nice x=y ls'
32
+
33
+ expected_region_highlight=(
34
+ '1 4 precommand' # nice
35
+ '6 8 unknown-token "issue #641.5"' # x=y
36
+ '10 11 default "issue #641.5 (fallout)"' # ls
37
+ )
@@ -0,0 +1,61 @@
1
+ #!/usr/bin/env zsh
2
+ # -------------------------------------------------------------------------------------------------
3
+ # Copyright (c) 2019 zsh-syntax-highlighting contributors
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
7
+ # provided that the following conditions are met:
8
+ #
9
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
10
+ # and the following disclaimer.
11
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
12
+ # conditions and the following disclaimer in the documentation and/or other materials provided
13
+ # with the distribution.
14
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
15
+ # may be used to endorse or promote products derived from this software without specific prior
16
+ # written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
19
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
24
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+ # -------------------------------------------------------------------------------------------------
27
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
28
+ # vim: ft=zsh sw=2 ts=2 et
29
+ # -------------------------------------------------------------------------------------------------
30
+
31
+ # Test the behaviour of a builtin that exists as a command as well.
32
+ # The spaces in $BUFFER are to align precommand-type*.zsh test files.
33
+ BUFFER=$'test ; builtin test ; builtin command test ; nice test '
34
+
35
+ # Our expectations assumes that a 'test' external command exists (in addition
36
+ # to the 'test' builtin). Let's verify that, using the EQUALS option (which
37
+ # is on by default). If there's no 'test' command, the expansion will fail,
38
+ # diagnose a message on stdout, and the harness will detect a failure.
39
+ #
40
+ # This seems to work on all platforms, insofar as no one ever reported a bug
41
+ # about their system not having a 'test' binary in PATH. That said, if someone
42
+ # ever does see this test fail for this reason, we should explicitly create
43
+ # a 'test' executable in cwd and 'rehash'.
44
+ : =test
45
+
46
+ expected_region_highlight=(
47
+ '1 4 builtin' # test
48
+ '7 7 commandseparator' # ;
49
+
50
+ '9 15 precommand' # builtin
51
+ '17 20 builtin' # test
52
+ '23 23 commandseparator' # ;
53
+
54
+ '25 31 precommand' # builtin
55
+ '33 39 precommand' # command
56
+ '41 44 command "issue #608"' # test
57
+ '47 47 commandseparator' # ;
58
+
59
+ '49 52 precommand' # nice
60
+ '54 57 command "issue #608"' # test
61
+ )
@@ -0,0 +1,55 @@
1
+ #!/usr/bin/env zsh
2
+ # -------------------------------------------------------------------------------------------------
3
+ # Copyright (c) 2019 zsh-syntax-highlighting contributors
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without modification, are permitted
7
+ # provided that the following conditions are met:
8
+ #
9
+ # * Redistributions of source code must retain the above copyright notice, this list of conditions
10
+ # and the following disclaimer.
11
+ # * Redistributions in binary form must reproduce the above copyright notice, this list of
12
+ # conditions and the following disclaimer in the documentation and/or other materials provided
13
+ # with the distribution.
14
+ # * Neither the name of the zsh-syntax-highlighting contributors nor the names of its contributors
15
+ # may be used to endorse or promote products derived from this software without specific prior
16
+ # written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
19
+ # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21
+ # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
24
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25
+ # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+ # -------------------------------------------------------------------------------------------------
27
+ # -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
28
+ # vim: ft=zsh sw=2 ts=2 et
29
+ # -------------------------------------------------------------------------------------------------
30
+
31
+ # Test the behaviour of a builtin that does not exist as a command.
32
+ # The spaces in $BUFFER are to align precommand-type*.zsh test files.
33
+ BUFFER=$'zstyle; builtin zstyle; builtin command zstyle; nice zstyle'
34
+
35
+ # Verify that no $^path/zstyle(N) binary exists.
36
+ if (disable zstyle; type zstyle >/dev/null); then
37
+ echo >&2 "precommand-type2: error: 'zstyle' exists not only as a builtin"
38
+ fi
39
+
40
+ expected_region_highlight=(
41
+ '1 6 builtin' # zstyle
42
+ '7 7 commandseparator' # ;
43
+
44
+ '9 15 precommand' # builtin
45
+ '17 22 builtin' # zstyle
46
+ '23 23 commandseparator' # ;
47
+
48
+ '25 31 precommand' # builtin
49
+ '33 39 precommand' # command
50
+ '41 46 unknown-token "issue #608"' # zstyle
51
+ '47 47 commandseparator' # ;
52
+
53
+ '49 52 precommand' # nice
54
+ '54 59 unknown-token "issue #608"' # zstyle
55
+ )