X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/c5b8fc495769611d635614599762346e0f444fb9..5500082fe5642f0da5d08614407c0986e0154052:/_vcsh diff --git a/_vcsh b/_vcsh index bc1a7b9..9aca0f9 100644 --- a/_vcsh +++ b/_vcsh @@ -24,7 +24,7 @@ function _vcsh-enter () { } function _vcsh-foreach () { - _dispatch git git + _dispatch vcsh-foreach git } function _vcsh-help () { @@ -63,10 +63,12 @@ function _vcsh-rename () { function _vcsh-run () { (( CURRENT == 2 )) && __vcsh_repositories - if (( CURRENT >= 3 )); then + (( CURRENT == 3 )) && _command_names -e + if (( CURRENT >= 4 )); then + # see _precommand in zsh words=( "${(@)words[3,-1]}" ) (( CURRENT -= 2 )) - _complete + _normal fi } @@ -138,10 +140,11 @@ function _vcsh () { if ! (( ${+functions[_vcsh-$vcshcommand]} )); then # There is no handler function, so this is probably the name # of a repository. Act accordingly. + # FIXME: this may want to use '_dispatch vcsh git' GIT_DIR=$VCSH_REPO_D/$words[1].git _dispatch git git else curcontext="${curcontext%:*:*}:vcsh-${vcshcommand}:" - _call_function ret _vcsh-${vcshcommand} + _call_function ret _vcsh-${vcshcommand} && (( ret )) fi fi fi