mirror of
https://github.com/wader/fq.git
synced 2024-12-29 00:22:38 +03:00
f4480c6fe5
interp: Refactor format help and also include options interp: Add -o name=@path to load file content as value (not documented yet, might change) interp,decode: Expose decode out value as _out (might change) interp: Refactor foramts.jq into format_{decode,func,include}.jq interp: Refactor torepr into _format_func for generic format function overloading interp: Refactor -o options parsing to be more generic and collect unknowns options to be used as format options decode of decode alises func for format overloaded functions include for format specific jq functions (also _help, torepr etc) flac_frame: Add bits_per_sample option mp3: Add max_unique_header_config and max_sync_seek options mp4: Add decode_samples and allow_truncate options avc_au: Has length_size option hevc_au: Has length_size option aac_frame: Has object_typee option doc: Rewrite format doc generation, less hack more jq
36 lines
949 B
Plaintext
36 lines
949 B
Plaintext
# read by jq-lsp to add additional builtins
|
|
def _can_display: empty;
|
|
def _decode($format; $opts): empty;
|
|
def _display($opts): empty;
|
|
def _eval($expr; $filename): empty;
|
|
def _eval($expr): empty;
|
|
def _extkeys: empty;
|
|
def _exttype: empty;
|
|
def _format_func($format; $func): empty;
|
|
def _global_state: empty;
|
|
def _global_state($v): empty;
|
|
def _hexdump($opts): empty;
|
|
def _is_completing: empty;
|
|
def _match_binary($regexp; $flags): empty;
|
|
def _match_binary($regexp): empty;
|
|
def _print_color_json($opts): empty;
|
|
def _query_fromstring: empty;
|
|
def _query_tostring: empty;
|
|
def _readline: empty;
|
|
def _readline($opts): empty;
|
|
def _registry: empty;
|
|
def _stderr: empty;
|
|
def _stderr($n): empty;
|
|
def _stdin: empty;
|
|
def _stdin($n): empty;
|
|
def _stdout: empty;
|
|
def _stdout($n): empty;
|
|
def _tobits($bits; $is_range; $pad): empty;
|
|
def _tovalue: empty;
|
|
def _tovalue($opts): empty;
|
|
def base64: empty;
|
|
def format: empty;
|
|
def open: empty;
|
|
def scope: empty;
|
|
def torepr: empty;
|