mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
Just kidding, still need plugins
I guess things don't work in the custom folder. Oh well.
This commit is contained in:
parent
2113abb119
commit
a6a0a0855e
3 changed files with 129 additions and 3 deletions
21
plugins/dock/dock.plugin.zsh
Normal file
21
plugins/dock/dock.plugin.zsh
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
function dock_usage () {
|
||||
echo
|
||||
echo " usage: dock <command>"
|
||||
echo
|
||||
echo "JUST A TEST, THERE ARE NO COMMANDS"
|
||||
}
|
||||
|
||||
function dock () {
|
||||
if [ -z "$1" ]; then
|
||||
dock_usage;
|
||||
# else
|
||||
# [ "$1" = "patch" ] && gerrit_patch "$2"
|
||||
# [ "$1" = "push" ] && gerrit_push "$branch";
|
||||
# [ "$1" = "review" ] && gerrit_review "$branch";
|
||||
# [ "$1" = "reset" ] && gerrit_reset;
|
||||
# [ "$1" = "draft" ] && gerrit_draft "$branch";
|
||||
# [ "$1" = "pull" ] && gerrit_pull "$branch";
|
||||
# [ "$1" = "clone" ] && gerrit_clone "$2";
|
||||
# [ "$1" = "setup" ] && gerrit_setup;
|
||||
fi
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue