my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
549 B

3 years ago
  1. # GitHub CLI plugin
  2. This plugin adds completion for the [GitHub CLI](https://cli.github.com/).
  3. To use it, add `gh` to the plugins array in your zshrc file:
  4. ```zsh
  5. plugins=(... gh)
  6. ```
  7. This plugin does not add any aliases.
  8. ## Cache
  9. This plugin caches the completion script and is automatically updated when the
  10. plugin is loaded, which is usually when you start up a new terminal emulator.
  11. The cache is stored at:
  12. - `$ZSH/plugins/gh/_gh` completions script
  13. - `$ZSH_CACHE_DIR/gh_version` version of GitHub CLI, used to invalidate
  14. the cache.