3
3
<img alt =" Text describing the image " src =" assets/jnv-light.svg " >
4
4
</picture >
5
5
6
-
7
6
[ ![ ci] ( https://github.com/ynqa/jnv/actions/workflows/ci.yml/badge.svg?branch=main )] ( https://github.com/ynqa/jnv/actions/workflows/ci.yml )
8
7
9
8
* jnv* is designed for navigating JSON,
@@ -19,23 +18,16 @@ and [jiq](https://github.com/fiatjaf/jiq).
19
18
- Interactive JSON viewer and ` jq ` filter editor
20
19
- Syntax highlighting for JSON
21
20
- 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
37
29
- Capable of accommodating various format
38
- - Input: File, Stdin
30
+ - Input: File, stdin
39
31
- Data: A JSON or multiple JSON structures
40
32
that can be deserialized with
41
33
[ StreamDeserializer] ( https://docs.rs/serde_json/latest/serde_json/struct.StreamDeserializer.html ) ,
@@ -49,6 +41,8 @@ and [jiq](https://github.com/fiatjaf/jiq).
49
41
50
42
## Installation
51
43
44
+ [ ![ Packaging status] ( https://repology.org/badge/vertical-allrepos/jnv.svg )] ( https://repology.org/project/jnv/versions )
45
+
52
46
### Homebrew
53
47
54
48
See [ here] ( https://formulae.brew.sh/formula/jnv ) for more info.
@@ -169,7 +163,7 @@ jnv data.json
169
163
## Usage
170
164
171
165
``` bash
172
- SON navigator and interactive filter leveraging jq
166
+ JSON navigator and interactive filter leveraging jq
173
167
174
168
Usage: jnv [OPTIONS] [INPUT]
175
169
@@ -184,14 +178,125 @@ Arguments:
184
178
[INPUT] Optional path to a JSON file. If not provided or if " -" is specified, reads from standard input
185
179
186
180
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
194
185
` ` `
195
186
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:\U sers\{ Username}\A ppData\R oaming\j nv\c onfig.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
+
196
301
# # Stargazers over time
197
302
[! [Stargazers over time](https://starchart.cc/ynqa/jnv.svg? variant=adaptive)](https://starchart.cc/ynqa/jnv)
0 commit comments