-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbibtools-completion.bash
178 lines (162 loc) · 4.48 KB
/
bibtools-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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# Bash completion setup for 'bib'. Modeled on git's but I don't know what I'm
# doing so that'll go well.
# These are just straight-up copied from Git. Documentation is omitted here.
__bib_reassemble_comp_words_by_ref ()
{
local exclude i j first
# Which word separators to exclude?
exclude="${1//[^$COMP_WORDBREAKS]}"
cword_=$COMP_CWORD
if [ -z "$exclude" ]; then
words_=("${COMP_WORDS[@]}")
return
fi
# List of word completion separators has shrunk;
# re-assemble words to complete.
for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
# Append each nonempty word consisting of just
# word separator characters to the current word.
first=t
while
[ $i -gt 0 ] &&
[ -n "${COMP_WORDS[$i]}" ] &&
# word consists of excluded word separators
[ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
do
# Attach to the previous token,
# unless the previous token is the command name.
if [ $j -ge 2 ] && [ -n "$first" ]; then
((j--))
fi
first=
words_[$j]=${words_[j]}${COMP_WORDS[i]}
if [ $i = $COMP_CWORD ]; then
cword_=$j
fi
if (($i < ${#COMP_WORDS[@]} - 1)); then
((i++))
else
# Done.
return
fi
done
words_[$j]=${words_[j]}${COMP_WORDS[i]}
if [ $i = $COMP_CWORD ]; then
cword_=$j
fi
done
}
if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
_get_comp_words_by_ref ()
{
local exclude cur_ words_ cword_
if [ "$1" = "-n" ]; then
exclude=$2
shift 2
fi
__bib_reassemble_comp_words_by_ref "$exclude"
cur_=${words_[cword_]}
while [ $# -gt 0 ]; do
case "$1" in
cur)
cur=$cur_
;;
prev)
prev=${words_[$cword_-1]}
;;
words)
words=("${words_[@]}")
;;
cword)
cword=$cword_
;;
esac
shift
done
}
fi
# Generates completion reply, appending a space to possible completion words,
# if necessary.
# It accepts 1 to 4 arguments:
# 1: List of possible completion words.
# 2: A prefix to be added to each possible completion word (optional).
# 3: Generate possible completion matches for this word (optional).
# 4: A suffix to be appended to each possible completion word (optional).
__bib_complete ()
{
local cur_="${3-$cur}"
case "$cur_" in
--*=)
;;
*)
local c i=0 IFS=$' \t\n'
for c in $1; do
c="$c${4-}"
if [[ $c == "$cur_"* ]]; then
case $c in
--*=*|*.) ;;
*) c="$c " ;;
esac
COMPREPLY[i++]="${2-}$c"
fi
done
;;
esac
}
# bib-specific infrastructure!
_bib_group ()
{
local i c=2 command
while [ $c -lt $cword ]; do
i="${words[c]}"
case "$i" in
-*) ;;
*) command="$i" ; break ;;
esac
((c++))
done
if [ -z "$command" ]; then
__bib_complete "$(bib _complete group_subcmds)"
return
fi
if [ "$command" = add -o "$command" = rm ]; then
if [ $cword -eq 3 ]; then
__bib_complete "$(bib _complete group "$cur")"
else
__bib_complete "$(bib _complete pub "$cur")"
fi
elif [ "$command" = list ]; then
__bib_complete "$(bib _complete group "$cur")"
fi
}
__bib_main ()
{
local cur words cword prev
_get_comp_words_by_ref -n =: cur words cword prev
local i c=1 command
while [ $c -lt $cword ]; do
i="${words[c]}"
case "$i" in
-*) ;;
*) command="$i" ; break ;;
esac
((c++))
done
if [ -z "$command" ]; then
case "$cur" in
-*) __bib_complete "--help" ;;
*) __bib_complete "$(bib _complete commands)" ;;
esac
return
fi
case "$command" in
delete|edit|forgetpdf|go-ads|go-arxiv|go-journal|info|pdfpath|read)
__bib_complete "$(bib _complete pub "$cur")" ; return ;;
list)
__bib_complete "$(bib _complete multipub "$cur")" ; return ;;
esac
local completion_func="_bib_${command//-/_}"
declare -f $completion_func >/dev/null && $completion_func
}
complete -o bashdefault -o default -o nospace -F __bib_main bib 2>/dev/null \
|| complete -o default -o nospace -F __bib_main bib