You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Started using this tool recently and wanted to say that I love it; great work and thank you for building this! 😊
Description
Have jnv behave similarly to fzf where I could do something like:
cat my_file.json | jnv | <some cli tool> - and the output from my jq query would be written to stdout.
Essentially either via some keybinding or via an arguement (e.g.: jnv --write-to-stdout) would write the output to standard out.
I noticed there is an existing issue mentioning copying the selected output; having it write to stdout would (in a way) achieve the same outcome as user could cat my_file.json | jnv | <some cli tool that copies to clipboard; e.g. pbcopy
Question (Contribution?)
I was wondering how much of a lift this would be; I haven't expored the code base yet and am not familiar with the rust cli/tui ecosystem. I'd be happy to try working on something like this however it would be a slow process and I'd need some initial guidance/direction on how to approach this problem. I've only worked on some small toy cli tools with go + cobra + bubbletea
The text was updated successfully, but these errors were encountered:
Not sure if you want a separate issue for this or how anyone feels, but in jiq there are flags for outputting the results, the query, or both to stdout.
Not sure if you want a separate issue for this or how anyone feels, but in jiq there are flags for outputting the results, the query, or both to stdout.
Yeah this is more or less what I had in mind
Essentially either via some keybinding or via an arguement (e.g.: jnv --write-to-stdout) would write the output to standard out.
I said argument here but meant flag (as in the example)
I`m hoping to work on this sometime in the next month or so. Finishing up a few other projects for now
Feature Request
Intro
Hi 👋
Started using this tool recently and wanted to say that I love it; great work and thank you for building this! 😊
Description
Have
jnv
behave similarly tofzf
where I could do something like:cat my_file.json | jnv | <some cli tool>
- and the output from myjq
query would be written to stdout.Essentially either via some keybinding or via an arguement (e.g.:
jnv --write-to-stdout
) would write the output to standard out.I noticed there is an existing issue mentioning copying the selected output; having it write to stdout would (in a way) achieve the same outcome as user could
cat my_file.json | jnv | <some cli tool that copies to clipboard; e.g. pbcopy
Question (Contribution?)
I was wondering how much of a lift this would be; I haven't expored the code base yet and am not familiar with the rust cli/tui ecosystem. I'd be happy to try working on something like this however it would be a slow process and I'd need some initial guidance/direction on how to approach this problem. I've only worked on some small toy cli tools with go + cobra + bubbletea
The text was updated successfully, but these errors were encountered: