mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 00:03:24 +01:00
commands and subcommands
This commit is contained in:
parent
c26facb582
commit
cf5ca2f4f3
219
plugins/pod/_pod
219
plugins/pod/_pod
@ -1,16 +1,29 @@
|
|||||||
#compdef pod
|
#compdef pod
|
||||||
|
#autoload
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# FILE: pod.plugin.zsh
|
# FILE: pod.plugin.zsh
|
||||||
# DESCRIPTION: Cocoapods autocomplete plugin for Oh-My-Zsh
|
# DESCRIPTION: Cocoapods autocomplete plugin for Oh-My-Zsh
|
||||||
|
# http://cocoapods.org
|
||||||
# AUTHOR: Alexandre Joly (alexandre.joly@mekanics.ch)
|
# AUTHOR: Alexandre Joly (alexandre.joly@mekanics.ch)
|
||||||
# GITHUB: https://github.com/mekanics
|
# GITHUB: https://github.com/mekanics
|
||||||
|
# TWITTER: @jolyAlexandre
|
||||||
# VERSION: 0.0.1
|
# VERSION: 0.0.1
|
||||||
|
# LICENSE: MIT
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
|
|
||||||
_pod_all_repos() {
|
#------------------
|
||||||
repos=(`ls ~/.cocoapods`)
|
# TODO:
|
||||||
}
|
# - Parameters for
|
||||||
|
# - install
|
||||||
|
# - update
|
||||||
|
# - outdated
|
||||||
|
# - search
|
||||||
|
# - list
|
||||||
|
# - push
|
||||||
|
# - podfile-info
|
||||||
|
# - setup
|
||||||
|
#------------------
|
||||||
|
|
||||||
local -a _1st_arguments
|
local -a _1st_arguments
|
||||||
_1st_arguments=(
|
_1st_arguments=(
|
||||||
@ -29,54 +42,158 @@ _1st_arguments=(
|
|||||||
'update:Update outdated project dependencies'
|
'update:Update outdated project dependencies'
|
||||||
)
|
)
|
||||||
|
|
||||||
_arguments '*:: :->command'
|
local -a _repo_arguments
|
||||||
|
_repo_arguments=(
|
||||||
|
'add:Add a spec repo'
|
||||||
|
'lint:Validates all specs in a repo'
|
||||||
|
'update:Update a spec repo'
|
||||||
|
)
|
||||||
|
|
||||||
if (( CURRENT == 1 )); then
|
local -a _spec_arguments
|
||||||
_describe -t commands "pod command" _1st_arguments
|
_spec_arguments=(
|
||||||
return
|
'cat:Prints a spec file'
|
||||||
fi
|
'create:Create spec file stub'
|
||||||
|
'edit:Edit a spec file'
|
||||||
|
'lint:Validates a spec file'
|
||||||
|
'which:Prints the path of the given spec'
|
||||||
|
)
|
||||||
|
|
||||||
local -a _command_args
|
local -a _ipc_arguments
|
||||||
case "$words[1]" in
|
_ipc_arguments=(
|
||||||
install)
|
'list:Lists the specifications know to CocoaPods'
|
||||||
_command_args=(
|
'podfile:Converts a Podfile to YAML'
|
||||||
'(--no-clean)--no-clean[Leave SCM dirs like `.git` and `.svn` intact after downloading]' \
|
'repl:The repl listens to commands on standard input'
|
||||||
'(--no-integrate)--no-integrate[Skip integration of the Pods libraries in the Xcode project(s)]' \
|
'spec:Converts a podspec to YAML'
|
||||||
'(--no-repo-update)--no-repo-update[Skip running `pod repo update before install]'
|
'update-search-index:Updates the search index'
|
||||||
)
|
)
|
||||||
;;
|
|
||||||
update)
|
local -a _list_arguments
|
||||||
_command_args=(
|
_list_arguments=(
|
||||||
'(--no-clean)--no-clean[Leave SCM dirs like `.git` and `.svn intact after downloading]' \
|
'new:Lists pods introduced in the master spec-repo since the last check'
|
||||||
'(--no-integrate)--no-integrate[Skip integration of the Pods libraries in the Xcode project(s)]' \
|
)
|
||||||
'(--no-repo-update)--no-repo-update[Skip running `pod repo update before install]'
|
|
||||||
)
|
__first_command_list ()
|
||||||
;;
|
{
|
||||||
outdated)
|
local expl
|
||||||
_command_args=(
|
declare -a tasks
|
||||||
'(--no-repo-update)--no-repo-update[Skip running `pod repo update before install]'
|
|
||||||
)
|
tasks=(install ipc lib list outdated podfile-info push repo search setup spec update)
|
||||||
;;
|
|
||||||
search)
|
_wanted tasks expl 'help' compadd $tasks
|
||||||
_command_args=(
|
}
|
||||||
'(--full)--full[Search by name, summary, and description]' \
|
|
||||||
'(--stats)--stats[Show additional stats (like GitHub watchers and forks)]' \
|
__repo_list() {
|
||||||
'(--ios)--ios[Restricts the search to Pods supported on iOS]' \
|
_wanted application expl 'command' compadd $(command ls -1 ~/.cocoapods 2>/dev/null | sed -e 's/ /\\ /g')
|
||||||
'(--osx)--osx[Restricts the search to Pods supported on OS X]'
|
}
|
||||||
)
|
|
||||||
;;
|
__pod-repo() {
|
||||||
update)
|
local curcontext="$curcontext" state line
|
||||||
_command_args=(
|
typeset -A opt_args
|
||||||
'(--update)--update[Run `pod repo update before listing]'
|
|
||||||
)
|
_arguments -C \
|
||||||
;;
|
':command:->command' \
|
||||||
|
'*::options:->options'
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
(command)
|
||||||
|
_describe -t commands "gem subcommand" _repo_arguments
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
|
||||||
|
(options)
|
||||||
|
case $line[1] in
|
||||||
|
(update|lint)
|
||||||
|
_arguments ':feature:__repo_list'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
__pod-spec() {
|
||||||
|
local curcontext="$curcontext" state line
|
||||||
|
typeset -A opt_args
|
||||||
|
|
||||||
|
_arguments -C \
|
||||||
|
':command:->command' \
|
||||||
|
'*::options:->options'
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
(command)
|
||||||
|
_describe -t commands "gem subcommand" _spec_arguments
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
|
||||||
|
(options)
|
||||||
|
#todo
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
__pod-ipc() {
|
||||||
|
local curcontext="$curcontext" state line
|
||||||
|
typeset -A opt_args
|
||||||
|
|
||||||
|
_arguments -C \
|
||||||
|
':command:->command' \
|
||||||
|
'*::options:->options'
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
(command)
|
||||||
|
_describe -t commands "gem subcommand" _ipc_arguments
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
|
||||||
|
(options)
|
||||||
|
#todo
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
local expl
|
||||||
|
#local -a boxes installed_boxes
|
||||||
|
|
||||||
|
local curcontext="$curcontext" state line
|
||||||
|
typeset -A opt_args
|
||||||
|
|
||||||
|
_arguments -C \
|
||||||
|
':command:->command' \
|
||||||
|
'*::options:->options'
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
(command)
|
||||||
|
_describe -t commands "gem subcommand" _1st_arguments
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
|
||||||
|
(options)
|
||||||
|
case $line[1] in
|
||||||
|
(help)
|
||||||
|
_arguments ':feature:__first_command_list'
|
||||||
|
;;
|
||||||
|
|
||||||
|
(repo)
|
||||||
|
__pod-repo
|
||||||
|
;;
|
||||||
|
|
||||||
|
(spec)
|
||||||
|
__pod-spec
|
||||||
|
;;
|
||||||
|
|
||||||
|
(ipc)
|
||||||
|
__pod-ipc
|
||||||
|
;;
|
||||||
|
|
||||||
|
(list)
|
||||||
|
__pod-list
|
||||||
|
;;
|
||||||
|
|
||||||
|
(install|lib|outdated|podfile-info|push|search|setup|update)
|
||||||
|
#_arguments ':feature:__repo_list'
|
||||||
|
esac
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
_arguments \
|
|
||||||
$_command_args \
|
|
||||||
'(--silent)--silent[Show nothing]' \
|
|
||||||
'(--version)--version[Show the version of CocoaPods]' \
|
|
||||||
'(--no-color)--no-color[Show output without color]' \
|
|
||||||
'(--verbose)--verbose[Show more debugging information]' \
|
|
||||||
'(--help)--help[Show help banner of specified command]' \
|
|
||||||
&& return 0
|
|
Loading…
Reference in New Issue
Block a user