-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathack.sh
41 lines (35 loc) · 1.01 KB
/
ack.sh
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
_patch_help() {
$@ --help | \
sed \
-e 's/, --type=noX / /'
}
_patch_table() {
_patch_table_dedup_options \
';;' \
'--help-types' \
'--help-colors' \
'--help-rgb-colors' \
'--proximate' \
| \
_patch_table_edit_options \
'--\\[no\\]ignore-dir;*[`_choice_ignore_directory`]' \
'--\\[no\\]ignore-directory;*[`_choice_ignore_directory`]' \
'--ignore-file;*[`_choice_ignore_file`]' \
'--type-add;*[`_choice_type_add`]' \
'--type-del;*[`_choice_type`]' \
'--type-set;*[`_choice_type_add`]' \
| \
_patch_table_edit_arguments ';;' 'path...'
}
_choice_ignore_directory() {
ack --dump | sed -n 's/^\s*--ignore-directory=//p'
}
_choice_ignore_file() {
ack --dump | sed -n 's/^\s*--ignore-file=//p' | _argc_util_comp_parts :
}
_choice_type_add() {
ack --dump | sed -n 's/^\s*--type-add=//p' | _argc_util_comp_parts :
}
_choice_type() {
ack --dump | sed -n 's/^\s*--type-add=\([^:]\+\):.*$/\1/p'
}