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.

34 lines
1.0 KiB

3 years ago
  1. # JHBuild
  2. This plugin adds some [JHBuild](https://developer.gnome.org/jhbuild/) aliases.
  3. To use it, add `jhbuild` to the plugins array of your zshrc file:
  4. ```zsh
  5. plugins=(... jhbuild)
  6. ```
  7. **Maintainer:** [Miguel Vaello](https://github.com/miguxbe)
  8. ## Aliases
  9. | Alias | Command |
  10. |---------|---------------------------|
  11. | `jh` | `jhbuild` |
  12. | `jhb` | `jhbuild build` |
  13. | `jhbo` | `jhbuild buildone` |
  14. | `jhckb` | `jhbuild checkbranches` |
  15. | `jhckm` | `jhbuild checkmodulesets` |
  16. | `jhi` | `jhbuild info` |
  17. | `jhl` | `jhbuild list` |
  18. | `jhc` | `jhbuild clean` |
  19. | `jhco` | `jhbuild cleanone` |
  20. | `jhm` | `jhbuild make` |
  21. | `jhr` | `jhbuild run` |
  22. | `jhrd` | `jhbuild rdepends` |
  23. | `jhsd` | `jhbuild sysdeps` |
  24. | `jhu` | `jhbuild update` |
  25. | `jhuo` | `jhbuild updateone` |
  26. | `jhun` | `jhbuild uninstall` |
  27. | `jhsh` | `jhbuild shell` |
  28. | `jht` | `jhbuild tinderbox` |