ijq(1) General Commands Manual ijq(1)

ijq - interactive jq

ijq [-cnsrjaRMCSV] [-f file] [filter] [files ...]

ijq is a near drop-in replacement for jq that allows you to interactively see the results of your filter as you construct it.

ijq contains two panes and an input field: the left pane is the original, unmodified input data and the right pane contains the filtered output. When you are finished, press Return or Ctrl-C to exit. The filtered output will be written to standard output and the filter itself will be written to standard error.

ijq maintains a history of used filters unless disabled via history-file in the config file. Delete all text in the filter field to browse any available history.

If files is omitted then ijq reads data from standard input.

All of the options mirror their counterparts in jq. The options are:

-c

Use compact instead of pretty-printed output.

-n

Don't read any input. Useful for using ijq as a calculator or to construct JSON data from scratch.

-s

Read all input into a single array and apply the given filter to it.

-r

If the filter output is a string it will be written directly to standard output rather than being formatted as a JSON string with quotes. Useful for using ijq in a pipeline with other programs that expect normal string input.

-j

Implies -r and outputs without a trailing newline after each result.

-a

Output strings by using only ASCII characters and escape sequences.

-R

Don't parse the input as JSON, instead passing each line of input to the filter as a string. If combined with -s then the entire input is passed to the filter as a single long string.

-M

Disable colored output.

-C

Force colored output.

-S

Output the fields of each object with the fields in sorted order.

-f file

Read the filter from file. When this option is used, all positional arguments (if any) are interpreted as input files.

ijq reads configuration from $XDG_CONFIG_HOME/ijq/config. If $XDG_CONFIG_HOME is not set, then the fallback path is ~/.config/ijq/config.

The file format is scfg. All settings are optional. If a setting is present both in the config file and on the command line, the command-line value takes precedence.

history-file file

Path to the history file. If set to '' then history is disabled.

jq-bin file

Name of or path to the jq binary to use.

hide-input-pane bool

If true, start with the input (left) viewing pane hidden.

keymaps

Section containing key bindings. Any entry not set keeps its built-in default value.

Bindings are written as key names (Ctrl+N, Shift+Up, Return) or single runes (u, G). + and - can both be used between modifiers and key names, for example Ctrl+N and Ctrl-N.

When the filter input field has focus, printable runes are always treated as text input. To bind a global command while editing the filter, use a non-printable key or a modifier combination.

Available entries are: submit-filter, move-down, move-up, page-down, line-start, line-end, half-page-up, half-page-down, filter-cursor-right, filter-cursor-left, focus-input-pane-up, focus-input-pane-left, focus-output-pane, focus-filter-input, next-focus, previous-focus, toggle-input-pane, save-filter-history, toggle-menu, textview-page-up, textview-page-down, and textview-end.

These are the default key bindings. They can be overridden in the keymaps section of the config file.

Shift + Up, Shift + Left

Focus the input (left) viewing pane.

Shift + Right

Focus the output (right) viewing pane.

Shift + Down

Focus the text input field.

Tab

When the text input field has focus, navigate between the autocompletion list. When one of the viewing panes has focus, toggle between the different views.

Shift-Tab

Like Tab, but moves in the opposite direction.

Ctrl-A

When the text input field has focus, move the cursor to the beginning of the input. When one of the viewing panes has focus, set the column offset to 0.

Ctrl-E

When the text input field has focus, move the cursor to the end of the input. When one of the viewing panes has focus, set the column offset to view the longest visible line.

Ctrl-F

When the text input field has focus, move the cursor one character forward. When one of the viewing panes has focus, scroll down one page.

Ctrl-B

When the text input field has focus, move the cursor one character backward. When one of the viewing panes has focus, scroll up one page.

Ctrl-D

When the text input field has focus, delete the character under the cursor. When one of the viewing panes has focus, scroll down one half page.

Ctrl-U

When the text input field has focus, delete all of the text from the cursor to the beginning of the field. When one of the viewing panes has focus, scroll up one half page.

Ctrl-O

Toggle visibility of the input (left) viewing pane.

Ctrl-S

Save the current filter to history and show a confirmation popup.

Ctrl-/, Ctrl-?, Ctrl-_

Open or close the overlay menu.

Space

When the overlay root menu is open, activate the selected menu entry. When the Configure subview is open, toggle the selected option.

Enter

When the Configure subview is open, toggle the selected option. When the Manage history subview is open, apply the selected history entry to the filter and close the overlay.

x

When the Manage history subview is open, delete the selected history entry after confirmation.

/

When the Manage history subview is open, open a filter input for history entries.

Esc, Ctrl-C, q

When overlay is open, go back to the root menu or close overlay.

u, d, f, b

When one of the viewing panes has focus, scroll a half/full page up/down.

Left, Down, Up, Right h, j, k, l

When one of the viewing panes has focus, move the view left/down/up/right.

Return

Close ijq. Write the contents of the output pane to stdout and the current input filter to stderr. The current input filter is also saved to the history file.

Ctrl-C

When overlay is open, close overlay. Otherwise, exit ijq immediately, discarding all state.

See https://asciinema.org/a/496932 for a demo.

jq(1)

Gregory Anders <greg@gpanders.com>

2026-03-04