~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to contrib/bash/bzr

  • Committer: Martin Pool
  • Date: 2005-07-13 00:30:30 UTC
  • Revision ID: mbp@sourcefrog.net-20050713003030-2e89871a9ce24c7b
- typo in testsweet

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2010 Canonical Ltd
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
# Programmable completion for the Bazaar-NG bzr command under bash.
18
 
# Source this file (or add it to your ~/.bash_completion or ~/.bashrc
19
 
# file, depending on your system configuration, and start a new shell)
20
 
# and bash's completion mechanism will know all about bzr's options!
21
 
#
22
 
# This completion function assumes you have the bzr-bash-completion
23
 
# plugin installed as a bzr plugin. It will generate the full
24
 
# completion function at first invocation, thus avoiding long delays
25
 
# for every shell you start.
26
 
 
27
 
shopt -s progcomp
28
 
_bzr_lazy ()
29
 
{
30
 
        unset _bzr
31
 
        eval "$(bzr bash-completion)"
32
 
        if [[ $(type -t _bzr) == function ]]; then
33
 
                unset _bzr_lazy
34
 
                _bzr
35
 
                return $?
36
 
        else
37
 
                return 1
38
 
        fi
39
 
}
40
 
complete -F _bzr_lazy -o default bzr