/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to contrib/bash/brz

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-01-01 21:23:40 UTC
  • mfrom: (7206.4.1 move-testament)
  • Revision ID: breezy.the.bot@gmail.com-20190101212340-6wmbncvwqal06rif
Move the testament module to breezy.bzr.

Merged from https://code.launchpad.net/~jelmer/brz/move-testament/+merge/359939

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 Breezy brz 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 brz's options!
 
21
#
 
22
# This completion function assumes you have the brz-bash-completion
 
23
# plugin installed as a brz 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
_brz_lazy ()
 
29
{
 
30
        unset _brz
 
31
        eval "$(brz bash-completion)"
 
32
        if [[ $(type -t _brz) == function ]]; then
 
33
                unset _brz_lazy
 
34
                _brz
 
35
                return $?
 
36
        else
 
37
                return 1
 
38
        fi
 
39
}
 
40
complete -F _brz_lazy -o default brz