@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,175 @@
|
|
|
1
|
+
complete -c rg -s e -l regexp -d 'A pattern to search for.' -r -f
|
|
2
|
+
complete -c rg -s f -l file -d 'Search for patterns from the given file.' -r -F
|
|
3
|
+
complete -c rg -s A -l after-context -d 'Show NUM lines after each match.' -r -f
|
|
4
|
+
complete -c rg -s B -l before-context -d 'Show NUM lines before each match.' -r -f
|
|
5
|
+
complete -c rg -l binary -d 'Search binary files.'
|
|
6
|
+
complete -c rg -l no-binary -n '__fish_contains_opt binary' -d 'Search binary files.'
|
|
7
|
+
complete -c rg -l block-buffered -d 'Force block buffering.'
|
|
8
|
+
complete -c rg -l no-block-buffered -n '__fish_contains_opt block-buffered' -d 'Force block buffering.'
|
|
9
|
+
complete -c rg -s b -l byte-offset -d 'Print the byte offset for each matching line.'
|
|
10
|
+
complete -c rg -l no-byte-offset -n '__fish_contains_opt -s b byte-offset' -d 'Print the byte offset for each matching line.'
|
|
11
|
+
complete -c rg -s s -l case-sensitive -d 'Search case sensitively (default).'
|
|
12
|
+
complete -c rg -l color -d 'When to use color.' -r -f -a 'never auto always ansi'
|
|
13
|
+
complete -c rg -l colors -d 'Configure color settings and styles.' -r -f
|
|
14
|
+
complete -c rg -l column -d 'Show column numbers.'
|
|
15
|
+
complete -c rg -l no-column -n '__fish_contains_opt column' -d 'Show column numbers.'
|
|
16
|
+
complete -c rg -s C -l context -d 'Show NUM lines before and after each match.' -r -f
|
|
17
|
+
complete -c rg -l context-separator -d 'Set the separator for contextual chunks.' -r -f
|
|
18
|
+
complete -c rg -l no-context-separator -n '__fish_contains_opt context-separator' -d 'Set the separator for contextual chunks.'
|
|
19
|
+
complete -c rg -s c -l count -d 'Show count of matching lines for each file.'
|
|
20
|
+
complete -c rg -l count-matches -d 'Show count of every match for each file.'
|
|
21
|
+
complete -c rg -l crlf -d 'Use CRLF line terminators (nice for Windows).'
|
|
22
|
+
complete -c rg -l no-crlf -n '__fish_contains_opt crlf' -d 'Use CRLF line terminators (nice for Windows).'
|
|
23
|
+
complete -c rg -l debug -d 'Show debug messages.'
|
|
24
|
+
complete -c rg -l dfa-size-limit -d 'The upper size limit of the regex DFA.' -r -f
|
|
25
|
+
complete -c rg -s E -l encoding -d 'Specify the text encoding of files to search.' -r -f -a '# This is impossible to read, but these encodings rarely if ever change, so
|
|
26
|
+
# it probably does not matter. They are derived from the list given here:
|
|
27
|
+
# https://encoding.spec.whatwg.org/#concept-encoding-get
|
|
28
|
+
#
|
|
29
|
+
# The globbing here works in both fish and zsh (though they expand it in
|
|
30
|
+
# different orders). It may work in other shells too.
|
|
31
|
+
|
|
32
|
+
{{,us-}ascii,arabic,chinese,cyrillic,greek{,8},hebrew,korean}
|
|
33
|
+
logical visual mac {,cs}macintosh x-mac-{cyrillic,roman,ukrainian}
|
|
34
|
+
866 ibm{819,866} csibm866
|
|
35
|
+
big5{,-hkscs} {cn-,cs}big5 x-x-big5
|
|
36
|
+
cp{819,866,125{0,1,2,3,4,5,6,7,8}} x-cp125{0,1,2,3,4,5,6,7,8}
|
|
37
|
+
csiso2022{jp,kr} csiso8859{6,8}{e,i}
|
|
38
|
+
csisolatin{1,2,3,4,5,6,9} csisolatin{arabic,cyrillic,greek,hebrew}
|
|
39
|
+
ecma-{114,118} asmo-708 elot_928 sun_eu_greek
|
|
40
|
+
euc-{jp,kr} x-euc-jp cseuckr cseucpkdfmtjapanese
|
|
41
|
+
{,x-}gbk csiso58gb231280 gb18030 {,cs}gb2312 gb_2312{,-80} hz-gb-2312
|
|
42
|
+
iso-2022-{cn,cn-ext,jp,kr}
|
|
43
|
+
iso8859{,-}{1,2,3,4,5,6,7,8,9,10,11,13,14,15}
|
|
44
|
+
iso-8859-{1,2,3,4,5,6,7,8,9,10,11,{6,8}-{e,i},13,14,15,16} iso_8859-{1,2,3,4,5,6,7,8,9,15}
|
|
45
|
+
iso_8859-{1,2,6,7}:1987 iso_8859-{3,4,5,8}:1988 iso_8859-9:1989
|
|
46
|
+
iso-ir-{58,100,101,109,110,126,127,138,144,148,149,157}
|
|
47
|
+
koi{,8,8-r,8-ru,8-u,8_r} cskoi8r
|
|
48
|
+
ks_c_5601-{1987,1989} ksc{,_}5691 csksc56011987
|
|
49
|
+
latin{1,2,3,4,5,6} l{1,2,3,4,5,6,9}
|
|
50
|
+
shift{-,_}jis csshiftjis {,x-}sjis ms_kanji ms932
|
|
51
|
+
utf{,-}8 utf-16{,be,le} unicode-1-1-utf-8
|
|
52
|
+
windows-{31j,874,949,125{0,1,2,3,4,5,6,7,8}} dos-874 tis-620 ansi_x3.4-1968
|
|
53
|
+
x-user-defined auto none
|
|
54
|
+
'
|
|
55
|
+
complete -c rg -l no-encoding -n '__fish_contains_opt -s E encoding' -d 'Specify the text encoding of files to search.'
|
|
56
|
+
complete -c rg -l engine -d 'Specify which regex engine to use.' -r -f -a 'default pcre2 auto'
|
|
57
|
+
complete -c rg -l field-context-separator -d 'Set the field context separator.' -r -f
|
|
58
|
+
complete -c rg -l field-match-separator -d 'Set the field match separator.' -r -f
|
|
59
|
+
complete -c rg -l files -d 'Print each file that would be searched.'
|
|
60
|
+
complete -c rg -s l -l files-with-matches -d 'Print the paths with at least one match.'
|
|
61
|
+
complete -c rg -l files-without-match -d 'Print the paths that contain zero matches.'
|
|
62
|
+
complete -c rg -s F -l fixed-strings -d 'Treat all patterns as literals.'
|
|
63
|
+
complete -c rg -l no-fixed-strings -n '__fish_contains_opt -s F fixed-strings' -d 'Treat all patterns as literals.'
|
|
64
|
+
complete -c rg -s L -l follow -d 'Follow symbolic links.'
|
|
65
|
+
complete -c rg -l no-follow -n '__fish_contains_opt -s L follow' -d 'Follow symbolic links.'
|
|
66
|
+
complete -c rg -l generate -d 'Generate man pages and completion scripts.' -r -f -a 'man complete-bash complete-zsh complete-fish complete-powershell'
|
|
67
|
+
complete -c rg -s g -l glob -d 'Include or exclude file paths.' -r -f
|
|
68
|
+
complete -c rg -l glob-case-insensitive -d 'Process all glob patterns case insensitively.'
|
|
69
|
+
complete -c rg -l no-glob-case-insensitive -n '__fish_contains_opt glob-case-insensitive' -d 'Process all glob patterns case insensitively.'
|
|
70
|
+
complete -c rg -l heading -d 'Print matches grouped by each file.'
|
|
71
|
+
complete -c rg -l no-heading -n '__fish_contains_opt heading' -d 'Print matches grouped by each file.'
|
|
72
|
+
complete -c rg -s h -l help -d 'Show help output.'
|
|
73
|
+
complete -c rg -s . -l hidden -d 'Search hidden files and directories.'
|
|
74
|
+
complete -c rg -l no-hidden -n '__fish_contains_opt -s . hidden' -d 'Search hidden files and directories.'
|
|
75
|
+
complete -c rg -l hostname-bin -d 'Run a program to get this system\'s hostname.' -r -f -a '(__fish_complete_command)'
|
|
76
|
+
complete -c rg -l hyperlink-format -d 'Set the format of hyperlinks.' -r -f
|
|
77
|
+
complete -c rg -l iglob -d 'Include/exclude paths case insensitively.' -r -f
|
|
78
|
+
complete -c rg -s i -l ignore-case -d 'Case insensitive search.'
|
|
79
|
+
complete -c rg -l ignore-file -d 'Specify additional ignore files.' -r -F
|
|
80
|
+
complete -c rg -l ignore-file-case-insensitive -d 'Process ignore files case insensitively.'
|
|
81
|
+
complete -c rg -l no-ignore-file-case-insensitive -n '__fish_contains_opt ignore-file-case-insensitive' -d 'Process ignore files case insensitively.'
|
|
82
|
+
complete -c rg -l include-zero -d 'Include zero matches in summary output.'
|
|
83
|
+
complete -c rg -l no-include-zero -n '__fish_contains_opt include-zero' -d 'Include zero matches in summary output.'
|
|
84
|
+
complete -c rg -s v -l invert-match -d 'Invert matching.'
|
|
85
|
+
complete -c rg -l no-invert-match -n '__fish_contains_opt -s v invert-match' -d 'Invert matching.'
|
|
86
|
+
complete -c rg -l json -d 'Show search results in a JSON Lines format.'
|
|
87
|
+
complete -c rg -l no-json -n '__fish_contains_opt json' -d 'Show search results in a JSON Lines format.'
|
|
88
|
+
complete -c rg -l line-buffered -d 'Force line buffering.'
|
|
89
|
+
complete -c rg -l no-line-buffered -n '__fish_contains_opt line-buffered' -d 'Force line buffering.'
|
|
90
|
+
complete -c rg -s n -l line-number -d 'Show line numbers.'
|
|
91
|
+
complete -c rg -s N -l no-line-number -d 'Suppress line numbers.'
|
|
92
|
+
complete -c rg -s x -l line-regexp -d 'Show matches surrounded by line boundaries.'
|
|
93
|
+
complete -c rg -s M -l max-columns -d 'Omit lines longer than this limit.' -r -f
|
|
94
|
+
complete -c rg -l max-columns-preview -d 'Show preview for lines exceeding the limit.'
|
|
95
|
+
complete -c rg -l no-max-columns-preview -n '__fish_contains_opt max-columns-preview' -d 'Show preview for lines exceeding the limit.'
|
|
96
|
+
complete -c rg -s m -l max-count -d 'Limit the number of matching lines.' -r -f
|
|
97
|
+
complete -c rg -s d -l max-depth -d 'Descend at most NUM directories.' -r -f
|
|
98
|
+
complete -c rg -l max-filesize -d 'Ignore files larger than NUM in size.' -r -f
|
|
99
|
+
complete -c rg -l mmap -d 'Search with memory maps when possible.'
|
|
100
|
+
complete -c rg -l no-mmap -n '__fish_contains_opt mmap' -d 'Search with memory maps when possible.'
|
|
101
|
+
complete -c rg -s U -l multiline -d 'Enable searching across multiple lines.'
|
|
102
|
+
complete -c rg -l no-multiline -n '__fish_contains_opt -s U multiline' -d 'Enable searching across multiple lines.'
|
|
103
|
+
complete -c rg -l multiline-dotall -d 'Make \'.\' match line terminators.'
|
|
104
|
+
complete -c rg -l no-multiline-dotall -n '__fish_contains_opt multiline-dotall' -d 'Make \'.\' match line terminators.'
|
|
105
|
+
complete -c rg -l no-config -d 'Never read configuration files.'
|
|
106
|
+
complete -c rg -l no-ignore -d 'Don\'t use ignore files.'
|
|
107
|
+
complete -c rg -l ignore -n '__fish_contains_opt no-ignore' -d 'Don\'t use ignore files.'
|
|
108
|
+
complete -c rg -l no-ignore-dot -d 'Don\'t use .ignore or .rgignore files.'
|
|
109
|
+
complete -c rg -l ignore-dot -n '__fish_contains_opt no-ignore-dot' -d 'Don\'t use .ignore or .rgignore files.'
|
|
110
|
+
complete -c rg -l no-ignore-exclude -d 'Don\'t use local exclusion files.'
|
|
111
|
+
complete -c rg -l ignore-exclude -n '__fish_contains_opt no-ignore-exclude' -d 'Don\'t use local exclusion files.'
|
|
112
|
+
complete -c rg -l no-ignore-files -d 'Don\'t use --ignore-file arguments.'
|
|
113
|
+
complete -c rg -l ignore-files -n '__fish_contains_opt no-ignore-files' -d 'Don\'t use --ignore-file arguments.'
|
|
114
|
+
complete -c rg -l no-ignore-global -d 'Don\'t use global ignore files.'
|
|
115
|
+
complete -c rg -l ignore-global -n '__fish_contains_opt no-ignore-global' -d 'Don\'t use global ignore files.'
|
|
116
|
+
complete -c rg -l no-ignore-messages -d 'Suppress gitignore parse error messages.'
|
|
117
|
+
complete -c rg -l ignore-messages -n '__fish_contains_opt no-ignore-messages' -d 'Suppress gitignore parse error messages.'
|
|
118
|
+
complete -c rg -l no-ignore-parent -d 'Don\'t use ignore files in parent directories.'
|
|
119
|
+
complete -c rg -l ignore-parent -n '__fish_contains_opt no-ignore-parent' -d 'Don\'t use ignore files in parent directories.'
|
|
120
|
+
complete -c rg -l no-ignore-vcs -d 'Don\'t use ignore files from source control.'
|
|
121
|
+
complete -c rg -l ignore-vcs -n '__fish_contains_opt no-ignore-vcs' -d 'Don\'t use ignore files from source control.'
|
|
122
|
+
complete -c rg -l no-messages -d 'Suppress some error messages.'
|
|
123
|
+
complete -c rg -l messages -n '__fish_contains_opt no-messages' -d 'Suppress some error messages.'
|
|
124
|
+
complete -c rg -l no-require-git -d 'Use .gitignore outside of git repositories.'
|
|
125
|
+
complete -c rg -l require-git -n '__fish_contains_opt no-require-git' -d 'Use .gitignore outside of git repositories.'
|
|
126
|
+
complete -c rg -l no-unicode -d 'Disable Unicode mode.'
|
|
127
|
+
complete -c rg -l unicode -n '__fish_contains_opt no-unicode' -d 'Disable Unicode mode.'
|
|
128
|
+
complete -c rg -s 0 -l null -d 'Print a NUL byte after file paths.'
|
|
129
|
+
complete -c rg -l null-data -d 'Use NUL as a line terminator.'
|
|
130
|
+
complete -c rg -l one-file-system -d 'Skip directories on other file systems.'
|
|
131
|
+
complete -c rg -l no-one-file-system -n '__fish_contains_opt one-file-system' -d 'Skip directories on other file systems.'
|
|
132
|
+
complete -c rg -s o -l only-matching -d 'Print only matched parts of a line.'
|
|
133
|
+
complete -c rg -l path-separator -d 'Set the path separator for printing paths.' -r -f
|
|
134
|
+
complete -c rg -l passthru -d 'Print both matching and non-matching lines.'
|
|
135
|
+
complete -c rg -s P -l pcre2 -d 'Enable PCRE2 matching.'
|
|
136
|
+
complete -c rg -l no-pcre2 -n '__fish_contains_opt -s P pcre2' -d 'Enable PCRE2 matching.'
|
|
137
|
+
complete -c rg -l pcre2-version -d 'Print the version of PCRE2 that ripgrep uses.'
|
|
138
|
+
complete -c rg -l pre -d 'Search output of COMMAND for each PATH.' -r -f -a '(__fish_complete_command)'
|
|
139
|
+
complete -c rg -l no-pre -n '__fish_contains_opt pre' -d 'Search output of COMMAND for each PATH.'
|
|
140
|
+
complete -c rg -l pre-glob -d 'Include or exclude files from a preprocessor.' -r -f
|
|
141
|
+
complete -c rg -s p -l pretty -d 'Alias for colors, headings and line numbers.'
|
|
142
|
+
complete -c rg -s q -l quiet -d 'Do not print anything to stdout.'
|
|
143
|
+
complete -c rg -l regex-size-limit -d 'The size limit of the compiled regex.' -r -f
|
|
144
|
+
complete -c rg -s r -l replace -d 'Replace matches with the given text.' -r -f
|
|
145
|
+
complete -c rg -s z -l search-zip -d 'Search in compressed files.'
|
|
146
|
+
complete -c rg -l no-search-zip -n '__fish_contains_opt -s z search-zip' -d 'Search in compressed files.'
|
|
147
|
+
complete -c rg -s S -l smart-case -d 'Smart case search.'
|
|
148
|
+
complete -c rg -l sort -d 'Sort results in ascending order.' -r -f -a 'none path modified accessed created'
|
|
149
|
+
complete -c rg -l sortr -d 'Sort results in descending order.' -r -f -a 'none path modified accessed created'
|
|
150
|
+
complete -c rg -l stats -d 'Print statistics about the search.'
|
|
151
|
+
complete -c rg -l no-stats -n '__fish_contains_opt stats' -d 'Print statistics about the search.'
|
|
152
|
+
complete -c rg -l stop-on-nonmatch -d 'Stop searching after a non-match.'
|
|
153
|
+
complete -c rg -s a -l text -d 'Search binary files as if they were text.'
|
|
154
|
+
complete -c rg -l no-text -n '__fish_contains_opt -s a text' -d 'Search binary files as if they were text.'
|
|
155
|
+
complete -c rg -s j -l threads -d 'Set the approximate number of threads to use.' -r -f
|
|
156
|
+
complete -c rg -l trace -d 'Show trace messages.'
|
|
157
|
+
complete -c rg -l trim -d 'Trim prefix whitespace from matches.'
|
|
158
|
+
complete -c rg -l no-trim -n '__fish_contains_opt trim' -d 'Trim prefix whitespace from matches.'
|
|
159
|
+
complete -c rg -s t -l type -d 'Only search files matching TYPE.' -r -f -a '(rg --type-list | string replace : \t)'
|
|
160
|
+
complete -c rg -s T -l type-not -d 'Do not search files matching TYPE.' -r -f -a '(rg --type-list | string replace : \t)'
|
|
161
|
+
complete -c rg -l type-add -d 'Add a new glob for a file type.' -r -f
|
|
162
|
+
complete -c rg -l type-clear -d 'Clear globs for a file type.' -r -f
|
|
163
|
+
complete -c rg -l type-list -d 'Show all supported file types.'
|
|
164
|
+
complete -c rg -s u -l unrestricted -d 'Reduce the level of "smart" filtering.'
|
|
165
|
+
complete -c rg -s V -l version -d 'Print ripgrep\'s version.'
|
|
166
|
+
complete -c rg -l vimgrep -d 'Print results im a vim compatible format.'
|
|
167
|
+
complete -c rg -s H -l with-filename -d 'Print the file path with each matching line.'
|
|
168
|
+
complete -c rg -s I -l no-filename -d 'Never print the path with each matching line.'
|
|
169
|
+
complete -c rg -s w -l word-regexp -d 'Show matches surrounded by word boundaries.'
|
|
170
|
+
complete -c rg -l auto-hybrid-regex -d '(DEPRECATED) Use PCRE2 if appropriate.'
|
|
171
|
+
complete -c rg -l no-auto-hybrid-regex -n '__fish_contains_opt auto-hybrid-regex' -d '(DEPRECATED) Use PCRE2 if appropriate.'
|
|
172
|
+
complete -c rg -l no-pcre2-unicode -d '(DEPRECATED) Disable Unicode mode for PCRE2.'
|
|
173
|
+
complete -c rg -l pcre2-unicode -n '__fish_contains_opt no-pcre2-unicode' -d '(DEPRECATED) Disable Unicode mode for PCRE2.'
|
|
174
|
+
complete -c rg -l sort-files -d '(DEPRECATED) Sort results by file path.'
|
|
175
|
+
complete -c rg -l no-sort-files -n '__fish_contains_opt sort-files' -d '(DEPRECATED) Sort results by file path.'
|