@rom-weaver/cli 0.10.2 → 0.11.1

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.
@@ -0,0 +1,723 @@
1
+ # Print an optspec for argparse to handle cmd's options that are independent of any subcommand.
2
+ function __fish_rom_weaver_global_optspecs
3
+ string join \n json progress no-progress log-level= v/verbose q/quiet dep-trace color no-color h/help V/version
4
+ end
5
+
6
+ function __fish_rom_weaver_needs_command
7
+ # Figure out if the current invocation already has a command.
8
+ set -l cmd (commandline -opc)
9
+ set -e cmd[1]
10
+ argparse -s (__fish_rom_weaver_global_optspecs) -- $cmd 2>/dev/null
11
+ or return
12
+ if set -q argv[1]
13
+ # Also print the command, so this can be used to figure out what it is.
14
+ echo $argv[1]
15
+ return 1
16
+ end
17
+ return 0
18
+ end
19
+
20
+ function __fish_rom_weaver_using_subcommand
21
+ set -l cmd (__fish_rom_weaver_needs_command)
22
+ test -z "$cmd"
23
+ and return 1
24
+ contains -- $cmd[1] $argv
25
+ end
26
+
27
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
28
+ error\t''
29
+ warn\t''
30
+ info\t''
31
+ debug\t''
32
+ trace\t''"
33
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -l json -d 'Print one JSON object per line instead of human-readable output'
34
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -l progress -d 'Show progress even when output is piped to a file or another program'
35
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -l no-progress -d 'Hide progress'
36
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
37
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -s q -l quiet -d 'Log errors only'
38
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
39
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -l color -d 'Keep colors even when output is piped'
40
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -l no-color -d 'Turn colors off'
41
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -s h -l help -d 'Print help (see more with \'--help\')'
42
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -s V -l version -d 'Print version'
43
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "probe" -d 'Identify a file: its format, its platform, and any header it carries'
44
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "inspect" -d 'Identify a file: its format, its platform, and any header it carries'
45
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "extract" -d 'Unpack an archive or disc image'
46
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "checksum" -d 'Compute checksums for a file, or for a ROM inside an archive'
47
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "ingest" -d 'Sort a file into ROMs and patches, unpacking and hashing along the way'
48
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "compress" -d 'Pack files into an archive or a compressed disc image'
49
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "trim" -d 'Cut the padding off a ROM, or put it back'
50
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "patch" -d 'Apply, create, or check ROM patches'
51
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "bundle" -d 'Build and read rom-weaver-bundle.json patch recipes'
52
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "tools" -d 'One-off recovery tools'
53
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "plan-extract-batch" -d 'Plan a memory-/thread-aware concurrent extraction schedule from per-job source sizes (no I/O)'
54
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "weave" -d 'Apply one or more patches to a ROM, in order (same as `patch apply`)'
55
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "completions" -d 'Print a tab-completion script for your shell'
56
+ complete -c rom-weaver -n "__fish_rom_weaver_needs_command" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
57
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -s i -l input -d 'File to identify. Use - to read from stdin' -r -F
58
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -s s -l select -d 'Pick which file inside the archive to use, by exact name, prefix, or glob (repeatable)' -r
59
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l filter -d 'Consider only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
60
+ patch\t''"
61
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
62
+ error\t''
63
+ warn\t''
64
+ info\t''
65
+ debug\t''
66
+ trace\t''"
67
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l no-extract -d 'Do not look inside archives; identify the file itself'
68
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
69
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l json -d 'Print one JSON object per line instead of human-readable output'
70
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l progress -d 'Show progress even when output is piped to a file or another program'
71
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l no-progress -d 'Hide progress'
72
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
73
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -s q -l quiet -d 'Log errors only'
74
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
75
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l color -d 'Keep colors even when output is piped'
76
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -l no-color -d 'Turn colors off'
77
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand probe" -s h -l help -d 'Print help (see more with \'--help\')'
78
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -s i -l input -d 'File to identify. Use - to read from stdin' -r -F
79
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -s s -l select -d 'Pick which file inside the archive to use, by exact name, prefix, or glob (repeatable)' -r
80
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l filter -d 'Consider only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
81
+ patch\t''"
82
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
83
+ error\t''
84
+ warn\t''
85
+ info\t''
86
+ debug\t''
87
+ trace\t''"
88
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l no-extract -d 'Do not look inside archives; identify the file itself'
89
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
90
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l json -d 'Print one JSON object per line instead of human-readable output'
91
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l progress -d 'Show progress even when output is piped to a file or another program'
92
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l no-progress -d 'Hide progress'
93
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
94
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -s q -l quiet -d 'Log errors only'
95
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
96
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l color -d 'Keep colors even when output is piped'
97
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -l no-color -d 'Turn colors off'
98
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand inspect" -s h -l help -d 'Print help (see more with \'--help\')'
99
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -s i -l input -d 'Archive or disc image to unpack' -r -F
100
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -s s -l select -d 'Extract only these files, by exact name, prefix, or glob (repeatable). For example: --select \'game.disc0?.bin\'' -r
101
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l filter -d 'Extract only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
102
+ patch\t''"
103
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -s o -l output -d 'Directory to write the extracted files into' -r -F
104
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l checksum -d 'Also hash every extracted file (repeatable, comma-separable)' -r
105
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l checksum-rom -d 'Like --checksum, but hash only the ROMs and skip sidecar files. Ignored when --checksum is also given' -r
106
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
107
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
108
+ error\t''
109
+ warn\t''
110
+ info\t''
111
+ debug\t''
112
+ trace\t''"
113
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l split-bin -d 'Write a CD-format CHD as a CUE plus one BIN per track (*.trackNN.bin), rather than one merged BIN'
114
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
115
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l no-nested-extract -d 'Stop after one layer; leave any archive found inside the input packed'
116
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l force -d 'Overwrite files already in the output directory (without this, extraction stops instead)'
117
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l probe -d 'Also report the format and platform of what was extracted, and fail if a lone payload matches no known platform'
118
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l json -d 'Print one JSON object per line instead of human-readable output'
119
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l progress -d 'Show progress even when output is piped to a file or another program'
120
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l no-progress -d 'Hide progress'
121
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
122
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -s q -l quiet -d 'Log errors only'
123
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
124
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l color -d 'Keep colors even when output is piped'
125
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -l no-color -d 'Turn colors off'
126
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand extract" -s h -l help -d 'Print help (see more with \'--help\')'
127
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -s i -l input -d 'File to hash. Use - to read from stdin' -r -F
128
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -s a -l algo -d 'Which checksum to compute: crc32, md5, sha1, sha256, blake3, crc32c, crc16, or adler32 (repeatable, comma-separable)' -r
129
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -s s -l select -d 'Pick which file inside the archive to use, by exact name, prefix, or glob (repeatable)' -r
130
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l filter -d 'Consider only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
131
+ patch\t''"
132
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l start -d 'Start hashing at this byte offset, counting from 0' -r
133
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l length -d 'How many bytes to hash from --start. Defaults to the rest of the file' -r
134
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
135
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
136
+ error\t''
137
+ warn\t''
138
+ info\t''
139
+ debug\t''
140
+ trace\t''"
141
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l no-extract -d 'Do not look inside archives; hash the file itself'
142
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
143
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l no-trim-fix -d 'Skip the extra checksums computed for how a trimmable ROM would hash trimmed or untrimmed'
144
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l probe -d 'Also report the platform of the hashed bytes, and fail if it matches no known platform'
145
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l json -d 'Print one JSON object per line instead of human-readable output'
146
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l progress -d 'Show progress even when output is piped to a file or another program'
147
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l no-progress -d 'Hide progress'
148
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
149
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -s q -l quiet -d 'Log errors only'
150
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
151
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l color -d 'Keep colors even when output is piped'
152
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -l no-color -d 'Turn colors off'
153
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand checksum" -s h -l help -d 'Print help (see more with \'--help\')'
154
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -s i -l input -d 'File to sort into ROMs and patches' -r -F
155
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -s o -l output -d 'Directory to write anything unpacked along the way into' -r -F
156
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -s s -l select -d 'Pick which ROM to use when the archive holds more than one, by exact name, prefix, or glob (repeatable)' -r
157
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l sidecar-name -d 'Optional loose patch names to match against `source` without ingesting it. This keeps the browser\'s sibling-sidecar lookup on the ingest command surface while reusing Rust\'s matcher' -r
158
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l split-bin -d 'For a multi-track CD-format CHD, write one BIN per track (--split-bin) or one merged BIN (--split-bin false). Omit to be asked' -r -f -a "true\t''
159
+ false\t''"
160
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l checksum -d 'Which checksums to compute for each ROM found (repeatable, comma-separable) [default: crc32,md5,sha1]' -r
161
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
162
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
163
+ error\t''
164
+ warn\t''
165
+ info\t''
166
+ debug\t''
167
+ trace\t''"
168
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l sidecar-only
169
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
170
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l no-nested-extract -d 'Stop after one layer; leave any archive found inside the input packed'
171
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l json -d 'Print one JSON object per line instead of human-readable output'
172
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l progress -d 'Show progress even when output is piped to a file or another program'
173
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l no-progress -d 'Hide progress'
174
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
175
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -s q -l quiet -d 'Log errors only'
176
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
177
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l color -d 'Keep colors even when output is piped'
178
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -l no-color -d 'Turn colors off'
179
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand ingest" -s h -l help -d 'Print help (see more with \'--help\')'
180
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -s i -l input -d 'File to put in the archive; repeat for each one. For a disc image, pass the .cue or .gdi alone and its tracks come along' -r -F
181
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -s f -l format -d 'Output format, such as zip, 7z, chd, rvz, or z3ds [default: from the --output extension]' -r
182
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -s o -l output -d 'Where to write the archive' -r -F
183
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l codec -d 'Compression method to use, as codec or codec:level (repeatable, comma-separable)' -r
184
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l level -d 'How hard to compress: min, very-low, low, medium, high, very-high, or max' -r -f -a "min\t''
185
+ very-low\t''
186
+ low\t''
187
+ medium\t''
188
+ high\t''
189
+ very-high\t''
190
+ max\t''"
191
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
192
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
193
+ error\t''
194
+ warn\t''
195
+ info\t''
196
+ debug\t''
197
+ trace\t''"
198
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l json -d 'Print one JSON object per line instead of human-readable output'
199
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l progress -d 'Show progress even when output is piped to a file or another program'
200
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l no-progress -d 'Hide progress'
201
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
202
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -s q -l quiet -d 'Log errors only'
203
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
204
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l color -d 'Keep colors even when output is piped'
205
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -l no-color -d 'Turn colors off'
206
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand compress" -s h -l help -d 'Print help (see more with \'--help\')'
207
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s i -l input -d 'File or folder to trim. Repeat for each one' -r -F
208
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s o -l output -d 'Where to write the trimmed file. Only valid with a single trimmable input' -r -F
209
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s e -l extension -d 'Save next to each original under this extension. {ext} stands for the original one, as in trim.{ext}' -r
210
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
211
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
212
+ error\t''
213
+ warn\t''
214
+ info\t''
215
+ debug\t''
216
+ trace\t''"
217
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l in-place -d 'Overwrite the original instead of writing a new file'
218
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s n -l dry-run -d 'Report what would be trimmed without writing anything'
219
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l revert -l untrim -l restore -d 'Pad a trimmed file back to full size (NDS, GBA, and 3DS only)'
220
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l no-recursive -d 'When an input is a folder, look only at its top level'
221
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l no-filter -d 'Consider every file inside an archive, not just the ones that look like ROMs'
222
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l no-extract -d 'Do not look inside archives; trim only the files named directly'
223
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l revert-marker -l reversible -d 'Add a small footer recording what was cut, so --revert can restore the original exactly'
224
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l json -d 'Print one JSON object per line instead of human-readable output'
225
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l progress -d 'Show progress even when output is piped to a file or another program'
226
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l no-progress -d 'Hide progress'
227
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
228
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s q -l quiet -d 'Log errors only'
229
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
230
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l color -d 'Keep colors even when output is piped'
231
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -l no-color -d 'Turn colors off'
232
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand trim" -s h -l help -d 'Print help (see more with \'--help\')'
233
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
234
+ error\t''
235
+ warn\t''
236
+ info\t''
237
+ debug\t''
238
+ trace\t''"
239
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -l json -d 'Print one JSON object per line instead of human-readable output'
240
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -l progress -d 'Show progress even when output is piped to a file or another program'
241
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -l no-progress -d 'Hide progress'
242
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
243
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -s q -l quiet -d 'Log errors only'
244
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
245
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -l color -d 'Keep colors even when output is piped'
246
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -l no-color -d 'Turn colors off'
247
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -s h -l help -d 'Print help'
248
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -f -a "apply" -d 'Apply one or more patches to a ROM, in order'
249
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -f -a "weave" -d 'Apply one or more patches to a ROM, in order'
250
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -f -a "validate" -d 'Check that patches would apply cleanly, without writing anything'
251
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -f -a "create" -d 'Build a patch from an original ROM and a changed one'
252
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and not __fish_seen_subcommand_from apply weave validate create help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
253
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -s i -l input -d 'ROM to patch. May be an archive, a disc sheet (.cue/.gdi), or a bundle' -r -F
254
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -s s -l select -d 'Pick which file to use when the ROM or a patch is inside an archive, by exact name, prefix, or glob (repeatable)' -r
255
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l target -d 'For a .cue or .gdi input, which track gets the patch. Matched like --select and must hit exactly one track' -r
256
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l filter -d 'Consider only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
257
+ patch\t''"
258
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l patch -d 'Patch to apply. Repeat once per patch; they run in the order given' -r -F
259
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -s o -l output -d 'Where to write the patched ROM. Optional when a bundle already names the output' -r -F
260
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l bundle -d 'Follow a rom-weaver-bundle.json recipe: a file path, or an http(s) URL' -r -F
261
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l with -d 'Turn on a bundle patch the bundle leaves off by default, matched by name or file name (repeatable)' -r
262
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l without -d 'Turn off a bundle patch, matched by name or file name (repeatable)' -r
263
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l compress-format -d 'Format to compress the patched ROM into [default: from the --output extension]' -r
264
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l compress-codec -d 'Compression method to use, as codec or codec:level (repeatable, comma-separable)' -r
265
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l compress-level -d 'How hard to compress: min, very-low, low, medium, high, very-high, or max [default: max]' -r -f -a "min\t''
266
+ very-low\t''
267
+ low\t''
268
+ medium\t''
269
+ high\t''
270
+ very-high\t''
271
+ max\t''"
272
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l assume-in -d 'Take this checksum on trust instead of reading the ROM to compute it, as in crc32=1234abcd (repeatable, comma-separable)' -r
273
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l expect-in -d 'Stop unless the ROM about to be patched has this checksum, as in crc32=1234abcd (repeatable, comma-separable)' -r
274
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l patch-header -d 'Whether a patch applies to the ROM with or without its copier header: auto, keep, or strip [default: auto]' -r -f -a "keep\t''
275
+ strip\t''
276
+ auto\t''"
277
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l patch-basis -d 'Which ROM the preceding --patch was built against: auto, base, or previous [default: auto]' -r -f -a "auto\t''
278
+ base\t''
279
+ previous\t''"
280
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l output-header -d 'Whether the finished ROM keeps its copier header: auto, keep, or strip [default: auto]' -r -f -a "keep\t''
281
+ strip\t''
282
+ auto\t''"
283
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l n64-byte-order -d 'Byte order to put an N64 ROM in for each patch: auto, keep, big-endian, little-endian, or byte-swapped [default: auto]' -r -f -a "auto\t''
284
+ keep\t''
285
+ big-endian\t''
286
+ little-endian\t''
287
+ byte-swapped\t''"
288
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l expect-out -d 'Fail unless the patched ROM has this checksum, as in sha1=abc... (repeatable, comma-separable)' -r
289
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l code -d 'Game Genie or GameShark/Pro Action Replay code to bake into the ROM. Repeat for each code' -r
290
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l code-system -d 'Console the --code values are for (nes, snes, genesis, gameboy), when the ROM header does not say' -r
291
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l code-kind -d 'Which cheat scheme the --code values use: auto, game-genie, or gameshark/par' -r
292
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l emit-bundle -d 'Also write a rom-weaver-bundle.json recording this run, so someone else can repeat it' -r -F
293
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
294
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
295
+ error\t''
296
+ warn\t''
297
+ info\t''
298
+ debug\t''
299
+ trace\t''"
300
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l no-extract -d 'Do not look inside archives; treat the input and every patch as raw files'
301
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
302
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l no-compress -d 'Write a plain ROM instead of compressing the result'
303
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l repair-checksum -d 'Recompute the ROM\'s internal header checksum afterwards, so the console does not reject it (SNES, NES, GB, GBA, Mega Drive, SMS, N64, NDS)'
304
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l ignore-checksum-validation -d 'Apply the patch even when its own checksums do not match. Can produce a broken ROM'
305
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l tui -d 'Ask for each patch\'s name, version, and author, then apply and write a bundle. Needs a terminal'
306
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l json -d 'Print one JSON object per line instead of human-readable output'
307
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l progress -d 'Show progress even when output is piped to a file or another program'
308
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l no-progress -d 'Hide progress'
309
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
310
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -s q -l quiet -d 'Log errors only'
311
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
312
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l color -d 'Keep colors even when output is piped'
313
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -l no-color -d 'Turn colors off'
314
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from apply" -s h -l help -d 'Print help (see more with \'--help\')'
315
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -s i -l input -d 'ROM to patch. May be an archive, a disc sheet (.cue/.gdi), or a bundle' -r -F
316
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -s s -l select -d 'Pick which file to use when the ROM or a patch is inside an archive, by exact name, prefix, or glob (repeatable)' -r
317
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l target -d 'For a .cue or .gdi input, which track gets the patch. Matched like --select and must hit exactly one track' -r
318
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l filter -d 'Consider only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
319
+ patch\t''"
320
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l patch -d 'Patch to apply. Repeat once per patch; they run in the order given' -r -F
321
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -s o -l output -d 'Where to write the patched ROM. Optional when a bundle already names the output' -r -F
322
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l bundle -d 'Follow a rom-weaver-bundle.json recipe: a file path, or an http(s) URL' -r -F
323
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l with -d 'Turn on a bundle patch the bundle leaves off by default, matched by name or file name (repeatable)' -r
324
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l without -d 'Turn off a bundle patch, matched by name or file name (repeatable)' -r
325
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l compress-format -d 'Format to compress the patched ROM into [default: from the --output extension]' -r
326
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l compress-codec -d 'Compression method to use, as codec or codec:level (repeatable, comma-separable)' -r
327
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l compress-level -d 'How hard to compress: min, very-low, low, medium, high, very-high, or max [default: max]' -r -f -a "min\t''
328
+ very-low\t''
329
+ low\t''
330
+ medium\t''
331
+ high\t''
332
+ very-high\t''
333
+ max\t''"
334
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l assume-in -d 'Take this checksum on trust instead of reading the ROM to compute it, as in crc32=1234abcd (repeatable, comma-separable)' -r
335
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l expect-in -d 'Stop unless the ROM about to be patched has this checksum, as in crc32=1234abcd (repeatable, comma-separable)' -r
336
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l patch-header -d 'Whether a patch applies to the ROM with or without its copier header: auto, keep, or strip [default: auto]' -r -f -a "keep\t''
337
+ strip\t''
338
+ auto\t''"
339
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l patch-basis -d 'Which ROM the preceding --patch was built against: auto, base, or previous [default: auto]' -r -f -a "auto\t''
340
+ base\t''
341
+ previous\t''"
342
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l output-header -d 'Whether the finished ROM keeps its copier header: auto, keep, or strip [default: auto]' -r -f -a "keep\t''
343
+ strip\t''
344
+ auto\t''"
345
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l n64-byte-order -d 'Byte order to put an N64 ROM in for each patch: auto, keep, big-endian, little-endian, or byte-swapped [default: auto]' -r -f -a "auto\t''
346
+ keep\t''
347
+ big-endian\t''
348
+ little-endian\t''
349
+ byte-swapped\t''"
350
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l expect-out -d 'Fail unless the patched ROM has this checksum, as in sha1=abc... (repeatable, comma-separable)' -r
351
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l code -d 'Game Genie or GameShark/Pro Action Replay code to bake into the ROM. Repeat for each code' -r
352
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l code-system -d 'Console the --code values are for (nes, snes, genesis, gameboy), when the ROM header does not say' -r
353
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l code-kind -d 'Which cheat scheme the --code values use: auto, game-genie, or gameshark/par' -r
354
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l emit-bundle -d 'Also write a rom-weaver-bundle.json recording this run, so someone else can repeat it' -r -F
355
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
356
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
357
+ error\t''
358
+ warn\t''
359
+ info\t''
360
+ debug\t''
361
+ trace\t''"
362
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l no-extract -d 'Do not look inside archives; treat the input and every patch as raw files'
363
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
364
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l no-compress -d 'Write a plain ROM instead of compressing the result'
365
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l repair-checksum -d 'Recompute the ROM\'s internal header checksum afterwards, so the console does not reject it (SNES, NES, GB, GBA, Mega Drive, SMS, N64, NDS)'
366
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l ignore-checksum-validation -d 'Apply the patch even when its own checksums do not match. Can produce a broken ROM'
367
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l tui -d 'Ask for each patch\'s name, version, and author, then apply and write a bundle. Needs a terminal'
368
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l json -d 'Print one JSON object per line instead of human-readable output'
369
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l progress -d 'Show progress even when output is piped to a file or another program'
370
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l no-progress -d 'Hide progress'
371
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
372
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -s q -l quiet -d 'Log errors only'
373
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
374
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l color -d 'Keep colors even when output is piped'
375
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -l no-color -d 'Turn colors off'
376
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from weave" -s h -l help -d 'Print help (see more with \'--help\')'
377
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -s i -l input -d 'ROM to check the patches against. May be an archive' -r -F
378
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -s s -l select -d 'Pick which file to use when the ROM or a patch is inside an archive, by exact name, prefix, or glob (repeatable)' -r
379
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l filter -d 'Consider only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
380
+ patch\t''"
381
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l patch -d 'Patch to check. Repeat once per patch; they are checked in the order given' -r -F
382
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l assume-in -d 'Take this checksum on trust instead of reading the ROM to compute it, as in crc32=1234abcd (repeatable, comma-separable)' -r
383
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l expect-in -d 'Fail unless the ROM matches: a checksum (crc32=1234abcd), an exact size (size=N), or a floor (min-size=N). Repeatable, comma-separable' -r
384
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l n64-byte-order -d 'Byte order to put an N64 ROM in before checking: auto, keep, big-endian, little-endian, or byte-swapped [default: auto]' -r -f -a "auto\t''
385
+ keep\t''
386
+ big-endian\t''
387
+ little-endian\t''
388
+ byte-swapped\t''"
389
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l patch-basis -d 'Which ROM the preceding --patch was built against: auto, base, or previous [default: auto]' -r -f -a "auto\t''
390
+ base\t''
391
+ previous\t''"
392
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l patch-input-check -d 'Checksum the preceding --patch expects to see going in, when the patch does not carry one (comma-separable; empty means none)' -r
393
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l patch-output-check -d 'Checksum the preceding --patch should produce, when the patch does not carry one (comma-separable; empty means none)' -r
394
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
395
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
396
+ error\t''
397
+ warn\t''
398
+ info\t''
399
+ debug\t''
400
+ trace\t''"
401
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l no-extract -d 'Do not look inside archives; treat the input and every patch as raw files'
402
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
403
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l strip-header -d 'Remove the ROM\'s copier header before checking (A78, LNX, NES, FDS, SMC signatures, plus the SNES and PCE size rules)'
404
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l ignore-checksum-validation -d 'Report a patch as usable even when its own checksums do not match'
405
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l independent -d 'Check every patch against the original ROM rather than as a chain, and report a verdict for each instead of stopping at the first failure'
406
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l plan -d 'Report the order the patches would run in and what each would be checked against, without reading the ROM more than needed'
407
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l json -d 'Print one JSON object per line instead of human-readable output'
408
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l progress -d 'Show progress even when output is piped to a file or another program'
409
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l no-progress -d 'Hide progress'
410
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
411
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -s q -l quiet -d 'Log errors only'
412
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
413
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l color -d 'Keep colors even when output is piped'
414
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -l no-color -d 'Turn colors off'
415
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from validate" -s h -l help -d 'Print help (see more with \'--help\')'
416
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l original -d 'The unmodified ROM' -r -F
417
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l modified -d 'The changed ROM. Leave out when using --code, which produces the changed ROM for you' -r -F
418
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -s f -l format -d 'Patch format, such as bps, ips, or xdelta [default: from the --output extension]' -r
419
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -s o -l output -d 'Where to write the patch. Required unless --plan is used' -r -F
420
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l assume-in -d 'Take the original ROM\'s checksum on trust rather than reading the file, as in crc32=1234abcd (repeatable, comma-separable)' -r
421
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l code -d 'Build the patch from a Game Genie or GameShark/Pro Action Replay code instead of a second ROM. Repeat for each code; cannot be used with --modified' -r
422
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l code-system -d 'Console the --code values are for (nes, snes, genesis, gameboy), when the ROM header does not say' -r
423
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l code-kind -d 'Which cheat scheme the --code values use: auto, game-genie, or gameshark/par' -r
424
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
425
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-system -d 'SOLID patches only: console the ROM is for' -r
426
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-game -d 'SOLID patches only: name of the game' -r
427
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-hack -d 'SOLID patches only: name of the hack' -r
428
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-version -d 'SOLID patches only: version of the hack. Switches the patch to its extended header' -r
429
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-author -d 'SOLID patches only: who made the hack. Switches the patch to its extended header' -r
430
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-contact -d 'SOLID patches only: how to reach the author. Switches the patch to its extended header' -r
431
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-comment -d 'SOLID patches only: free-form note. Switches the patch to its extended header' -r
432
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l xdelta-secondary -d 'xdelta patches only: compress the patch\'s own contents' -r -f -a "auto\t''
433
+ lzma\t''
434
+ djw\t''
435
+ fgk\t''
436
+ none\t''"
437
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
438
+ error\t''
439
+ warn\t''
440
+ info\t''
441
+ debug\t''
442
+ trace\t''"
443
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l plan -d 'Only report which formats suit these two ROMs; write nothing'
444
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l ignore-checksum-validation -d 'Write the patch even when the format\'s own consistency checks fail, and leave its checksums out'
445
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l checksum-name -d 'Put the original ROM\'s crc32 in the patch file name, as [crc32:HEX]'
446
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l solid-extended -d 'SOLID patches only: use the extended header even with none of the extended fields filled in'
447
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l json -d 'Print one JSON object per line instead of human-readable output'
448
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l progress -d 'Show progress even when output is piped to a file or another program'
449
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l no-progress -d 'Hide progress'
450
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
451
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -s q -l quiet -d 'Log errors only'
452
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
453
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l color -d 'Keep colors even when output is piped'
454
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -l no-color -d 'Turn colors off'
455
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from create" -s h -l help -d 'Print help (see more with \'--help\')'
456
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from help" -f -a "apply" -d 'Apply one or more patches to a ROM, in order'
457
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from help" -f -a "validate" -d 'Check that patches would apply cleanly, without writing anything'
458
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from help" -f -a "create" -d 'Build a patch from an original ROM and a changed one'
459
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand patch; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
460
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
461
+ error\t''
462
+ warn\t''
463
+ info\t''
464
+ debug\t''
465
+ trace\t''"
466
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -l json -d 'Print one JSON object per line instead of human-readable output'
467
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -l progress -d 'Show progress even when output is piped to a file or another program'
468
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -l no-progress -d 'Hide progress'
469
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
470
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -s q -l quiet -d 'Log errors only'
471
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
472
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -l color -d 'Keep colors even when output is piped'
473
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -l no-color -d 'Turn colors off'
474
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -s h -l help -d 'Print help'
475
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -f -a "create" -d 'Write a rom-weaver-bundle.json recipe from local ROM and patch files'
476
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -f -a "parse" -d 'Read a rom-weaver-bundle.json recipe and report what it points at'
477
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -f -a "schema" -d 'Print the rom-weaver-bundle.json JSON Schema, for editors and hand-authoring'
478
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and not __fish_seen_subcommand_from create parse schema help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
479
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -s i -l input -d 'ROM the patches apply to. Its checksums and size are read from the file and recorded in the bundle' -r -F
480
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l assume-in -d 'Take the ROM\'s checksum and size on trust rather than reading it, as in crc32=1234abcd,size=1048576 (repeatable, comma-separable)' -r
481
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l rom-url -d 'Where the ROM can be downloaded from. With --input, the local file still supplies the checksums; on its own, the bundle records only this url' -r
482
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l rom-name -d 'File name to show for the ROM, and to base the output name on' -r
483
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch -d 'Patch to list in the bundle. Repeat once per patch, in the order they should be applied' -r -F
484
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-id -d 'Identifier for the preceding --patch that stays the same across releases, so a replacement keeps its settings' -r
485
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-version -d 'Version of the preceding --patch, in whatever form its author uses' -r
486
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-name -d 'Name to show for the preceding --patch' -r
487
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-description -d 'What the preceding --patch does' -r
488
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-author -d 'Who made the preceding --patch' -r
489
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-label -d 'Short status note for the preceding --patch, such as beta or recommended' -r
490
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-optional -d 'Mark the preceding --patch optional, so it starts switched off and needs --with to run' -r -f -a "true\t''
491
+ false\t''"
492
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-source-url -d 'Where the preceding --patch can be downloaded from. The local file is still read to build the bundle' -r
493
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-header -d 'Whether the preceding --patch applies to the ROM with or without its copier header: auto, keep, or strip' -r -f -a "keep\t''
494
+ strip\t''
495
+ auto\t''"
496
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-basis -d 'Which ROM the preceding --patch was built against: base (the bundle\'s ROM) or previous (the patch before it). Use auto to leave it out and let apply infer it' -r -f -a "auto\t''
497
+ base\t''
498
+ previous\t''"
499
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-expect-in -d 'Checksum the ROM should have before the preceding --patch runs. Recorded only when it differs from the bundle\'s ROM checksums (repeatable, comma-separable)' -r
500
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l patch-expect-out -d 'Checksum the ROM should have after the preceding --patch runs. Recorded only when it differs from the final output checksums (repeatable, comma-separable)' -r
501
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l expect-out -d 'Checksum the ROM should have once every patch has run, so users can confirm they got the right result (repeatable, comma-separable)' -r
502
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l output-name -d 'File name the bundle suggests for the patched ROM' -r
503
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l output-header -d 'Whether the patched ROM should keep its copier header: auto, keep, or strip' -r -f -a "keep\t''
504
+ strip\t''
505
+ auto\t''"
506
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -s o -l output -d 'Where to write the bundle. Name it rom-weaver-bundle.json, or add .gz or .zst to compress it' -r -F
507
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l bundle -d 'Also pack the bundle and its ROM and patches into one shareable archive, such as release.zip' -r -F
508
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l bundle-rom -d 'Pack this file into --bundle as the ROM, while --input supplies the checksums and metadata' -r -F
509
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l checksum -d 'Which checksums to record for the ROM (repeatable) [default: crc32,md5,sha1]' -r
510
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l from -d 'Build the bundle from a hand-written rom-weaver-bundle.json instead of flags. Use - to read it from stdin' -r -F
511
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l schema-ref -d 'Record this $schema URL in the bundle so editors can validate it. Left out unless asked for' -r
512
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
513
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
514
+ error\t''
515
+ warn\t''
516
+ info\t''
517
+ debug\t''
518
+ trace\t''"
519
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l no-bundle-rom -d 'Keep the ROM out of --bundle and record only its checksums, so whoever applies the bundle brings their own copy'
520
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l json -d 'Print one JSON object per line instead of human-readable output'
521
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l progress -d 'Show progress even when output is piped to a file or another program'
522
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l no-progress -d 'Hide progress'
523
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
524
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -s q -l quiet -d 'Log errors only'
525
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
526
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l color -d 'Keep colors even when output is piped'
527
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -l no-color -d 'Turn colors off'
528
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from create" -s h -l help -d 'Print help (see more with \'--help\')'
529
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -s i -l input -d 'Bundle file, or an archive with a bundle at its root' -r -F
530
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -s s -l select -d 'Handle only the bundle entries whose file name matches this exact name, prefix, or glob (repeatable)' -r
531
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l filter -d 'Handle only the bundle\'s rom entry or only its patch entries (repeatable, comma-separable)' -r -f -a "rom\t''
532
+ patch\t''"
533
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -s o -l output -d 'Directory to unpack the bundle\'s files into. Without it, files packed in an archive are listed but not written out' -r -F
534
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
535
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
536
+ error\t''
537
+ warn\t''
538
+ info\t''
539
+ debug\t''
540
+ trace\t''"
541
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l no-extract -d 'Report what the bundle contains without unpacking any of it'
542
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l json -d 'Print one JSON object per line instead of human-readable output'
543
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l progress -d 'Show progress even when output is piped to a file or another program'
544
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l no-progress -d 'Hide progress'
545
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
546
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -s q -l quiet -d 'Log errors only'
547
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
548
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l color -d 'Keep colors even when output is piped'
549
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -l no-color -d 'Turn colors off'
550
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from parse" -s h -l help -d 'Print help (see more with \'--help\')'
551
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
552
+ error\t''
553
+ warn\t''
554
+ info\t''
555
+ debug\t''
556
+ trace\t''"
557
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -l json -d 'Print one JSON object per line instead of human-readable output'
558
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -l progress -d 'Show progress even when output is piped to a file or another program'
559
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -l no-progress -d 'Hide progress'
560
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
561
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -s q -l quiet -d 'Log errors only'
562
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
563
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -l color -d 'Keep colors even when output is piped'
564
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -l no-color -d 'Turn colors off'
565
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from schema" -s h -l help -d 'Print help (see more with \'--help\')'
566
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from help" -f -a "create" -d 'Write a rom-weaver-bundle.json recipe from local ROM and patch files'
567
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from help" -f -a "parse" -d 'Read a rom-weaver-bundle.json recipe and report what it points at'
568
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from help" -f -a "schema" -d 'Print the rom-weaver-bundle.json JSON Schema, for editors and hand-authoring'
569
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand bundle; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
570
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
571
+ error\t''
572
+ warn\t''
573
+ info\t''
574
+ debug\t''
575
+ trace\t''"
576
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -l json -d 'Print one JSON object per line instead of human-readable output'
577
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -l progress -d 'Show progress even when output is piped to a file or another program'
578
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -l no-progress -d 'Hide progress'
579
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
580
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -s q -l quiet -d 'Log errors only'
581
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
582
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -l color -d 'Keep colors even when output is piped'
583
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -l no-color -d 'Turn colors off'
584
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -s h -l help -d 'Print help'
585
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -f -a "ppf-undo" -d 'Undo a PPF3 patch, using the undo data stored inside it'
586
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and not __fish_seen_subcommand_from ppf-undo help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
587
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -s i -l input -d 'The already-patched ROM to undo' -r -F
588
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l patch -d 'The PPF3 patch that was applied. It must carry undo data' -r -F
589
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -s o -l output -d 'Where to write the restored ROM' -r -F
590
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
591
+ error\t''
592
+ warn\t''
593
+ info\t''
594
+ debug\t''
595
+ trace\t''"
596
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l json -d 'Print one JSON object per line instead of human-readable output'
597
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l progress -d 'Show progress even when output is piped to a file or another program'
598
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l no-progress -d 'Hide progress'
599
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
600
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -s q -l quiet -d 'Log errors only'
601
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
602
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l color -d 'Keep colors even when output is piped'
603
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -l no-color -d 'Turn colors off'
604
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from ppf-undo" -s h -l help -d 'Print help (see more with \'--help\')'
605
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from help" -f -a "ppf-undo" -d 'Undo a PPF3 patch, using the undo data stored inside it'
606
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand tools; and __fish_seen_subcommand_from help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
607
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l job-size -d 'Source size in bytes for one job; repeat once per job, in input order' -r
608
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
609
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l max-concurrency -d 'Hard cap on jobs running at once; defaults to the thread budget' -r
610
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l total-memory-bytes -d 'Total memory budget concurrent jobs may reserve (e.g. browser device memory); defaults to the platform\'s physical memory' -r
611
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l memory-ceiling-bytes -d 'Combined working-set ceiling to plan against, used verbatim (no fraction/clamp). The browser passes its own resolved, mobile-capped ceiling here; when set it overrides --total-memory-bytes' -r
612
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
613
+ error\t''
614
+ warn\t''
615
+ info\t''
616
+ debug\t''
617
+ trace\t''"
618
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l json -d 'Print one JSON object per line instead of human-readable output'
619
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l progress -d 'Show progress even when output is piped to a file or another program'
620
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l no-progress -d 'Hide progress'
621
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
622
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -s q -l quiet -d 'Log errors only'
623
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
624
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l color -d 'Keep colors even when output is piped'
625
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -l no-color -d 'Turn colors off'
626
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand plan-extract-batch" -s h -l help -d 'Print help'
627
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -s i -l input -d 'ROM to patch. May be an archive, a disc sheet (.cue/.gdi), or a bundle' -r -F
628
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -s s -l select -d 'Pick which file to use when the ROM or a patch is inside an archive, by exact name, prefix, or glob (repeatable)' -r
629
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l target -d 'For a .cue or .gdi input, which track gets the patch. Matched like --select and must hit exactly one track' -r
630
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l filter -d 'Consider only files that look like a rom or a patch, judged by extension (repeatable, comma-separable)' -r -f -a "rom\t''
631
+ patch\t''"
632
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l patch -d 'Patch to apply. Repeat once per patch; they run in the order given' -r -F
633
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -s o -l output -d 'Where to write the patched ROM. Optional when a bundle already names the output' -r -F
634
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l bundle -d 'Follow a rom-weaver-bundle.json recipe: a file path, or an http(s) URL' -r -F
635
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l with -d 'Turn on a bundle patch the bundle leaves off by default, matched by name or file name (repeatable)' -r
636
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l without -d 'Turn off a bundle patch, matched by name or file name (repeatable)' -r
637
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l compress-format -d 'Format to compress the patched ROM into [default: from the --output extension]' -r
638
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l compress-codec -d 'Compression method to use, as codec or codec:level (repeatable, comma-separable)' -r
639
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l compress-level -d 'How hard to compress: min, very-low, low, medium, high, very-high, or max [default: max]' -r -f -a "min\t''
640
+ very-low\t''
641
+ low\t''
642
+ medium\t''
643
+ high\t''
644
+ very-high\t''
645
+ max\t''"
646
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l assume-in -d 'Take this checksum on trust instead of reading the ROM to compute it, as in crc32=1234abcd (repeatable, comma-separable)' -r
647
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l expect-in -d 'Stop unless the ROM about to be patched has this checksum, as in crc32=1234abcd (repeatable, comma-separable)' -r
648
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l patch-header -d 'Whether a patch applies to the ROM with or without its copier header: auto, keep, or strip [default: auto]' -r -f -a "keep\t''
649
+ strip\t''
650
+ auto\t''"
651
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l patch-basis -d 'Which ROM the preceding --patch was built against: auto, base, or previous [default: auto]' -r -f -a "auto\t''
652
+ base\t''
653
+ previous\t''"
654
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l output-header -d 'Whether the finished ROM keeps its copier header: auto, keep, or strip [default: auto]' -r -f -a "keep\t''
655
+ strip\t''
656
+ auto\t''"
657
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l n64-byte-order -d 'Byte order to put an N64 ROM in for each patch: auto, keep, big-endian, little-endian, or byte-swapped [default: auto]' -r -f -a "auto\t''
658
+ keep\t''
659
+ big-endian\t''
660
+ little-endian\t''
661
+ byte-swapped\t''"
662
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l expect-out -d 'Fail unless the patched ROM has this checksum, as in sha1=abc... (repeatable, comma-separable)' -r
663
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l code -d 'Game Genie or GameShark/Pro Action Replay code to bake into the ROM. Repeat for each code' -r
664
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l code-system -d 'Console the --code values are for (nes, snes, genesis, gameboy), when the ROM header does not say' -r
665
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l code-kind -d 'Which cheat scheme the --code values use: auto, game-genie, or gameshark/par' -r
666
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l emit-bundle -d 'Also write a rom-weaver-bundle.json recording this run, so someone else can repeat it' -r -F
667
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -s j -l threads -d 'How many threads to use at most. auto uses every core; a format may still use fewer' -r
668
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
669
+ error\t''
670
+ warn\t''
671
+ info\t''
672
+ debug\t''
673
+ trace\t''"
674
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l no-extract -d 'Do not look inside archives; treat the input and every patch as raw files'
675
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l no-ignore -d 'Also consider files normally skipped inside archives: readmes, images, checksum sidecars, and OS clutter such as .DS_Store'
676
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l no-compress -d 'Write a plain ROM instead of compressing the result'
677
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l repair-checksum -d 'Recompute the ROM\'s internal header checksum afterwards, so the console does not reject it (SNES, NES, GB, GBA, Mega Drive, SMS, N64, NDS)'
678
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l ignore-checksum-validation -d 'Apply the patch even when its own checksums do not match. Can produce a broken ROM'
679
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l tui -d 'Ask for each patch\'s name, version, and author, then apply and write a bundle. Needs a terminal'
680
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l json -d 'Print one JSON object per line instead of human-readable output'
681
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l progress -d 'Show progress even when output is piped to a file or another program'
682
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l no-progress -d 'Hide progress'
683
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
684
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -s q -l quiet -d 'Log errors only'
685
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
686
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l color -d 'Keep colors even when output is piped'
687
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -l no-color -d 'Turn colors off'
688
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand weave" -s h -l help -d 'Print help (see more with \'--help\')'
689
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -l log-level -d 'How much rom-weaver logs to stderr. Separate from the normal output [default: off]' -r -f -a "off\t''
690
+ error\t''
691
+ warn\t''
692
+ info\t''
693
+ debug\t''
694
+ trace\t''"
695
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -l json -d 'Print one JSON object per line instead of human-readable output'
696
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -l progress -d 'Show progress even when output is piped to a file or another program'
697
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -l no-progress -d 'Hide progress'
698
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -s v -l verbose -d 'Log more: -v for info, -vv for debug, -vvv for trace'
699
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -s q -l quiet -d 'Log errors only'
700
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -l dep-trace -d 'Also log trace output from bundled libraries (for bug reports)'
701
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -l color -d 'Keep colors even when output is piped'
702
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -l no-color -d 'Turn colors off'
703
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand completions" -s h -l help -d 'Print help (see more with \'--help\')'
704
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "probe" -d 'Identify a file: its format, its platform, and any header it carries'
705
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "extract" -d 'Unpack an archive or disc image'
706
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "checksum" -d 'Compute checksums for a file, or for a ROM inside an archive'
707
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "ingest" -d 'Sort a file into ROMs and patches, unpacking and hashing along the way'
708
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "compress" -d 'Pack files into an archive or a compressed disc image'
709
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "trim" -d 'Cut the padding off a ROM, or put it back'
710
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "patch" -d 'Apply, create, or check ROM patches'
711
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "bundle" -d 'Build and read rom-weaver-bundle.json patch recipes'
712
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "tools" -d 'One-off recovery tools'
713
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "plan-extract-batch" -d 'Plan a memory-/thread-aware concurrent extraction schedule from per-job source sizes (no I/O)'
714
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "weave" -d 'Apply one or more patches to a ROM, in order (same as `patch apply`)'
715
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "completions" -d 'Print a tab-completion script for your shell'
716
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and not __fish_seen_subcommand_from probe extract checksum ingest compress trim patch bundle tools plan-extract-batch weave completions help" -f -a "help" -d 'Print this message or the help of the given subcommand(s)'
717
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and __fish_seen_subcommand_from patch" -f -a "apply" -d 'Apply one or more patches to a ROM, in order'
718
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and __fish_seen_subcommand_from patch" -f -a "validate" -d 'Check that patches would apply cleanly, without writing anything'
719
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and __fish_seen_subcommand_from patch" -f -a "create" -d 'Build a patch from an original ROM and a changed one'
720
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and __fish_seen_subcommand_from bundle" -f -a "create" -d 'Write a rom-weaver-bundle.json recipe from local ROM and patch files'
721
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and __fish_seen_subcommand_from bundle" -f -a "parse" -d 'Read a rom-weaver-bundle.json recipe and report what it points at'
722
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and __fish_seen_subcommand_from bundle" -f -a "schema" -d 'Print the rom-weaver-bundle.json JSON Schema, for editors and hand-authoring'
723
+ complete -c rom-weaver -n "__fish_rom_weaver_using_subcommand help; and __fish_seen_subcommand_from tools" -f -a "ppf-undo" -d 'Undo a PPF3 patch, using the undo data stored inside it'