~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to contrib/zsh/_bzr

  • Committer: Martin Pool
  • Date: 2005-09-01 06:33:48 UTC
  • Revision ID: mbp@sourcefrog.net-20050901063348-e71d651642ab18ba
- clean up parameters to smart_add and smart_add_branch

- the two add callbacks aren't private to the module, so shouldn't
  have underscore-prefixed names.  call them 'add reporters' as a 
  less generic name aren't private to the module, so shouldn't
  have underscore-prefixed names.  call them 'add reporters' as a 
  less generic name

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
# -S means there are no options after a -- and that argument is ignored
6
6
 
7
7
# To use this you must arrange for it to be in a directory that is on
8
 
# your $fpath, and also for compinit to be run.
9
 
 
10
 
 
11
 
_arguments -S "1::bzr command:($(bzr help commands | grep '^   '))"
 
8
# your $fpath, and also for compinit to be run.  I don't understand
 
9
# how to get zsh to reload this file when it changes, other than by
 
10
# starting a new zsh.
 
11
 
 
12
# This is not very useful at the moment because it only completes on
 
13
# commands and breaks filename expansion for other arguments.
 
14
 
 
15
 
 
16
_arguments -S "1::bzr command:($(bzr help commands | grep -v '^   '))"
 
17
 
 
18
 
 
19
# Local variables:
 
20
# mode: shell-script
 
21
# End: