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,78 @@
1
+ #!/usr/bin/env zsh
2
+ # -------------------------------------------------------------------------------------------------
3
+ # Copyright (c) 2010-2015 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
+ # Load the main script.
32
+ typeset -a region_highlight
33
+ . ${0:h:h}/zsh-syntax-highlighting.zsh
34
+
35
+ # Activate the highlighter.
36
+ ZSH_HIGHLIGHT_HIGHLIGHTERS=(main)
37
+
38
+ source_file=0.7.1:highlighters/$1/$1-highlighter.zsh
39
+
40
+ # Runs a highlighting test
41
+ # $1: data file
42
+ run_test_internal() {
43
+ setopt interactivecomments
44
+
45
+ local -a highlight_zone
46
+
47
+ local tests_tempdir="$1"; shift
48
+ local srcdir="$PWD"
49
+ builtin cd -q -- "$tests_tempdir" || { echo >&2 "Bail out! cd failed: $?"; return 1 }
50
+
51
+ # Load the data and prepare checking it.
52
+ PREBUFFER=
53
+ BUFFER=$(cd -- "$srcdir" && git cat-file blob $source_file)
54
+ expected_region_highlight=()
55
+
56
+ zmodload zsh/zprof
57
+ zprof -c
58
+ # Set $? for _zsh_highlight
59
+ true && _zsh_highlight
60
+ zprof
61
+ }
62
+
63
+ run_test() {
64
+ # Do not combine the declaration and initialization: «local x="$(false)"» does not set $?.
65
+ local __tests_tempdir
66
+ __tests_tempdir="$(mktemp -d)" && [[ -d $__tests_tempdir ]] || {
67
+ echo >&2 "Bail out! mktemp failed"; return 1
68
+ }
69
+ typeset -r __tests_tempdir # don't allow tests to override the variable that we will 'rm -rf' later on
70
+
71
+ {
72
+ (run_test_internal "$__tests_tempdir" "$@")
73
+ } always {
74
+ rm -rf -- "$__tests_tempdir"
75
+ }
76
+ }
77
+
78
+ run_test
@@ -0,0 +1,2 @@
1
+ 0=${(%):-%N}
2
+ source ${0:A:h}/zsh-syntax-highlighting.zsh
@@ -0,0 +1,587 @@
1
+ # -------------------------------------------------------------------------------------------------
2
+ # Copyright (c) 2010-2020 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
+ # First of all, ensure predictable parsing.
31
+ typeset zsh_highlight__aliases="$(builtin alias -Lm '[^+]*')"
32
+ # In zsh <= 5.2, aliases that begin with a plus sign ('alias -- +foo=42')
33
+ # are emitted by `alias -L` without a '--' guard, so they don't round trip.
34
+ #
35
+ # Hence, we exclude them from unaliasing:
36
+ builtin unalias -m '[^+]*'
37
+
38
+ # Set $0 to the expected value, regardless of functionargzero.
39
+ 0=${(%):-%N}
40
+ if true; then
41
+ # $0 is reliable
42
+ typeset -g ZSH_HIGHLIGHT_VERSION=$(<"${0:A:h}"/.version)
43
+ typeset -g ZSH_HIGHLIGHT_REVISION=$(<"${0:A:h}"/.revision-hash)
44
+ if [[ $ZSH_HIGHLIGHT_REVISION == \$Format:* ]]; then
45
+ # When running from a source tree without 'make install', $ZSH_HIGHLIGHT_REVISION
46
+ # would be set to '$Format:%H$' literally. That's an invalid value, and obtaining
47
+ # the valid value (via `git rev-parse HEAD`, as Makefile does) might be costly, so:
48
+ ZSH_HIGHLIGHT_REVISION=HEAD
49
+ fi
50
+ fi
51
+
52
+ # This function takes a single argument F and returns True iff F is an autoload stub.
53
+ _zsh_highlight__function_is_autoload_stub_p() {
54
+ if zmodload -e zsh/parameter; then
55
+ #(( ${+functions[$1]} )) &&
56
+ [[ "$functions[$1]" == *"builtin autoload -X"* ]]
57
+ else
58
+ #[[ $(type -wa -- "$1") == *'function'* ]] &&
59
+ [[ "${${(@f)"$(which -- "$1")"}[2]}" == $'\t'$histchars[3]' undefined' ]]
60
+ fi
61
+ # Do nothing here: return the exit code of the if.
62
+ }
63
+
64
+ # Return True iff the argument denotes a function name.
65
+ _zsh_highlight__is_function_p() {
66
+ if zmodload -e zsh/parameter; then
67
+ (( ${+functions[$1]} ))
68
+ else
69
+ [[ $(type -wa -- "$1") == *'function'* ]]
70
+ fi
71
+ }
72
+
73
+ # This function takes a single argument F and returns True iff F denotes the
74
+ # name of a callable function. A function is callable if it is fully defined
75
+ # or if it is marked for autoloading and autoloading it at the first call to it
76
+ # will succeed. In particular, if F has been marked for autoloading
77
+ # but is not available in $fpath, then calling this function on F will return False.
78
+ #
79
+ # See users/21671 https://www.zsh.org/cgi-bin/mla/redirect?USERNUMBER=21671
80
+ _zsh_highlight__function_callable_p() {
81
+ if _zsh_highlight__is_function_p "$1" &&
82
+ ! _zsh_highlight__function_is_autoload_stub_p "$1"
83
+ then
84
+ # Already fully loaded.
85
+ return 0 # true
86
+ else
87
+ # "$1" is either an autoload stub, or not a function at all.
88
+ #
89
+ # Use a subshell to avoid affecting the calling shell.
90
+ #
91
+ # We expect 'autoload +X' to return non-zero if it fails to fully load
92
+ # the function.
93
+ ( autoload -U +X -- "$1" 2>/dev/null )
94
+ return $?
95
+ fi
96
+ }
97
+
98
+ # -------------------------------------------------------------------------------------------------
99
+ # Core highlighting update system
100
+ # -------------------------------------------------------------------------------------------------
101
+
102
+ # Use workaround for bug in ZSH?
103
+ # zsh-users/zsh@48cadf4 https://www.zsh.org/mla/workers/2017/msg00034.html
104
+ autoload -Uz is-at-least
105
+ if is-at-least 5.4; then
106
+ typeset -g zsh_highlight__pat_static_bug=false
107
+ else
108
+ typeset -g zsh_highlight__pat_static_bug=true
109
+ fi
110
+
111
+ # Array declaring active highlighters names.
112
+ typeset -ga ZSH_HIGHLIGHT_HIGHLIGHTERS
113
+
114
+ # Update ZLE buffer syntax highlighting.
115
+ #
116
+ # Invokes each highlighter that needs updating.
117
+ # This function is supposed to be called whenever the ZLE state changes.
118
+ _zsh_highlight()
119
+ {
120
+ # Store the previous command return code to restore it whatever happens.
121
+ local ret=$?
122
+ # Make it read-only. Can't combine this with the previous line when POSIX_BUILTINS may be set.
123
+ typeset -r ret
124
+
125
+ # $region_highlight should be predefined, either by zle or by the test suite's mock (non-special) array.
126
+ (( ${+region_highlight[@]} )) || {
127
+ echo >&2 'zsh-syntax-highlighting: error: $region_highlight is not defined'
128
+ echo >&2 'zsh-syntax-highlighting: (Check whether zsh-syntax-highlighting was installed according to the instructions.)'
129
+ return $ret
130
+ }
131
+
132
+ # Probe the memo= feature, once.
133
+ (( ${+zsh_highlight__memo_feature} )) || {
134
+ region_highlight+=( " 0 0 fg=red, memo=zsh-syntax-highlighting" )
135
+ case ${region_highlight[-1]} in
136
+ ("0 0 fg=red")
137
+ # zsh 5.8 or earlier
138
+ integer -gr zsh_highlight__memo_feature=0
139
+ ;;
140
+ ("0 0 fg=red memo=zsh-syntax-highlighting")
141
+ # zsh 5.9 or later
142
+ integer -gr zsh_highlight__memo_feature=1
143
+ ;;
144
+ (" 0 0 fg=red, memo=zsh-syntax-highlighting") ;&
145
+ (*)
146
+ # We can get here in two ways:
147
+ #
148
+ # 1. When not running as a widget. In that case, $region_highlight is
149
+ # not a special variable (= one with custom getter/setter functions
150
+ # written in C) but an ordinary one, so the third case pattern matches
151
+ # and we fall through to this block. (The test suite uses this codepath.)
152
+ #
153
+ # 2. When running under a future version of zsh that will have changed
154
+ # the serialization of $region_highlight elements from their underlying
155
+ # C structs, so that none of the previous case patterns will match.
156
+ #
157
+ # In either case, fall back to a version check.
158
+ if is-at-least 5.9; then
159
+ integer -gr zsh_highlight__memo_feature=1
160
+ else
161
+ integer -gr zsh_highlight__memo_feature=0
162
+ fi
163
+ ;;
164
+ esac
165
+ region_highlight[-1]=()
166
+ }
167
+
168
+ # Reset region_highlight to build it from scratch
169
+ if (( zsh_highlight__memo_feature )); then
170
+ region_highlight=( "${(@)region_highlight:#*memo=zsh-syntax-highlighting*}" )
171
+ else
172
+ # Legacy codepath. Not very interoperable with other plugins (issue #418).
173
+ region_highlight=()
174
+ fi
175
+
176
+ # Remove all highlighting in isearch, so that only the underlining done by zsh itself remains.
177
+ # For details see FAQ entry 'Why does syntax highlighting not work while searching history?'.
178
+ # This disables highlighting during isearch (for reasons explained in README.md) unless zsh is new enough
179
+ # and doesn't have the pattern matching bug
180
+ if [[ $WIDGET == zle-isearch-update ]] && { $zsh_highlight__pat_static_bug || ! (( $+ISEARCHMATCH_ACTIVE )) }; then
181
+ return $ret
182
+ fi
183
+
184
+ # Before we 'emulate -L', save the user's options
185
+ local -A zsyh_user_options
186
+ if zmodload -e zsh/parameter; then
187
+ zsyh_user_options=("${(kv)options[@]}")
188
+ else
189
+ local canonical_options onoff option raw_options
190
+ raw_options=(${(f)"$(emulate -R zsh; set -o)"})
191
+ canonical_options=(${${${(M)raw_options:#*off}%% *}#no} ${${(M)raw_options:#*on}%% *})
192
+ for option in "${canonical_options[@]}"; do
193
+ [[ -o $option ]]
194
+ case $? in
195
+ (0) zsyh_user_options+=($option on);;
196
+ (1) zsyh_user_options+=($option off);;
197
+ (*) # Can't happen, surely?
198
+ echo "zsh-syntax-highlighting: warning: '[[ -o $option ]]' returned $?"
199
+ ;;
200
+ esac
201
+ done
202
+ fi
203
+ typeset -r zsyh_user_options
204
+
205
+ emulate -L zsh
206
+ setopt localoptions warncreateglobal nobashrematch
207
+ local REPLY # don't leak $REPLY into global scope
208
+
209
+ # Do not highlight if there are more than 300 chars in the buffer. It's most
210
+ # likely a pasted command or a huge list of files in that case..
211
+ [[ -n ${ZSH_HIGHLIGHT_MAXLENGTH:-} ]] && [[ $#BUFFER -gt $ZSH_HIGHLIGHT_MAXLENGTH ]] && return $ret
212
+
213
+ # Do not highlight if there are pending inputs (copy/paste).
214
+ (( KEYS_QUEUED_COUNT > 0 )) && return $ret
215
+ (( PENDING > 0 )) && return $ret
216
+
217
+ {
218
+ local cache_place
219
+ local -a region_highlight_copy
220
+
221
+ # Select which highlighters in ZSH_HIGHLIGHT_HIGHLIGHTERS need to be invoked.
222
+ local highlighter; for highlighter in $ZSH_HIGHLIGHT_HIGHLIGHTERS; do
223
+
224
+ # eval cache place for current highlighter and prepare it
225
+ cache_place="_zsh_highlight__highlighter_${highlighter}_cache"
226
+ typeset -ga ${cache_place}
227
+
228
+ # If highlighter needs to be invoked
229
+ if ! type "_zsh_highlight_highlighter_${highlighter}_predicate" >&/dev/null; then
230
+ echo "zsh-syntax-highlighting: warning: disabling the ${(qq)highlighter} highlighter as it has not been loaded" >&2
231
+ # TODO: use ${(b)} rather than ${(q)} if supported
232
+ ZSH_HIGHLIGHT_HIGHLIGHTERS=( ${ZSH_HIGHLIGHT_HIGHLIGHTERS:#${highlighter}} )
233
+ elif "_zsh_highlight_highlighter_${highlighter}_predicate"; then
234
+
235
+ # save a copy, and cleanup region_highlight
236
+ region_highlight_copy=("${region_highlight[@]}")
237
+ region_highlight=()
238
+
239
+ # Execute highlighter and save result
240
+ {
241
+ "_zsh_highlight_highlighter_${highlighter}_paint"
242
+ } always {
243
+ : ${(AP)cache_place::="${region_highlight[@]}"}
244
+ }
245
+
246
+ # Restore saved region_highlight
247
+ region_highlight=("${region_highlight_copy[@]}")
248
+
249
+ fi
250
+
251
+ # Use value form cache if any cached
252
+ region_highlight+=("${(@P)cache_place}")
253
+
254
+ done
255
+
256
+ # Re-apply zle_highlight settings
257
+
258
+ # region
259
+ () {
260
+ (( REGION_ACTIVE )) || return
261
+ integer min max
262
+ if (( MARK > CURSOR )) ; then
263
+ min=$CURSOR max=$MARK
264
+ else
265
+ min=$MARK max=$CURSOR
266
+ fi
267
+ if (( REGION_ACTIVE == 1 )); then
268
+ [[ $KEYMAP = vicmd ]] && (( max++ ))
269
+ elif (( REGION_ACTIVE == 2 )); then
270
+ local needle=$'\n'
271
+ # CURSOR and MARK are 0 indexed between letters like region_highlight
272
+ # Do not include the newline in the highlight
273
+ (( min = ${BUFFER[(Ib:min:)$needle]} ))
274
+ (( max = ${BUFFER[(ib:max:)$needle]} - 1 ))
275
+ fi
276
+ _zsh_highlight_apply_zle_highlight region standout "$min" "$max"
277
+ }
278
+
279
+ # yank / paste (zsh-5.1.1 and newer)
280
+ (( $+YANK_ACTIVE )) && (( YANK_ACTIVE )) && _zsh_highlight_apply_zle_highlight paste standout "$YANK_START" "$YANK_END"
281
+
282
+ # isearch
283
+ (( $+ISEARCHMATCH_ACTIVE )) && (( ISEARCHMATCH_ACTIVE )) && _zsh_highlight_apply_zle_highlight isearch underline "$ISEARCHMATCH_START" "$ISEARCHMATCH_END"
284
+
285
+ # suffix
286
+ (( $+SUFFIX_ACTIVE )) && (( SUFFIX_ACTIVE )) && _zsh_highlight_apply_zle_highlight suffix bold "$SUFFIX_START" "$SUFFIX_END"
287
+
288
+
289
+ return $ret
290
+
291
+
292
+ } always {
293
+ typeset -g _ZSH_HIGHLIGHT_PRIOR_BUFFER="$BUFFER"
294
+ typeset -gi _ZSH_HIGHLIGHT_PRIOR_CURSOR=$CURSOR
295
+ }
296
+ }
297
+
298
+ # Apply highlighting based on entries in the zle_highlight array.
299
+ # This function takes four arguments:
300
+ # 1. The exact entry (no patterns) in the zle_highlight array:
301
+ # region, paste, isearch, or suffix
302
+ # 2. The default highlighting that should be applied if the entry is unset
303
+ # 3. and 4. Two integer values describing the beginning and end of the
304
+ # range. The order does not matter.
305
+ _zsh_highlight_apply_zle_highlight() {
306
+ local entry="$1" default="$2"
307
+ integer first="$3" second="$4"
308
+
309
+ # read the relevant entry from zle_highlight
310
+ #
311
+ # ### In zsh≥5.0.8 we'd use ${(b)entry}, but we support older zsh's, so we don't
312
+ # ### add (b). The only effect is on the failure mode for callers that violate
313
+ # ### the precondition.
314
+ local region="${zle_highlight[(r)${entry}:*]-}"
315
+
316
+ if [[ -z "$region" ]]; then
317
+ # entry not specified at all, use default value
318
+ region=$default
319
+ else
320
+ # strip prefix
321
+ region="${region#${entry}:}"
322
+
323
+ # no highlighting when set to the empty string or to 'none'
324
+ if [[ -z "$region" ]] || [[ "$region" == none ]]; then
325
+ return
326
+ fi
327
+ fi
328
+
329
+ integer start end
330
+ if (( first < second )); then
331
+ start=$first end=$second
332
+ else
333
+ start=$second end=$first
334
+ fi
335
+ region_highlight+=("$start $end $region, memo=zsh-syntax-highlighting")
336
+ }
337
+
338
+
339
+ # -------------------------------------------------------------------------------------------------
340
+ # API/utility functions for highlighters
341
+ # -------------------------------------------------------------------------------------------------
342
+
343
+ # Array used by highlighters to declare user overridable styles.
344
+ typeset -gA ZSH_HIGHLIGHT_STYLES
345
+
346
+ # Whether the command line buffer has been modified or not.
347
+ #
348
+ # Returns 0 if the buffer has changed since _zsh_highlight was last called.
349
+ _zsh_highlight_buffer_modified()
350
+ {
351
+ [[ "${_ZSH_HIGHLIGHT_PRIOR_BUFFER:-}" != "$BUFFER" ]]
352
+ }
353
+
354
+ # Whether the cursor has moved or not.
355
+ #
356
+ # Returns 0 if the cursor has moved since _zsh_highlight was last called.
357
+ _zsh_highlight_cursor_moved()
358
+ {
359
+ [[ -n $CURSOR ]] && [[ -n ${_ZSH_HIGHLIGHT_PRIOR_CURSOR-} ]] && (($_ZSH_HIGHLIGHT_PRIOR_CURSOR != $CURSOR))
360
+ }
361
+
362
+ # Add a highlight defined by ZSH_HIGHLIGHT_STYLES.
363
+ #
364
+ # Should be used by all highlighters aside from 'pattern' (cf. ZSH_HIGHLIGHT_PATTERN).
365
+ # Overwritten in tests/test-highlighting.zsh when testing.
366
+ _zsh_highlight_add_highlight()
367
+ {
368
+ local -i start end
369
+ local highlight
370
+ start=$1
371
+ end=$2
372
+ shift 2
373
+ for highlight; do
374
+ if (( $+ZSH_HIGHLIGHT_STYLES[$highlight] )); then
375
+ region_highlight+=("$start $end $ZSH_HIGHLIGHT_STYLES[$highlight], memo=zsh-syntax-highlighting")
376
+ break
377
+ fi
378
+ done
379
+ }
380
+
381
+ # -------------------------------------------------------------------------------------------------
382
+ # Setup functions
383
+ # -------------------------------------------------------------------------------------------------
384
+
385
+ # Helper for _zsh_highlight_bind_widgets
386
+ # $1 is name of widget to call
387
+ _zsh_highlight_call_widget()
388
+ {
389
+ builtin zle "$@" &&
390
+ _zsh_highlight
391
+ }
392
+
393
+ # Decide whether to use the zle-line-pre-redraw codepath (colloquially known as
394
+ # "feature/redrawhook", after the topic branch's name) or the legacy "bind all
395
+ # widgets" codepath.
396
+ #
397
+ # We use the new codepath under two conditions:
398
+ #
399
+ # 1. If it's available, which we check by testing for add-zle-hook-widget's availability.
400
+ #
401
+ # 2. If zsh has the memo= feature, which is required for interoperability reasons.
402
+ # See issues #579 and #735, and the issues referenced from them.
403
+ #
404
+ # We check this with a plain version number check, since a functional check,
405
+ # as done by _zsh_highlight, can only be done from inside a widget
406
+ # function — a catch-22.
407
+ if is-at-least 5.9 && _zsh_highlight__function_callable_p add-zle-hook-widget
408
+ then
409
+ autoload -U add-zle-hook-widget
410
+ _zsh_highlight__zle-line-finish() {
411
+ # Reset $WIDGET since the 'main' highlighter depends on it.
412
+ #
413
+ # Since $WIDGET is declared by zle as read-only in this function's scope,
414
+ # a nested function is required in order to shadow its built-in value;
415
+ # see "User-defined widgets" in zshall.
416
+ () {
417
+ local -h -r WIDGET=zle-line-finish
418
+ _zsh_highlight
419
+ }
420
+ }
421
+ _zsh_highlight__zle-line-pre-redraw() {
422
+ # Set $? to 0 for _zsh_highlight. Without this, subsequent
423
+ # zle-line-pre-redraw hooks won't run, since add-zle-hook-widget happens to
424
+ # call us with $? == 1 in the common case.
425
+ true && _zsh_highlight "$@"
426
+ }
427
+ _zsh_highlight_bind_widgets(){}
428
+ if [[ -o zle ]]; then
429
+ add-zle-hook-widget zle-line-pre-redraw _zsh_highlight__zle-line-pre-redraw
430
+ add-zle-hook-widget zle-line-finish _zsh_highlight__zle-line-finish
431
+ fi
432
+ else
433
+ # Rebind all ZLE widgets to make them invoke _zsh_highlights.
434
+ _zsh_highlight_bind_widgets()
435
+ {
436
+ setopt localoptions noksharrays
437
+ typeset -F SECONDS
438
+ local prefix=orig-s$SECONDS-r$RANDOM # unique each time, in case we're sourced more than once
439
+
440
+ # Load ZSH module zsh/zleparameter, needed to override user defined widgets.
441
+ zmodload zsh/zleparameter 2>/dev/null || {
442
+ print -r -- >&2 'zsh-syntax-highlighting: failed loading zsh/zleparameter.'
443
+ return 1
444
+ }
445
+
446
+ # Override ZLE widgets to make them invoke _zsh_highlight.
447
+ local -U widgets_to_bind
448
+ widgets_to_bind=(${${(k)widgets}:#(.*|run-help|which-command|beep|set-local-history|yank|yank-pop)})
449
+
450
+ # Always wrap special zle-line-finish widget. This is needed to decide if the
451
+ # current line ends and special highlighting logic needs to be applied.
452
+ # E.g. remove cursor imprint, don't highlight partial paths, ...
453
+ widgets_to_bind+=(zle-line-finish)
454
+
455
+ # Always wrap special zle-isearch-update widget to be notified of updates in isearch.
456
+ # This is needed because we need to disable highlighting in that case.
457
+ widgets_to_bind+=(zle-isearch-update)
458
+
459
+ local cur_widget
460
+ for cur_widget in $widgets_to_bind; do
461
+ case ${widgets[$cur_widget]:-""} in
462
+
463
+ # Already rebound event: do nothing.
464
+ user:_zsh_highlight_widget_*);;
465
+
466
+ # The "eval"'s are required to make $cur_widget a closure: the value of the parameter at function
467
+ # definition time is used.
468
+ #
469
+ # We can't use ${0/_zsh_highlight_widget_} because these widgets are always invoked with
470
+ # NO_function_argzero, regardless of the option's setting here.
471
+
472
+ # User defined widget: override and rebind old one with prefix "orig-".
473
+ user:*) zle -N $prefix-$cur_widget ${widgets[$cur_widget]#*:}
474
+ eval "_zsh_highlight_widget_${(q)prefix}-${(q)cur_widget}() { _zsh_highlight_call_widget ${(q)prefix}-${(q)cur_widget} -- \"\$@\" }"
475
+ zle -N $cur_widget _zsh_highlight_widget_$prefix-$cur_widget;;
476
+
477
+ # Completion widget: override and rebind old one with prefix "orig-".
478
+ completion:*) zle -C $prefix-$cur_widget ${${(s.:.)widgets[$cur_widget]}[2,3]}
479
+ eval "_zsh_highlight_widget_${(q)prefix}-${(q)cur_widget}() { _zsh_highlight_call_widget ${(q)prefix}-${(q)cur_widget} -- \"\$@\" }"
480
+ zle -N $cur_widget _zsh_highlight_widget_$prefix-$cur_widget;;
481
+
482
+ # Builtin widget: override and make it call the builtin ".widget".
483
+ builtin) eval "_zsh_highlight_widget_${(q)prefix}-${(q)cur_widget}() { _zsh_highlight_call_widget .${(q)cur_widget} -- \"\$@\" }"
484
+ zle -N $cur_widget _zsh_highlight_widget_$prefix-$cur_widget;;
485
+
486
+ # Incomplete or nonexistent widget: Bind to z-sy-h directly.
487
+ *)
488
+ if [[ $cur_widget == zle-* ]] && (( ! ${+widgets[$cur_widget]} )); then
489
+ _zsh_highlight_widget_${cur_widget}() { :; _zsh_highlight }
490
+ zle -N $cur_widget _zsh_highlight_widget_$cur_widget
491
+ else
492
+ # Default: unhandled case.
493
+ print -r -- >&2 "zsh-syntax-highlighting: unhandled ZLE widget ${(qq)cur_widget}"
494
+ print -r -- >&2 "zsh-syntax-highlighting: (This is sometimes caused by doing \`bindkey <keys> ${(q-)cur_widget}\` without creating the ${(qq)cur_widget} widget with \`zle -N\` or \`zle -C\`.)"
495
+ fi
496
+ esac
497
+ done
498
+ }
499
+ fi
500
+
501
+ # Load highlighters from directory.
502
+ #
503
+ # Arguments:
504
+ # 1) Path to the highlighters directory.
505
+ _zsh_highlight_load_highlighters()
506
+ {
507
+ setopt localoptions noksharrays bareglobqual
508
+
509
+ # Check the directory exists.
510
+ [[ -d "$1" ]] || {
511
+ print -r -- >&2 "zsh-syntax-highlighting: highlighters directory ${(qq)1} not found."
512
+ return 1
513
+ }
514
+
515
+ # Load highlighters from highlighters directory and check they define required functions.
516
+ local highlighter highlighter_dir
517
+ for highlighter_dir ($1/*/(/)); do
518
+ highlighter="${highlighter_dir:t}"
519
+ [[ -f "$highlighter_dir${highlighter}-highlighter.zsh" ]] &&
520
+ . "$highlighter_dir${highlighter}-highlighter.zsh"
521
+ if type "_zsh_highlight_highlighter_${highlighter}_paint" &> /dev/null &&
522
+ type "_zsh_highlight_highlighter_${highlighter}_predicate" &> /dev/null;
523
+ then
524
+ # New (0.5.0) function names
525
+ elif type "_zsh_highlight_${highlighter}_highlighter" &> /dev/null &&
526
+ type "_zsh_highlight_${highlighter}_highlighter_predicate" &> /dev/null;
527
+ then
528
+ # Old (0.4.x) function names
529
+ if false; then
530
+ # TODO: only show this warning for plugin authors/maintainers, not for end users
531
+ print -r -- >&2 "zsh-syntax-highlighting: warning: ${(qq)highlighter} highlighter uses deprecated entry point names; please ask its maintainer to update it: https://github.com/zsh-users/zsh-syntax-highlighting/issues/329"
532
+ fi
533
+ # Make it work.
534
+ eval "_zsh_highlight_highlighter_${(q)highlighter}_paint() { _zsh_highlight_${(q)highlighter}_highlighter \"\$@\" }"
535
+ eval "_zsh_highlight_highlighter_${(q)highlighter}_predicate() { _zsh_highlight_${(q)highlighter}_highlighter_predicate \"\$@\" }"
536
+ else
537
+ print -r -- >&2 "zsh-syntax-highlighting: ${(qq)highlighter} highlighter should define both required functions '_zsh_highlight_highlighter_${highlighter}_paint' and '_zsh_highlight_highlighter_${highlighter}_predicate' in ${(qq):-"$highlighter_dir${highlighter}-highlighter.zsh"}."
538
+ fi
539
+ done
540
+ }
541
+
542
+
543
+ # -------------------------------------------------------------------------------------------------
544
+ # Setup
545
+ # -------------------------------------------------------------------------------------------------
546
+
547
+ # Try binding widgets.
548
+ _zsh_highlight_bind_widgets || {
549
+ print -r -- >&2 'zsh-syntax-highlighting: failed binding ZLE widgets, exiting.'
550
+ return 1
551
+ }
552
+
553
+ # Resolve highlighters directory location.
554
+ _zsh_highlight_load_highlighters "${ZSH_HIGHLIGHT_HIGHLIGHTERS_DIR:-${${0:A}:h}/highlighters}" || {
555
+ print -r -- >&2 'zsh-syntax-highlighting: failed loading highlighters, exiting.'
556
+ return 1
557
+ }
558
+
559
+ # Reset scratch variables when commandline is done.
560
+ _zsh_highlight_preexec_hook()
561
+ {
562
+ typeset -g _ZSH_HIGHLIGHT_PRIOR_BUFFER=
563
+ typeset -gi _ZSH_HIGHLIGHT_PRIOR_CURSOR=
564
+ }
565
+ autoload -Uz add-zsh-hook
566
+ add-zsh-hook preexec _zsh_highlight_preexec_hook 2>/dev/null || {
567
+ print -r -- >&2 'zsh-syntax-highlighting: failed loading add-zsh-hook.'
568
+ }
569
+
570
+ # Load zsh/parameter module if available
571
+ zmodload zsh/parameter 2>/dev/null || true
572
+
573
+ # Initialize the array of active highlighters if needed.
574
+ [[ $#ZSH_HIGHLIGHT_HIGHLIGHTERS -eq 0 ]] && ZSH_HIGHLIGHT_HIGHLIGHTERS=(main)
575
+
576
+ if (( $+X_ZSH_HIGHLIGHT_DIRS_BLACKLIST )); then
577
+ print >&2 'zsh-syntax-highlighting: X_ZSH_HIGHLIGHT_DIRS_BLACKLIST is deprecated. Please use ZSH_HIGHLIGHT_DIRS_BLACKLIST.'
578
+ ZSH_HIGHLIGHT_DIRS_BLACKLIST=($X_ZSH_HIGHLIGHT_DIRS_BLACKLIST)
579
+ unset X_ZSH_HIGHLIGHT_DIRS_BLACKLIST
580
+ fi
581
+
582
+ # Restore the aliases we unned
583
+ eval "$zsh_highlight__aliases"
584
+ builtin unset zsh_highlight__aliases
585
+
586
+ # Set $?.
587
+ true
@@ -0,0 +1,19 @@
1
+ # oh-my-devpod tool versions — single source of truth
2
+ # Sourced by build/update-vendor-assets.sh and referenced by install scripts.
3
+
4
+ # Shared release binaries
5
+ ANTIDOTE_VERSION=v2.0.10
6
+ ATUIN_VERSION=v18.15.2
7
+ BTOP_VERSION=v1.4.6
8
+ NEOVIM_VERSION=v0.12.0
9
+ WITR_VERSION=v0.3.2
10
+ YAZI_VERSION=v26.1.22
11
+ ZELLIJ_VERSION=v0.44.0
12
+
13
+ # Vendored plugin snapshots (pinned commits)
14
+ LAZYVIM_STARTER_COMMIT=803bc181d7c0d6d5eeba9274d9be49b287294d99
15
+ OHMYZSH_COMMIT=9e2c1548c3dfeefd055e1c6606f66657093ae928
16
+ POWERLEVEL10K_COMMIT=604f19a9eaa18e76db2e60b8d446d5f879065f90
17
+ AUTOSUGGESTIONS_COMMIT=85919cd1ffa7d2d5412f6d3fe437ebdbeeec4fc5
18
+ HISTORY_SUBSTRING_SEARCH_COMMIT=14c8d2e0ffaee98f2df9850b19944f32546fdea5
19
+ SYNTAX_HIGHLIGHTING_COMMIT=1d85c692615a25fe2293bdd44b34c217d5d2bf04