-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-fpaste-completion.bash
58 lines (52 loc) · 1.75 KB
/
git-fpaste-completion.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash
# Copyright ⓒ 2015 Mattias Bengtsson
#
# git-fpaste is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# git-fpaste is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with git-fpaste. If not, see <http://www.gnu.org/licenses/>.
#
# Author: Mattias Bengtsson <[email protected]>
_git_fpaste () {
local subcommands="am apply diff format-patch"
local subcommand="$(__git_find_on_cmdline "$subcommands")"
if [ -z "$subcommand" ]; then
__gitcomp "$subcommands"
return
fi
case "$subcommand" in
am) _git_fpaste_am ;;
apply) _git_fpaste_apply ;;
diff) _git_diff ;;
format-patch) _git_format_patch ;;
*) COMPREPLY=() ;;
esac
}
# I have yet to find out how to make bash completion not fallback to file
# completion when returning an empty COMPREPLY.
# As a workaround return a COMPREPLY with one element: the empty string and
# echo the bel character.
__no_file_fallback () {
echo -en "\a"
COMPREPLY=( '' )
}
_git_fpaste_am () {
case "$cur" in
--*) _git_am ;;
*) __no_file_fallback ;;
esac
}
_git_fpaste_apply () {
case "$cur" in
--*) _git_apply ;;
*) __no_file_fallback ;;
esac
}