initialise flags before starting git-fast-import
[git-darcs-import.git] / tools / zsh_completion_old
blobdf882bf9207fb2689f41787503a79bf5225731df
1 #-*- mode: shell-script;-*-
3 # darcs command line completion for zsh -- example
4 # Copyright 2002 "David Roundy" <droundy@abridgegame.org>
7 # Old zsh compctl style
8 _darcs_first()
10     local prefix
11     prefix=$1
12     reply=( $( darcs --commands | grep "^${prefix}" ) )
15 _darcs_rest()
17     local first second prefix rest
18     prefix=$1
19     read -c first second rest
20     reply=( $( darcs ${second} --list-option | grep "^${prefix}") )
22 # this would complete on files as well, if first and rest didn't match.
23 # since darcs does this when passed --list-option, no need
24 # compctl -F -x 'p[1,1]' -K _darcs_first - 'p[2,-1]' -K _darcs_rest -- darcs
25 compctl -x 'p[1,1]' -K _darcs_first - 'p[2,-1]' -K _darcs_rest -- darcs