├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── development ├── ARCHITECTURE.md ├── DEPLOYMENT.md ├── DEVELOPMENT_GUIDE.md ├── JQ_FUNCTION_TOOLTIP_RESEARCH.md ├── README.md ├── TESTING.md └── subsystems │ ├── AUTOCOMPLETE.md │ ├── EVENT_SYSTEM.md │ ├── HISTORY.md │ ├── QUERY_EXECUTION.md │ ├── RENDERING.md │ ├── SYNTAX_HIGHLIGHTING.md │ └── VIM_EDITOR.md ├── dist-workspace.toml ├── proptest-regressions ├── clipboard │ └── events.txt └── tooltip │ └── detector.txt ├── src ├── app.rs ├── app │ ├── events.rs │ ├── events │ │ └── global.rs │ ├── render.rs │ ├── snapshots │ │ ├── jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_mixed_types.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_selected_item_with_signature.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_with_function_signatures.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_error_overlay.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_help_popup.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_history_popup.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_history_popup_no_matches.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_history_popup_with_search.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_initial_ui_empty_query.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_input_border_hint_disabled_on_function.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_input_border_no_hint_disabled_no_function.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_input_border_no_hint_enabled.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_results_pane_with_success_focused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_results_pane_with_success_unfocused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_results_pane_with_syntax_error_focused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_results_pane_with_syntax_error_unfocused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_stats_bar_array_focused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_stats_bar_error_shows_last_stats.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_stats_bar_object_unfocused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_tooltip_and_autocomplete_both_visible.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_tooltip_dismiss_hint.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_tooltip_popup_positioning.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_tooltip_popup_with_all_fields.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_tooltip_popup_without_tip.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_error_overlay_visible.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_input_focused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_insert_mode.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_normal_mode.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_operator_mode.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_results_focused.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_small_terminal.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_wide_terminal.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_with_array_data.snap │ │ ├── jiq__app__render__snapshot_tests__snapshot_ui_with_error.snap │ │ └── jiq__app__render__snapshot_tests__snapshot_ui_with_query.snap │ └── state.rs ├── autocomplete.rs ├── autocomplete │ ├── context.rs │ ├── insertion.rs │ ├── jq_functions.rs │ ├── result_analyzer.rs │ └── state.rs ├── clipboard.rs ├── clipboard │ ├── backend.rs │ ├── events.rs │ ├── osc52.rs │ └── system.rs ├── config.rs ├── config │ └── types.rs ├── editor.rs ├── editor │ ├── events.rs │ └── mode.rs ├── error.rs ├── help.rs ├── help │ ├── content.rs │ └── state.rs ├── history.rs ├── history │ ├── events.rs │ ├── matcher.rs │ ├── state.rs │ └── storage.rs ├── input.rs ├── input │ ├── reader.rs │ └── state.rs ├── main.rs ├── notification.rs ├── notification │ ├── render.rs │ ├── snapshots │ │ ├── jiq__notification__render__tests__snapshot_notification_no_active.snap │ │ ├── jiq__notification__render__tests__snapshot_notification_overlay.snap │ │ ├── jiq__notification__render__tests__snapshot_notification_styled.snap │ │ └── jiq__notification__render__tests__snapshot_notification_top_right_position.snap │ └── state.rs ├── query.rs ├── query │ ├── debouncer.rs │ ├── executor.rs │ └── state.rs ├── results.rs ├── results │ └── events.rs ├── scroll.rs ├── snapshots │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_array_iteration.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_common_functions.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_empty_input.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_identity_filter.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_if_then_else.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_keywords.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_keywords_inside_string.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_nested_field.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_number_literals.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_object_construction.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_operators.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_pipe_chain.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_reduce.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_simple_field.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_string_literals.snap │ ├── jiq__syntax_highlight__snapshot_tests__snapshot_unterminated_string.snap │ └── jiq__syntax_highlight__snapshot_tests__snapshot_whitespace_handling.snap ├── stats.rs ├── stats │ ├── parser.rs │ ├── state.rs │ └── types.rs ├── syntax_highlight.rs ├── syntax_highlight │ ├── overlay.rs │ └── snapshots │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_across_spans.snap │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_at_end.snap │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_at_start.snap │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_empty_spans.snap │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_in_middle.snap │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_beyond_text.snap │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_no_scroll.snap │ │ ├── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_unicode.snap │ │ └── jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_with_scroll.snap ├── tooltip.rs ├── tooltip │ ├── content.rs │ ├── detector.rs │ ├── events.rs │ └── state.rs ├── widgets.rs └── widgets │ └── popup.rs └── tests ├── fixtures ├── api-response.json ├── array.json ├── complex-ecommerce.json ├── deep-organization.json ├── invalid.json ├── nested.json └── simple.json └── integration_tests.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/README.md -------------------------------------------------------------------------------- /development/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/ARCHITECTURE.md -------------------------------------------------------------------------------- /development/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/DEPLOYMENT.md -------------------------------------------------------------------------------- /development/DEVELOPMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/DEVELOPMENT_GUIDE.md -------------------------------------------------------------------------------- /development/JQ_FUNCTION_TOOLTIP_RESEARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/JQ_FUNCTION_TOOLTIP_RESEARCH.md -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/README.md -------------------------------------------------------------------------------- /development/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/TESTING.md -------------------------------------------------------------------------------- /development/subsystems/AUTOCOMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/subsystems/AUTOCOMPLETE.md -------------------------------------------------------------------------------- /development/subsystems/EVENT_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/subsystems/EVENT_SYSTEM.md -------------------------------------------------------------------------------- /development/subsystems/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/subsystems/HISTORY.md -------------------------------------------------------------------------------- /development/subsystems/QUERY_EXECUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/subsystems/QUERY_EXECUTION.md -------------------------------------------------------------------------------- /development/subsystems/RENDERING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/subsystems/RENDERING.md -------------------------------------------------------------------------------- /development/subsystems/SYNTAX_HIGHLIGHTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/subsystems/SYNTAX_HIGHLIGHTING.md -------------------------------------------------------------------------------- /development/subsystems/VIM_EDITOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/development/subsystems/VIM_EDITOR.md -------------------------------------------------------------------------------- /dist-workspace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/dist-workspace.toml -------------------------------------------------------------------------------- /proptest-regressions/clipboard/events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/proptest-regressions/clipboard/events.txt -------------------------------------------------------------------------------- /proptest-regressions/tooltip/detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/proptest-regressions/tooltip/detector.txt -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/app/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/events.rs -------------------------------------------------------------------------------- /src/app/events/global.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/events/global.rs -------------------------------------------------------------------------------- /src/app/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/render.rs -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_mixed_types.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_mixed_types.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_selected_item_with_signature.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_selected_item_with_signature.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_with_function_signatures.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_autocomplete_popup_with_function_signatures.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_error_overlay.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_error_overlay.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_help_popup.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_help_popup.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_history_popup.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_history_popup.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_history_popup_no_matches.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_history_popup_no_matches.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_history_popup_with_search.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_history_popup_with_search.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_initial_ui_empty_query.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_initial_ui_empty_query.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_input_border_hint_disabled_on_function.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_input_border_hint_disabled_on_function.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_input_border_no_hint_disabled_no_function.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_input_border_no_hint_disabled_no_function.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_input_border_no_hint_enabled.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_input_border_no_hint_enabled.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_success_focused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_success_focused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_success_unfocused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_success_unfocused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_syntax_error_focused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_syntax_error_focused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_syntax_error_unfocused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_results_pane_with_syntax_error_unfocused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_stats_bar_array_focused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_stats_bar_array_focused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_stats_bar_error_shows_last_stats.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_stats_bar_error_shows_last_stats.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_stats_bar_object_unfocused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_stats_bar_object_unfocused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_and_autocomplete_both_visible.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_and_autocomplete_both_visible.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_dismiss_hint.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_dismiss_hint.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_popup_positioning.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_popup_positioning.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_popup_with_all_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_popup_with_all_fields.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_popup_without_tip.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_tooltip_popup_without_tip.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_error_overlay_visible.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_error_overlay_visible.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_input_focused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_input_focused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_insert_mode.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_insert_mode.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_normal_mode.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_normal_mode.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_operator_mode.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_operator_mode.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_results_focused.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_results_focused.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_small_terminal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_small_terminal.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_wide_terminal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_wide_terminal.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_with_array_data.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_with_array_data.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_with_error.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_with_error.snap -------------------------------------------------------------------------------- /src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_with_query.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/snapshots/jiq__app__render__snapshot_tests__snapshot_ui_with_query.snap -------------------------------------------------------------------------------- /src/app/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/app/state.rs -------------------------------------------------------------------------------- /src/autocomplete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/autocomplete.rs -------------------------------------------------------------------------------- /src/autocomplete/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/autocomplete/context.rs -------------------------------------------------------------------------------- /src/autocomplete/insertion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/autocomplete/insertion.rs -------------------------------------------------------------------------------- /src/autocomplete/jq_functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/autocomplete/jq_functions.rs -------------------------------------------------------------------------------- /src/autocomplete/result_analyzer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/autocomplete/result_analyzer.rs -------------------------------------------------------------------------------- /src/autocomplete/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/autocomplete/state.rs -------------------------------------------------------------------------------- /src/clipboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/clipboard.rs -------------------------------------------------------------------------------- /src/clipboard/backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/clipboard/backend.rs -------------------------------------------------------------------------------- /src/clipboard/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/clipboard/events.rs -------------------------------------------------------------------------------- /src/clipboard/osc52.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/clipboard/osc52.rs -------------------------------------------------------------------------------- /src/clipboard/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/clipboard/system.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/config/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/config/types.rs -------------------------------------------------------------------------------- /src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/editor.rs -------------------------------------------------------------------------------- /src/editor/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/editor/events.rs -------------------------------------------------------------------------------- /src/editor/mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/editor/mode.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/help.rs -------------------------------------------------------------------------------- /src/help/content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/help/content.rs -------------------------------------------------------------------------------- /src/help/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/help/state.rs -------------------------------------------------------------------------------- /src/history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/history.rs -------------------------------------------------------------------------------- /src/history/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/history/events.rs -------------------------------------------------------------------------------- /src/history/matcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/history/matcher.rs -------------------------------------------------------------------------------- /src/history/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/history/state.rs -------------------------------------------------------------------------------- /src/history/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/history/storage.rs -------------------------------------------------------------------------------- /src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/input.rs -------------------------------------------------------------------------------- /src/input/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/input/reader.rs -------------------------------------------------------------------------------- /src/input/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/input/state.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/notification.rs -------------------------------------------------------------------------------- /src/notification/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/notification/render.rs -------------------------------------------------------------------------------- /src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_no_active.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_no_active.snap -------------------------------------------------------------------------------- /src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_overlay.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_overlay.snap -------------------------------------------------------------------------------- /src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_styled.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_styled.snap -------------------------------------------------------------------------------- /src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_top_right_position.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/notification/snapshots/jiq__notification__render__tests__snapshot_notification_top_right_position.snap -------------------------------------------------------------------------------- /src/notification/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/notification/state.rs -------------------------------------------------------------------------------- /src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/query.rs -------------------------------------------------------------------------------- /src/query/debouncer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/query/debouncer.rs -------------------------------------------------------------------------------- /src/query/executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/query/executor.rs -------------------------------------------------------------------------------- /src/query/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/query/state.rs -------------------------------------------------------------------------------- /src/results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/results.rs -------------------------------------------------------------------------------- /src/results/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/results/events.rs -------------------------------------------------------------------------------- /src/scroll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/scroll.rs -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_array_iteration.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_array_iteration.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_common_functions.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_common_functions.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_empty_input.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_empty_input.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_identity_filter.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_identity_filter.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_if_then_else.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_if_then_else.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_keywords.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_keywords.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_keywords_inside_string.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_keywords_inside_string.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_nested_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_nested_field.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_number_literals.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_number_literals.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_object_construction.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_object_construction.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_operators.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_operators.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_pipe_chain.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_pipe_chain.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_reduce.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_reduce.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_simple_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_simple_field.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_string_literals.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_string_literals.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_unterminated_string.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_unterminated_string.snap -------------------------------------------------------------------------------- /src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_whitespace_handling.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/snapshots/jiq__syntax_highlight__snapshot_tests__snapshot_whitespace_handling.snap -------------------------------------------------------------------------------- /src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/stats.rs -------------------------------------------------------------------------------- /src/stats/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/stats/parser.rs -------------------------------------------------------------------------------- /src/stats/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/stats/state.rs -------------------------------------------------------------------------------- /src/stats/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/stats/types.rs -------------------------------------------------------------------------------- /src/syntax_highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight.rs -------------------------------------------------------------------------------- /src/syntax_highlight/overlay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/overlay.rs -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_across_spans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_across_spans.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_at_end.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_at_end.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_at_start.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_at_start.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_empty_spans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_empty_spans.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_in_middle.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_cursor_in_middle.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_beyond_text.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_beyond_text.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_no_scroll.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_no_scroll.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_unicode.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_unicode.snap -------------------------------------------------------------------------------- /src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_with_scroll.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/syntax_highlight/snapshots/jiq__syntax_highlight__overlay__snapshot_tests__snapshot_extract_visible_with_scroll.snap -------------------------------------------------------------------------------- /src/tooltip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/tooltip.rs -------------------------------------------------------------------------------- /src/tooltip/content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/tooltip/content.rs -------------------------------------------------------------------------------- /src/tooltip/detector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/tooltip/detector.rs -------------------------------------------------------------------------------- /src/tooltip/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/tooltip/events.rs -------------------------------------------------------------------------------- /src/tooltip/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/tooltip/state.rs -------------------------------------------------------------------------------- /src/widgets.rs: -------------------------------------------------------------------------------- 1 | pub mod popup; 2 | -------------------------------------------------------------------------------- /src/widgets/popup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/src/widgets/popup.rs -------------------------------------------------------------------------------- /tests/fixtures/api-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/fixtures/api-response.json -------------------------------------------------------------------------------- /tests/fixtures/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/fixtures/array.json -------------------------------------------------------------------------------- /tests/fixtures/complex-ecommerce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/fixtures/complex-ecommerce.json -------------------------------------------------------------------------------- /tests/fixtures/deep-organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/fixtures/deep-organization.json -------------------------------------------------------------------------------- /tests/fixtures/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/fixtures/invalid.json -------------------------------------------------------------------------------- /tests/fixtures/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/fixtures/nested.json -------------------------------------------------------------------------------- /tests/fixtures/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/fixtures/simple.json -------------------------------------------------------------------------------- /tests/integration_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellicose100xp/jiq/HEAD/tests/integration_tests.rs --------------------------------------------------------------------------------