/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
5147.5.4 by Martin von Gagern
Assign copyright to Canonical Ltd.
1
# Copyright (C) 2010 Canonical Ltd
0.30.3 by Martin von Gagern
Lazy initialization
2
#
5147.5.5 by Martin von Gagern
Adjust copyright notice comments for bash_completion.
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.
0.30.3 by Martin von Gagern
Lazy initialization
12
#
13
# You should have received a copy of the GNU General Public License
5147.5.5 by Martin von Gagern
Adjust copyright notice comments for bash_completion.
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
0.30.3 by Martin von Gagern
Lazy initialization
16
6622.1.7 by Jelmer Vernooij
s/bzr/brz/ in bash
17
# Programmable completion for the Breezy brz command under bash.
0.30.3 by Martin von Gagern
Lazy initialization
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)
6622.1.7 by Jelmer Vernooij
s/bzr/brz/ in bash
20
# and bash's completion mechanism will know all about brz's options!
0.30.3 by Martin von Gagern
Lazy initialization
21
#
6622.1.7 by Jelmer Vernooij
s/bzr/brz/ in bash
22
# This completion function assumes you have the brz-bash-completion
23
# plugin installed as a brz plugin. It will generate the full
0.30.3 by Martin von Gagern
Lazy initialization
24
# completion function at first invocation, thus avoiding long delays
25
# for every shell you start.
26
27
shopt -s progcomp
6622.1.7 by Jelmer Vernooij
s/bzr/brz/ in bash
28
_brz_lazy ()
0.30.3 by Martin von Gagern
Lazy initialization
29
{
6622.1.7 by Jelmer Vernooij
s/bzr/brz/ in bash
30
	unset _brz
31
	eval "$(brz bash-completion)"
32
	if [[ $(type -t _brz) == function ]]; then
33
		unset _brz_lazy
34
		_brz
0.30.3 by Martin von Gagern
Lazy initialization
35
		return $?
36
	else
37
		return 1
38
	fi
39
}
6622.1.7 by Jelmer Vernooij
s/bzr/brz/ in bash
40
complete -F _brz_lazy -o default brz