Overview
| Comment: | Add fish completion for ofdns |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b13594ccc6a6481fc93c18b64e70cf94 |
| User & Date: | js on 2020-03-29 16:57:12 |
| Other Links: | manifest | tags |
Context
|
2020-04-01
| ||
| 21:41 | OFHTTPClient: Improve redirection checking logic (check-in: efbbf65df2 user: js tags: trunk) | |
|
2020-03-29
| ||
| 16:57 | Add fish completion for ofdns (check-in: b13594ccc6 user: js tags: trunk) | |
| 14:04 | OFHTTP{Client,Server}: Reject empty Content-Length (check-in: e833a8b212 user: js tags: trunk) | |
Changes
Modified utils/completions/fish/Makefile from [00dfed2b56] to [6569e87046].
1 2 3 4 5 6 7 8 9 |
DATA = objfw-compile.fish \
objfw-config.fish \
ofarc.fish \
ofhash.fish \
ofhttp.fish
include ../../../buildsys.mk
PACKAGE_NAME = fish/vendor_completions.d
| > | 1 2 3 4 5 6 7 8 9 10 |
DATA = objfw-compile.fish \
objfw-config.fish \
ofarc.fish \
ofdns.fish \
ofhash.fish \
ofhttp.fish
include ../../../buildsys.mk
PACKAGE_NAME = fish/vendor_completions.d
|
Added utils/completions/fish/ofdns.fish version [5080d1ffbb].
> > > > > | 1 2 3 4 5 |
complete -c ofdns -s c -l class -x -d 'The DNS class to query (defaults to IN)'
complete -c ofdns -s h -l help -d 'Show help'
complete -c ofdns -s s -l server -x -d 'The server to query'
complete -c ofdns -s t -l type -x \
-d 'The record type to query (defaults to ALL, can be repeated)'
|
Modified utils/completions/fish/ofhttp.fish from [da383b0d98] to [99fd9b7109].
1 2 3 4 5 6 7 | complete -c ofhttp -s b -l body -r -d 'Specify the file to send as body' complete -c ofhttp -s c -l continue -d 'Continue download of existing file' complete -c ofhttp -s f -l force -d 'Force / overwrite existing file' complete -c ofhttp -s h -l help -d 'Show help' complete -c ofhttp -s H -l header -x -d 'Add a header (e.g. X-Foo:Bar)' complete -c ofhttp -s m -l method -x -d 'Set the method of the HTTP request' complete -c ofhttp -s o -l output -r -d 'Specify output file name' | > | 1 2 3 4 5 6 7 8 | complete -c ofhttp -x complete -c ofhttp -s b -l body -r -d 'Specify the file to send as body' complete -c ofhttp -s c -l continue -d 'Continue download of existing file' complete -c ofhttp -s f -l force -d 'Force / overwrite existing file' complete -c ofhttp -s h -l help -d 'Show help' complete -c ofhttp -s H -l header -x -d 'Add a header (e.g. X-Foo:Bar)' complete -c ofhttp -s m -l method -x -d 'Set the method of the HTTP request' complete -c ofhttp -s o -l output -r -d 'Specify output file name' |
| ︙ | ︙ |