@builder.io/dev-tools-windows-x64 1.19.9 → 1.19.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/COPYING +3 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/LICENSE-MIT +21 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/README.md +516 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/UNLICENSE +24 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg +665 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg.ps1 +213 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.bash +783 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.fish +175 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/CHANGELOG.md +1689 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/FAQ.md +1046 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/GUIDE.md +1022 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/rg.1 +2178 -0
- package/bin/ripgrep-14.1.0-x86_64-pc-windows-msvc/rg.exe +0 -0
- package/bin/winpty-agent.exe +0 -0
- package/bin/winpty.dll +0 -0
- package/builder-fusion.exe +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,783 @@
|
|
|
1
|
+
_rg() {
|
|
2
|
+
local i cur prev opts cmds
|
|
3
|
+
COMPREPLY=()
|
|
4
|
+
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
5
|
+
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
6
|
+
cmd=""
|
|
7
|
+
opts=""
|
|
8
|
+
|
|
9
|
+
for i in ${COMP_WORDS[@]}; do
|
|
10
|
+
case "${i}" in
|
|
11
|
+
rg)
|
|
12
|
+
cmd="rg"
|
|
13
|
+
;;
|
|
14
|
+
*)
|
|
15
|
+
;;
|
|
16
|
+
esac
|
|
17
|
+
done
|
|
18
|
+
|
|
19
|
+
case "${cmd}" in
|
|
20
|
+
rg)
|
|
21
|
+
opts="--regexp -e --file -f --after-context -A --before-context -B --binary --no-binary --block-buffered --no-block-buffered --byte-offset -b --no-byte-offset --case-sensitive -s --color --colors --column --no-column --context -C --context-separator --no-context-separator --count -c --count-matches --crlf --no-crlf --debug --dfa-size-limit --encoding -E --no-encoding --engine --field-context-separator --field-match-separator --files --files-with-matches -l --files-without-match --fixed-strings -F --no-fixed-strings --follow -L --no-follow --generate --glob -g --glob-case-insensitive --no-glob-case-insensitive --heading --no-heading --help -h --hidden -. --no-hidden --hostname-bin --hyperlink-format --iglob --ignore-case -i --ignore-file --ignore-file-case-insensitive --no-ignore-file-case-insensitive --include-zero --no-include-zero --invert-match -v --no-invert-match --json --no-json --line-buffered --no-line-buffered --line-number -n --no-line-number -N --line-regexp -x --max-columns -M --max-columns-preview --no-max-columns-preview --max-count -m --max-depth -d --max-filesize --mmap --no-mmap --multiline -U --no-multiline --multiline-dotall --no-multiline-dotall --no-config --no-ignore --ignore --no-ignore-dot --ignore-dot --no-ignore-exclude --ignore-exclude --no-ignore-files --ignore-files --no-ignore-global --ignore-global --no-ignore-messages --ignore-messages --no-ignore-parent --ignore-parent --no-ignore-vcs --ignore-vcs --no-messages --messages --no-require-git --require-git --no-unicode --unicode --null -0 --null-data --one-file-system --no-one-file-system --only-matching -o --path-separator --passthru --pcre2 -P --no-pcre2 --pcre2-version --pre --no-pre --pre-glob --pretty -p --quiet -q --regex-size-limit --replace -r --search-zip -z --no-search-zip --smart-case -S --sort --sortr --stats --no-stats --stop-on-nonmatch --text -a --no-text --threads -j --trace --trim --no-trim --type -t --type-not -T --type-add --type-clear --type-list --unrestricted -u --version -V --vimgrep --with-filename -H --no-filename -I --word-regexp -w --auto-hybrid-regex --no-auto-hybrid-regex --no-pcre2-unicode --pcre2-unicode --sort-files --no-sort-files <PATTERN> <PATH>..."
|
|
22
|
+
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
|
|
23
|
+
COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
|
|
24
|
+
return 0
|
|
25
|
+
fi
|
|
26
|
+
case "${prev}" in
|
|
27
|
+
|
|
28
|
+
--regexp)
|
|
29
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
30
|
+
return 0
|
|
31
|
+
;;
|
|
32
|
+
-e)
|
|
33
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
34
|
+
return 0
|
|
35
|
+
;;
|
|
36
|
+
--file)
|
|
37
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
38
|
+
return 0
|
|
39
|
+
;;
|
|
40
|
+
-f)
|
|
41
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
42
|
+
return 0
|
|
43
|
+
;;
|
|
44
|
+
--after-context)
|
|
45
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
46
|
+
return 0
|
|
47
|
+
;;
|
|
48
|
+
-A)
|
|
49
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
50
|
+
return 0
|
|
51
|
+
;;
|
|
52
|
+
--before-context)
|
|
53
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
54
|
+
return 0
|
|
55
|
+
;;
|
|
56
|
+
-B)
|
|
57
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
58
|
+
return 0
|
|
59
|
+
;;
|
|
60
|
+
--binary)
|
|
61
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
62
|
+
return 0
|
|
63
|
+
;;
|
|
64
|
+
--no-binary)
|
|
65
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
66
|
+
return 0
|
|
67
|
+
;;
|
|
68
|
+
--block-buffered)
|
|
69
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
70
|
+
return 0
|
|
71
|
+
;;
|
|
72
|
+
--no-block-buffered)
|
|
73
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
74
|
+
return 0
|
|
75
|
+
;;
|
|
76
|
+
--byte-offset)
|
|
77
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
78
|
+
return 0
|
|
79
|
+
;;
|
|
80
|
+
-b)
|
|
81
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
82
|
+
return 0
|
|
83
|
+
;;
|
|
84
|
+
--no-byte-offset)
|
|
85
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
86
|
+
return 0
|
|
87
|
+
;;
|
|
88
|
+
--case-sensitive)
|
|
89
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
90
|
+
return 0
|
|
91
|
+
;;
|
|
92
|
+
-s)
|
|
93
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
94
|
+
return 0
|
|
95
|
+
;;
|
|
96
|
+
--color)
|
|
97
|
+
COMPREPLY=($(compgen -W "never auto always ansi" -- "${cur}"))
|
|
98
|
+
return 0
|
|
99
|
+
;;
|
|
100
|
+
--colors)
|
|
101
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
102
|
+
return 0
|
|
103
|
+
;;
|
|
104
|
+
--column)
|
|
105
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
106
|
+
return 0
|
|
107
|
+
;;
|
|
108
|
+
--no-column)
|
|
109
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
110
|
+
return 0
|
|
111
|
+
;;
|
|
112
|
+
--context)
|
|
113
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
114
|
+
return 0
|
|
115
|
+
;;
|
|
116
|
+
-C)
|
|
117
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
118
|
+
return 0
|
|
119
|
+
;;
|
|
120
|
+
--context-separator)
|
|
121
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
122
|
+
return 0
|
|
123
|
+
;;
|
|
124
|
+
--no-context-separator)
|
|
125
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
126
|
+
return 0
|
|
127
|
+
;;
|
|
128
|
+
--count)
|
|
129
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
130
|
+
return 0
|
|
131
|
+
;;
|
|
132
|
+
-c)
|
|
133
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
134
|
+
return 0
|
|
135
|
+
;;
|
|
136
|
+
--count-matches)
|
|
137
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
138
|
+
return 0
|
|
139
|
+
;;
|
|
140
|
+
--crlf)
|
|
141
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
142
|
+
return 0
|
|
143
|
+
;;
|
|
144
|
+
--no-crlf)
|
|
145
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
146
|
+
return 0
|
|
147
|
+
;;
|
|
148
|
+
--debug)
|
|
149
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
150
|
+
return 0
|
|
151
|
+
;;
|
|
152
|
+
--dfa-size-limit)
|
|
153
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
154
|
+
return 0
|
|
155
|
+
;;
|
|
156
|
+
--encoding)
|
|
157
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
158
|
+
return 0
|
|
159
|
+
;;
|
|
160
|
+
-E)
|
|
161
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
162
|
+
return 0
|
|
163
|
+
;;
|
|
164
|
+
--no-encoding)
|
|
165
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
166
|
+
return 0
|
|
167
|
+
;;
|
|
168
|
+
--engine)
|
|
169
|
+
COMPREPLY=($(compgen -W "default pcre2 auto" -- "${cur}"))
|
|
170
|
+
return 0
|
|
171
|
+
;;
|
|
172
|
+
--field-context-separator)
|
|
173
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
174
|
+
return 0
|
|
175
|
+
;;
|
|
176
|
+
--field-match-separator)
|
|
177
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
178
|
+
return 0
|
|
179
|
+
;;
|
|
180
|
+
--files)
|
|
181
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
182
|
+
return 0
|
|
183
|
+
;;
|
|
184
|
+
--files-with-matches)
|
|
185
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
186
|
+
return 0
|
|
187
|
+
;;
|
|
188
|
+
-l)
|
|
189
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
190
|
+
return 0
|
|
191
|
+
;;
|
|
192
|
+
--files-without-match)
|
|
193
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
194
|
+
return 0
|
|
195
|
+
;;
|
|
196
|
+
--fixed-strings)
|
|
197
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
198
|
+
return 0
|
|
199
|
+
;;
|
|
200
|
+
-F)
|
|
201
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
202
|
+
return 0
|
|
203
|
+
;;
|
|
204
|
+
--no-fixed-strings)
|
|
205
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
206
|
+
return 0
|
|
207
|
+
;;
|
|
208
|
+
--follow)
|
|
209
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
210
|
+
return 0
|
|
211
|
+
;;
|
|
212
|
+
-L)
|
|
213
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
214
|
+
return 0
|
|
215
|
+
;;
|
|
216
|
+
--no-follow)
|
|
217
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
218
|
+
return 0
|
|
219
|
+
;;
|
|
220
|
+
--generate)
|
|
221
|
+
COMPREPLY=($(compgen -W "man complete-bash complete-zsh complete-fish complete-powershell" -- "${cur}"))
|
|
222
|
+
return 0
|
|
223
|
+
;;
|
|
224
|
+
--glob)
|
|
225
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
226
|
+
return 0
|
|
227
|
+
;;
|
|
228
|
+
-g)
|
|
229
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
230
|
+
return 0
|
|
231
|
+
;;
|
|
232
|
+
--glob-case-insensitive)
|
|
233
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
234
|
+
return 0
|
|
235
|
+
;;
|
|
236
|
+
--no-glob-case-insensitive)
|
|
237
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
238
|
+
return 0
|
|
239
|
+
;;
|
|
240
|
+
--heading)
|
|
241
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
242
|
+
return 0
|
|
243
|
+
;;
|
|
244
|
+
--no-heading)
|
|
245
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
246
|
+
return 0
|
|
247
|
+
;;
|
|
248
|
+
--help)
|
|
249
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
250
|
+
return 0
|
|
251
|
+
;;
|
|
252
|
+
-h)
|
|
253
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
254
|
+
return 0
|
|
255
|
+
;;
|
|
256
|
+
--hidden)
|
|
257
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
258
|
+
return 0
|
|
259
|
+
;;
|
|
260
|
+
-.)
|
|
261
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
262
|
+
return 0
|
|
263
|
+
;;
|
|
264
|
+
--no-hidden)
|
|
265
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
266
|
+
return 0
|
|
267
|
+
;;
|
|
268
|
+
--hostname-bin)
|
|
269
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
270
|
+
return 0
|
|
271
|
+
;;
|
|
272
|
+
--hyperlink-format)
|
|
273
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
274
|
+
return 0
|
|
275
|
+
;;
|
|
276
|
+
--iglob)
|
|
277
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
278
|
+
return 0
|
|
279
|
+
;;
|
|
280
|
+
--ignore-case)
|
|
281
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
282
|
+
return 0
|
|
283
|
+
;;
|
|
284
|
+
-i)
|
|
285
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
286
|
+
return 0
|
|
287
|
+
;;
|
|
288
|
+
--ignore-file)
|
|
289
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
290
|
+
return 0
|
|
291
|
+
;;
|
|
292
|
+
--ignore-file-case-insensitive)
|
|
293
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
294
|
+
return 0
|
|
295
|
+
;;
|
|
296
|
+
--no-ignore-file-case-insensitive)
|
|
297
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
298
|
+
return 0
|
|
299
|
+
;;
|
|
300
|
+
--include-zero)
|
|
301
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
302
|
+
return 0
|
|
303
|
+
;;
|
|
304
|
+
--no-include-zero)
|
|
305
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
306
|
+
return 0
|
|
307
|
+
;;
|
|
308
|
+
--invert-match)
|
|
309
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
310
|
+
return 0
|
|
311
|
+
;;
|
|
312
|
+
-v)
|
|
313
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
314
|
+
return 0
|
|
315
|
+
;;
|
|
316
|
+
--no-invert-match)
|
|
317
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
318
|
+
return 0
|
|
319
|
+
;;
|
|
320
|
+
--json)
|
|
321
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
322
|
+
return 0
|
|
323
|
+
;;
|
|
324
|
+
--no-json)
|
|
325
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
326
|
+
return 0
|
|
327
|
+
;;
|
|
328
|
+
--line-buffered)
|
|
329
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
330
|
+
return 0
|
|
331
|
+
;;
|
|
332
|
+
--no-line-buffered)
|
|
333
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
334
|
+
return 0
|
|
335
|
+
;;
|
|
336
|
+
--line-number)
|
|
337
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
338
|
+
return 0
|
|
339
|
+
;;
|
|
340
|
+
-n)
|
|
341
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
342
|
+
return 0
|
|
343
|
+
;;
|
|
344
|
+
--no-line-number)
|
|
345
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
346
|
+
return 0
|
|
347
|
+
;;
|
|
348
|
+
-N)
|
|
349
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
350
|
+
return 0
|
|
351
|
+
;;
|
|
352
|
+
--line-regexp)
|
|
353
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
354
|
+
return 0
|
|
355
|
+
;;
|
|
356
|
+
-x)
|
|
357
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
358
|
+
return 0
|
|
359
|
+
;;
|
|
360
|
+
--max-columns)
|
|
361
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
362
|
+
return 0
|
|
363
|
+
;;
|
|
364
|
+
-M)
|
|
365
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
366
|
+
return 0
|
|
367
|
+
;;
|
|
368
|
+
--max-columns-preview)
|
|
369
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
370
|
+
return 0
|
|
371
|
+
;;
|
|
372
|
+
--no-max-columns-preview)
|
|
373
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
374
|
+
return 0
|
|
375
|
+
;;
|
|
376
|
+
--max-count)
|
|
377
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
378
|
+
return 0
|
|
379
|
+
;;
|
|
380
|
+
-m)
|
|
381
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
382
|
+
return 0
|
|
383
|
+
;;
|
|
384
|
+
--max-depth)
|
|
385
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
386
|
+
return 0
|
|
387
|
+
;;
|
|
388
|
+
-d)
|
|
389
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
390
|
+
return 0
|
|
391
|
+
;;
|
|
392
|
+
--max-filesize)
|
|
393
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
394
|
+
return 0
|
|
395
|
+
;;
|
|
396
|
+
--mmap)
|
|
397
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
398
|
+
return 0
|
|
399
|
+
;;
|
|
400
|
+
--no-mmap)
|
|
401
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
402
|
+
return 0
|
|
403
|
+
;;
|
|
404
|
+
--multiline)
|
|
405
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
406
|
+
return 0
|
|
407
|
+
;;
|
|
408
|
+
-U)
|
|
409
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
410
|
+
return 0
|
|
411
|
+
;;
|
|
412
|
+
--no-multiline)
|
|
413
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
414
|
+
return 0
|
|
415
|
+
;;
|
|
416
|
+
--multiline-dotall)
|
|
417
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
418
|
+
return 0
|
|
419
|
+
;;
|
|
420
|
+
--no-multiline-dotall)
|
|
421
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
422
|
+
return 0
|
|
423
|
+
;;
|
|
424
|
+
--no-config)
|
|
425
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
426
|
+
return 0
|
|
427
|
+
;;
|
|
428
|
+
--no-ignore)
|
|
429
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
430
|
+
return 0
|
|
431
|
+
;;
|
|
432
|
+
--ignore)
|
|
433
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
434
|
+
return 0
|
|
435
|
+
;;
|
|
436
|
+
--no-ignore-dot)
|
|
437
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
438
|
+
return 0
|
|
439
|
+
;;
|
|
440
|
+
--ignore-dot)
|
|
441
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
442
|
+
return 0
|
|
443
|
+
;;
|
|
444
|
+
--no-ignore-exclude)
|
|
445
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
446
|
+
return 0
|
|
447
|
+
;;
|
|
448
|
+
--ignore-exclude)
|
|
449
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
450
|
+
return 0
|
|
451
|
+
;;
|
|
452
|
+
--no-ignore-files)
|
|
453
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
454
|
+
return 0
|
|
455
|
+
;;
|
|
456
|
+
--ignore-files)
|
|
457
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
458
|
+
return 0
|
|
459
|
+
;;
|
|
460
|
+
--no-ignore-global)
|
|
461
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
462
|
+
return 0
|
|
463
|
+
;;
|
|
464
|
+
--ignore-global)
|
|
465
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
466
|
+
return 0
|
|
467
|
+
;;
|
|
468
|
+
--no-ignore-messages)
|
|
469
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
470
|
+
return 0
|
|
471
|
+
;;
|
|
472
|
+
--ignore-messages)
|
|
473
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
474
|
+
return 0
|
|
475
|
+
;;
|
|
476
|
+
--no-ignore-parent)
|
|
477
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
478
|
+
return 0
|
|
479
|
+
;;
|
|
480
|
+
--ignore-parent)
|
|
481
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
482
|
+
return 0
|
|
483
|
+
;;
|
|
484
|
+
--no-ignore-vcs)
|
|
485
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
486
|
+
return 0
|
|
487
|
+
;;
|
|
488
|
+
--ignore-vcs)
|
|
489
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
490
|
+
return 0
|
|
491
|
+
;;
|
|
492
|
+
--no-messages)
|
|
493
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
494
|
+
return 0
|
|
495
|
+
;;
|
|
496
|
+
--messages)
|
|
497
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
498
|
+
return 0
|
|
499
|
+
;;
|
|
500
|
+
--no-require-git)
|
|
501
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
502
|
+
return 0
|
|
503
|
+
;;
|
|
504
|
+
--require-git)
|
|
505
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
506
|
+
return 0
|
|
507
|
+
;;
|
|
508
|
+
--no-unicode)
|
|
509
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
510
|
+
return 0
|
|
511
|
+
;;
|
|
512
|
+
--unicode)
|
|
513
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
514
|
+
return 0
|
|
515
|
+
;;
|
|
516
|
+
--null)
|
|
517
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
518
|
+
return 0
|
|
519
|
+
;;
|
|
520
|
+
-0)
|
|
521
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
522
|
+
return 0
|
|
523
|
+
;;
|
|
524
|
+
--null-data)
|
|
525
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
526
|
+
return 0
|
|
527
|
+
;;
|
|
528
|
+
--one-file-system)
|
|
529
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
530
|
+
return 0
|
|
531
|
+
;;
|
|
532
|
+
--no-one-file-system)
|
|
533
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
534
|
+
return 0
|
|
535
|
+
;;
|
|
536
|
+
--only-matching)
|
|
537
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
538
|
+
return 0
|
|
539
|
+
;;
|
|
540
|
+
-o)
|
|
541
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
542
|
+
return 0
|
|
543
|
+
;;
|
|
544
|
+
--path-separator)
|
|
545
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
546
|
+
return 0
|
|
547
|
+
;;
|
|
548
|
+
--passthru)
|
|
549
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
550
|
+
return 0
|
|
551
|
+
;;
|
|
552
|
+
--pcre2)
|
|
553
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
554
|
+
return 0
|
|
555
|
+
;;
|
|
556
|
+
-P)
|
|
557
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
558
|
+
return 0
|
|
559
|
+
;;
|
|
560
|
+
--no-pcre2)
|
|
561
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
562
|
+
return 0
|
|
563
|
+
;;
|
|
564
|
+
--pcre2-version)
|
|
565
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
566
|
+
return 0
|
|
567
|
+
;;
|
|
568
|
+
--pre)
|
|
569
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
570
|
+
return 0
|
|
571
|
+
;;
|
|
572
|
+
--no-pre)
|
|
573
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
574
|
+
return 0
|
|
575
|
+
;;
|
|
576
|
+
--pre-glob)
|
|
577
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
578
|
+
return 0
|
|
579
|
+
;;
|
|
580
|
+
--pretty)
|
|
581
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
582
|
+
return 0
|
|
583
|
+
;;
|
|
584
|
+
-p)
|
|
585
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
586
|
+
return 0
|
|
587
|
+
;;
|
|
588
|
+
--quiet)
|
|
589
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
590
|
+
return 0
|
|
591
|
+
;;
|
|
592
|
+
-q)
|
|
593
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
594
|
+
return 0
|
|
595
|
+
;;
|
|
596
|
+
--regex-size-limit)
|
|
597
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
598
|
+
return 0
|
|
599
|
+
;;
|
|
600
|
+
--replace)
|
|
601
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
602
|
+
return 0
|
|
603
|
+
;;
|
|
604
|
+
-r)
|
|
605
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
606
|
+
return 0
|
|
607
|
+
;;
|
|
608
|
+
--search-zip)
|
|
609
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
610
|
+
return 0
|
|
611
|
+
;;
|
|
612
|
+
-z)
|
|
613
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
614
|
+
return 0
|
|
615
|
+
;;
|
|
616
|
+
--no-search-zip)
|
|
617
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
618
|
+
return 0
|
|
619
|
+
;;
|
|
620
|
+
--smart-case)
|
|
621
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
622
|
+
return 0
|
|
623
|
+
;;
|
|
624
|
+
-S)
|
|
625
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
626
|
+
return 0
|
|
627
|
+
;;
|
|
628
|
+
--sort)
|
|
629
|
+
COMPREPLY=($(compgen -W "none path modified accessed created" -- "${cur}"))
|
|
630
|
+
return 0
|
|
631
|
+
;;
|
|
632
|
+
--sortr)
|
|
633
|
+
COMPREPLY=($(compgen -W "none path modified accessed created" -- "${cur}"))
|
|
634
|
+
return 0
|
|
635
|
+
;;
|
|
636
|
+
--stats)
|
|
637
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
638
|
+
return 0
|
|
639
|
+
;;
|
|
640
|
+
--no-stats)
|
|
641
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
642
|
+
return 0
|
|
643
|
+
;;
|
|
644
|
+
--stop-on-nonmatch)
|
|
645
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
646
|
+
return 0
|
|
647
|
+
;;
|
|
648
|
+
--text)
|
|
649
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
650
|
+
return 0
|
|
651
|
+
;;
|
|
652
|
+
-a)
|
|
653
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
654
|
+
return 0
|
|
655
|
+
;;
|
|
656
|
+
--no-text)
|
|
657
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
658
|
+
return 0
|
|
659
|
+
;;
|
|
660
|
+
--threads)
|
|
661
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
662
|
+
return 0
|
|
663
|
+
;;
|
|
664
|
+
-j)
|
|
665
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
666
|
+
return 0
|
|
667
|
+
;;
|
|
668
|
+
--trace)
|
|
669
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
670
|
+
return 0
|
|
671
|
+
;;
|
|
672
|
+
--trim)
|
|
673
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
674
|
+
return 0
|
|
675
|
+
;;
|
|
676
|
+
--no-trim)
|
|
677
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
678
|
+
return 0
|
|
679
|
+
;;
|
|
680
|
+
--type)
|
|
681
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
682
|
+
return 0
|
|
683
|
+
;;
|
|
684
|
+
-t)
|
|
685
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
686
|
+
return 0
|
|
687
|
+
;;
|
|
688
|
+
--type-not)
|
|
689
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
690
|
+
return 0
|
|
691
|
+
;;
|
|
692
|
+
-T)
|
|
693
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
694
|
+
return 0
|
|
695
|
+
;;
|
|
696
|
+
--type-add)
|
|
697
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
698
|
+
return 0
|
|
699
|
+
;;
|
|
700
|
+
--type-clear)
|
|
701
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
702
|
+
return 0
|
|
703
|
+
;;
|
|
704
|
+
--type-list)
|
|
705
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
706
|
+
return 0
|
|
707
|
+
;;
|
|
708
|
+
--unrestricted)
|
|
709
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
710
|
+
return 0
|
|
711
|
+
;;
|
|
712
|
+
-u)
|
|
713
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
714
|
+
return 0
|
|
715
|
+
;;
|
|
716
|
+
--version)
|
|
717
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
718
|
+
return 0
|
|
719
|
+
;;
|
|
720
|
+
-V)
|
|
721
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
722
|
+
return 0
|
|
723
|
+
;;
|
|
724
|
+
--vimgrep)
|
|
725
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
726
|
+
return 0
|
|
727
|
+
;;
|
|
728
|
+
--with-filename)
|
|
729
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
730
|
+
return 0
|
|
731
|
+
;;
|
|
732
|
+
-H)
|
|
733
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
734
|
+
return 0
|
|
735
|
+
;;
|
|
736
|
+
--no-filename)
|
|
737
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
738
|
+
return 0
|
|
739
|
+
;;
|
|
740
|
+
-I)
|
|
741
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
742
|
+
return 0
|
|
743
|
+
;;
|
|
744
|
+
--word-regexp)
|
|
745
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
746
|
+
return 0
|
|
747
|
+
;;
|
|
748
|
+
-w)
|
|
749
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
750
|
+
return 0
|
|
751
|
+
;;
|
|
752
|
+
--auto-hybrid-regex)
|
|
753
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
754
|
+
return 0
|
|
755
|
+
;;
|
|
756
|
+
--no-auto-hybrid-regex)
|
|
757
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
758
|
+
return 0
|
|
759
|
+
;;
|
|
760
|
+
--no-pcre2-unicode)
|
|
761
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
762
|
+
return 0
|
|
763
|
+
;;
|
|
764
|
+
--pcre2-unicode)
|
|
765
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
766
|
+
return 0
|
|
767
|
+
;;
|
|
768
|
+
--sort-files)
|
|
769
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
770
|
+
return 0
|
|
771
|
+
;;
|
|
772
|
+
--no-sort-files)
|
|
773
|
+
COMPREPLY=($(compgen -f "${cur}"))
|
|
774
|
+
return 0
|
|
775
|
+
;;
|
|
776
|
+
esac
|
|
777
|
+
COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
|
|
778
|
+
return 0
|
|
779
|
+
;;
|
|
780
|
+
esac
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
complete -F _rg -o bashdefault -o default rg
|