@mattpolzin/harmony 3.0.0 → 3.2.0

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 (3) hide show
  1. package/README.md +5 -4
  2. package/harmony +1656 -1580
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -75,11 +75,10 @@ Set up Bash completion by adding the following to your Bash resource file or pro
75
75
  eval "$(harmony --bash-completion-script)"
76
76
  ```
77
77
 
78
- You can set up tab completion in Zsh, too:
78
+ ### Zsh completion
79
+ Zsh completion is supported via `bashcompinit` and can be loaded by adding the following to your Zsh resource file or profile:
79
80
  ```shell
80
- autoload -U +X compinit && compinit
81
- autoload -U +X bashcompinit && bashcompinit
82
- eval "$(harmony --bash-completion-script)"
81
+ eval "$(harmony --zsh-completion-script)"
83
82
  ```
84
83
 
85
84
  ## Usage
@@ -230,6 +229,8 @@ Running `harmony health` will graph all open PRs grouped by the month when each
230
229
 
231
230
  The idea is that a healthy repository does not have many old PRs still open because those PRs represent effort spent by developers that hasn't yet paid off.
232
231
 
232
+ ![Health Screenshot](./docs/images/health.png)
233
+
233
234
  ### Sync
234
235
  Running `harmony sync` will sync the locally configured team slugs and user logins that are used by auto-completion for Harmony. This sync is also performed automatically the first time you run Harmony after more than a day without the configuration being synced.
235
236