Improved local shell snippet rendering

This commit is contained in:
Michele Cereda
2022-05-15 00:24:53 +02:00
parent ba75b52244
commit d057f2210d
135 changed files with 313 additions and 298 deletions

View File

@@ -6,14 +6,14 @@
Example:
```shell
```sh
tee: /Users/user/.antigen/bundles/robbyrussell/oh-my-zsh/cache//completions/_helm: No such file or directory
/Users/user/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/helm/helm.plugin.zsh:source:9: no such file or directory: /Users/user/.antigen/bundles/robbyrussell/oh-my-zsh/cache//completions/_helm
```
The issue is due of the `$ZSH_CACHE_DIR/completions` being missing and `tee` not creating it on Mac OS X. Create the missing `completions` directory and re-run antigen:
```shell
```sh
mkdir -p $ZSH_CACHE_DIR/completions
antigen apply
```