mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Add initial JHBuild plugin support
This is a bunch of alias for the JHBuild tool. A well known tool in the GNOME dev project.
This commit is contained in:
parent
550ccca91c
commit
ec9525b94e
2 changed files with 32 additions and 0 deletions
4
plugins/jhbuild/README.md
Normal file
4
plugins/jhbuild/README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
## JHBuild
|
||||
**Maintainer:** [Miguel Vaello](https://github.com/miguxbe)
|
||||
|
||||
This plugin adds some jhbuild aliases and increase the completion function provided by zsh.
|
28
plugins/jhbuild/jhbuild.plugin.zsh
Normal file
28
plugins/jhbuild/jhbuild.plugin.zsh
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Aliases
|
||||
#
|
||||
alias jh='jhbuild'
|
||||
# Build
|
||||
alias jhb='jhbuild build'
|
||||
alias jhbo='jhbuild buildone'
|
||||
# Checks
|
||||
alias jhckb='jhbuild checkbranches'
|
||||
alias jhckm='jhbuild checkmodulesets'
|
||||
# Info & list
|
||||
alias jhi='jhbuild info'
|
||||
alias jhl='jhbuild list'
|
||||
# Clean
|
||||
alias jhc='jhbuild clean'
|
||||
alias jhco='jhbuild cleanone'
|
||||
# Run
|
||||
alias jhr='jhbuild run'
|
||||
# Depends
|
||||
alias jhrd='jhbuild rdepends'
|
||||
alias jhsd='jhbuild sysdeps'
|
||||
# Update
|
||||
alias jhu='jhbuild update'
|
||||
alias jhuo='jhbuild updateone'
|
||||
# Uninstall
|
||||
alias jhun='jhbuild uninstall'
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue