Skip to content

Commit 907d794

Browse files
authored
Merge pull request #81 from ynqa/release/v0.6.0
Release v0.6.0
2 parents 774f8b5 + 7cf59d2 commit 907d794

File tree

3 files changed

+132
-27
lines changed

3 files changed

+132
-27
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jnv"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["ynqa <un.pensiero.vano@gmail.com>"]
55
edition = "2021"
66
description = "JSON navigator and interactive filter leveraging jq"

README.md

+130-25
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<img alt="Text describing the image" src="assets/jnv-light.svg">
44
</picture>
55

6-
76
[![ci](https://github.com/ynqa/jnv/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ynqa/jnv/actions/workflows/ci.yml)
87

98
*jnv* is designed for navigating JSON,
@@ -19,23 +18,16 @@ and [jiq](https://github.com/fiatjaf/jiq).
1918
- Interactive JSON viewer and `jq` filter editor
2019
- Syntax highlighting for JSON
2120
- Use [jaq](https://github.com/01mf02/jaq) to apply `jq` filter
22-
- This eliminates the need for users to prepare `jq` on their own.
23-
24-
> [!IMPORTANT]
25-
> Starting from v0.3.0, the transition from libjq Rust binding
26-
> [j9](https://github.com/ynqa/j9) to jq clone
27-
> [jaq](https://github.com/01mf02/jaq) was made.
28-
>
29-
> This change eliminated the need to manage C-related dependencies
30-
> that include external tools like autoconf, thus simplifying the build process.
31-
> However, please note that some filters are not yet supported by jaq.
32-
> For more details, refer to GitHub issue
33-
> [#24](https://github.com/ynqa/jnv/issues/24).
34-
>
35-
> Please continue to provide feedback regarding this transition.
36-
21+
- This eliminates the need for users to prepare `jq` on their own
22+
- Configurable features via TOML configuration
23+
- Toggle hint message display
24+
- Adjust UI reactivity (debounce times and animation speed)
25+
- Editor appearance and behavior
26+
- JSON viewer styling
27+
- Adjust completion feature display and behavior
28+
- Keybinds
3729
- Capable of accommodating various format
38-
- Input: File, Stdin
30+
- Input: File, stdin
3931
- Data: A JSON or multiple JSON structures
4032
that can be deserialized with
4133
[StreamDeserializer](https://docs.rs/serde_json/latest/serde_json/struct.StreamDeserializer.html),
@@ -49,6 +41,8 @@ and [jiq](https://github.com/fiatjaf/jiq).
4941

5042
## Installation
5143

44+
[![Packaging status](https://repology.org/badge/vertical-allrepos/jnv.svg)](https://repology.org/project/jnv/versions)
45+
5246
### Homebrew
5347

5448
See [here](https://formulae.brew.sh/formula/jnv) for more info.
@@ -169,7 +163,7 @@ jnv data.json
169163
## Usage
170164

171165
```bash
172-
SON navigator and interactive filter leveraging jq
166+
JSON navigator and interactive filter leveraging jq
173167

174168
Usage: jnv [OPTIONS] [INPUT]
175169

@@ -184,14 +178,125 @@ Arguments:
184178
[INPUT] Optional path to a JSON file. If not provided or if "-" is specified, reads from standard input
185179

186180
Options:
187-
-e, --edit-mode <EDIT_MODE> Edit mode for the interface ('insert' or 'overwrite'). [default: insert]
188-
-i, --indent <INDENT> Number of spaces used for indentation in the visualized data. [default: 2]
189-
-n, --no-hint Disables the display of hints.
190-
--max-streams <MAX_STREAMS> Maximum number of JSON streams to display
191-
--suggestions <SUGGESTIONS> Number of autocomplete suggestions to show [default: 3]
192-
-h, --help Print help (see more with '--help')
193-
-V, --version Print version
181+
-c, --config <CONFIG_FILE> Path to the configuration file.
182+
--default-filter <DEFAULT_FILTER> Default jq filter to apply to the input data
183+
-h, --help Print help (see more with '--help')
184+
-V, --version Print version
194185
```
195186
187+
## Configuration
188+
189+
jnv uses a TOML format configuration file to customize various features.
190+
The configuration file is loaded in the following order of priority:
191+
192+
1. Path specified on the command line (`-c` or `--config` option)
193+
2. Default configuration file path
194+
195+
### Default Configuration File Location
196+
197+
Following the `dirs` crate,
198+
the default configuration file location for each platform is as follows:
199+
200+
- **Linux**: `~/.config/jnv/config.toml`
201+
- **macOS**: `~/Library/Application Support/jnv/config.toml`
202+
- **Windows**: `C:\Users\{Username}\AppData\Roaming\jnv\config.toml`
203+
204+
If the configuration file does not exist,
205+
it will be automatically created on first run.
206+
207+
### Configuration Options
208+
209+
The following settings are available in `config.toml`:
210+
211+
```toml
212+
# Whether to hide the hint message
213+
no_hint = false
214+
215+
# Editor settings
216+
[editor]
217+
# Editor mode ("Insert" or "Overwrite")
218+
mode = "Insert"
219+
# Word break characters
220+
word_break_chars = [".", "|", "(", ")", "[", "]"]
221+
222+
# Theme when editor is focused
223+
[editor.theme_on_focus]
224+
prefix = "❯❯ "
225+
prefix_style = { foreground = "blue" }
226+
active_char_style = { background = "magenta" }
227+
inactive_char_style = {}
228+
229+
# Theme when editor is not focused
230+
[editor.theme_on_defocus]
231+
prefix = ""
232+
prefix_style = { foreground = "blue", attributes = ["Dim"] }
233+
active_char_style = { attributes = ["Dim"] }
234+
inactive_char_style = { attributes = ["Dim"] }
235+
236+
# JSON display settings
237+
[json]
238+
# Maximum number of JSON objects to read from stream
239+
# max_streams =
240+
241+
# JSON theme settings
242+
[json.theme]
243+
indent = 2
244+
curly_brackets_style = { attributes = ["Bold"] }
245+
square_brackets_style = { attributes = ["Bold"] }
246+
key_style = { foreground = "cyan" }
247+
string_value_style = { foreground = "green" }
248+
number_value_style = {}
249+
boolean_value_style = {}
250+
null_value_style = { foreground = "grey" }
251+
252+
# Completion feature settings
253+
[completion]
254+
lines = 3
255+
cursor = ""
256+
active_item_style = { foreground = "grey", background = "yellow" }
257+
inactive_item_style = { foreground = "grey" }
258+
search_result_chunk_size = 100
259+
search_load_chunk_size = 50000
260+
261+
# Keybind settings
262+
[keybinds]
263+
# Application exit key
264+
exit = [{ Key = { modifiers = "CONTROL", code = { Char = "c" } } }]
265+
# Copy query to clipboard key
266+
copy_query = [{ Key = { modifiers = "CONTROL", code = { Char = "q" } } }]
267+
# Copy result to clipboard key
268+
copy_result = [{ Key = { modifiers = "CONTROL", code = { Char = "o" } } }]
269+
# Mode switch keys
270+
switch_mode = [
271+
{ Key = { code = "Down", modifiers = "SHIFT" } },
272+
{ Key = { code = "Up", modifiers = "SHIFT" } }
273+
]
274+
275+
# Editor operation keybinds
276+
[keybinds.on_editor]
277+
# (Details omitted)
278+
279+
# JSON viewer keybinds
280+
[keybinds.on_json_viewer]
281+
# (Details omitted)
282+
283+
# Application reactivity settings
284+
[reactivity_control]
285+
# Delay time after query input
286+
query_debounce_duration = "600ms"
287+
# Redraw delay time after window resize
288+
resize_debounce_duration = "200ms"
289+
# Spinner animation update interval
290+
spin_duration = "300ms"
291+
```
292+
293+
For more details on configuration, please refer to [default.toml](./default.toml)
294+
295+
> [!WARNING]
296+
> Depending on the type of terminal and environment,
297+
> characters and styles may not be displayed properly.
298+
> Specific key bindings and decorative characters may not
299+
> display or function correctly in certain terminal emulators.
300+
196301
## Stargazers over time
197302
[![Stargazers over time](https://starchart.cc/ynqa/jnv.svg?variant=adaptive)](https://starchart.cc/ynqa/jnv)

0 commit comments

Comments
 (0)