]> arthur.barton.de Git - ax-zsh.git/blob - plugins/README.md
homebrew: Set HOMEBREW_AUTO_UPDATE_SECS to 10 minutes
[ax-zsh.git] / plugins / README.md
1 AX-ZSH: Alex' Modular ZSH Configuration - Plugin Documentation
2 ==============================================================
3
4 Plugin Exit Codes
5 -----------------
6
7 - 0: OK
8 - 1: Error
9 - 91: Ignore
10 - 92: Optional
11
12
13 Detecting "Plugin Check" Run
14 ----------------------------
15
16 When `axzshctl check-plugins` is doing a _plugin check_ run, the enviromnet
17 variable `AXZSH_PLUGIN_CHECK` is "non-zero"; this can be tested like this:
18
19 ```
20 [[ -z "$AXZSH_PLUGIN_CHECK" ]] || return 92
21 ```