]> git.madduck.net Git - code/vcsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

completion: Complete only external commands for 'run'.
authorDaniel Shahaf <d.s@daniel.shahaf.name>
Mon, 28 Aug 2017 01:03:53 +0000 (01:03 +0000)
committerDaniel Shahaf <d.s@daniel.shahaf.name>
Mon, 28 Aug 2017 01:13:10 +0000 (01:13 +0000)
The difference is easiest to see when the following style is in effect:
.
zstyle ':completion:*' group-name ''

_vcsh

diff --git a/_vcsh b/_vcsh
index 1661e19d0e9a1bec051b0857ae8f4e908520b0be..9aca0f97095021e28777baffbcea58a1dbe1ef5f 100644 (file)
--- a/_vcsh
+++ b/_vcsh
@@ -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
 }