Mattias Wadman
Mattias Wadman
Seems very related https://github.com/rust-lang/rust/issues/44322
gorilla/sessions 1.4.0 requires go 1.23, maybe wait a bit?
Hi there is a bit more active fork at https://github.com/ergochat/readline, is it reproducible with that?
Hey! So support --extractor-args? —cookies seems to be used also but is already supported. Will have a look later but feel free to send a PR
Tried to minimize it down a bit: ```sh $ jaq -n '1e20/2 | floor, trunc' 9223372036854775807 5e19 $ jq -n '1e20/2 | floor, trunc' 5e+19 5e+19 $ gojq -n '1e20/2...
Just a heads up: Don't confuse jq's streaming functionality, to read partial JSON values (the thing you linked) and input streaming, to read many full but separate JSON values (ex:...
This should probably somehow use gojq's tokenized somehow instead hmm
@Freed-Wu can you test this draft PR? works somewhat in vscode but would be good with some input from other editors. it also changes the function signature to include argument...
Hey! that would be nice. [jq-lsp](https://github.com/wader/jq-lsp/tree/master/gojqparser) uses a modified version of gojq's parser to keep track of token positions, might be a start. To get positions for runtime errors i...
No good ideas really, i would guess some kind of location info needs to be tracked on the stack during execution? maybe @itchyny has some ideas? looking at the codeinfo...