/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
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