lotabout.skim/tests/snapshots
LoricAndre 776d708ede
feat: allow binding actions & more events (#1125)
* Add `start` and `load` events alongside `change`

Introduce `start` and `load` bindable events, mirroring the existing
`change` event, so `--bind start:<action>` and `--bind load:<action>`
work.

To avoid scattering magic high-F-key literals (`F(255)` for `change`),
add a `SkimEvent` enum in `binds.rs` with `Start`, `Load` and `Change`
variants that transparently convert to the reserved `KeyEvent`s used to
route them through the keymap. `parse_key` now accepts the friendly
names `start`, `load` and `change` via `SkimEvent::from_name`. The keymap
key type stays `KeyEvent`, so the public API is unchanged.

Firing:
- `change` is emitted by `on_query_changed` (now via the named variant).
- `start` fires exactly once when skim enters its event loop
  (`Skim::fire_start_event`).
- `load` fires once the reader has finished AND the freshly-read items
  have been rendered into the list, so a `load` binding acts on a
  fully-populated, stable list. It is re-armed on `reload`.

Add unit coverage for the event-name round-trip and integration tests
for `start` and `load` bindings, and document the events in
ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019QKxusGbxLxqWdYyeqrb68

* Add result/focus/zero/one events and action follow-up bindings

Extend the bindable-event set and generalise binding so that actions can
themselves be bound.

New finder events (fired from the post-draw `Event::Render` path, so a
binding sees a stable, up-to-date list):
- `result` — filtering for the current query completed
- `focus`  — the focused item changed (cursor move or result update)
- `zero`   — a completed search has no matches
- `one`    — a completed search has exactly one match

`zero`/`one` read `MatcherControl::get_num_matched()` rather than the
rendered list count, which can briefly lag the matcher.

Actions as events: any action can be bound as if it were an event, so a
follow-up chain runs after it (e.g. `reload:first`, `first:last`). This is
parsed by `parse_action_binds` into `SkimOptions::action_binds` (keyed by
`Action::name`) and applied in `handle_action`, which now wraps the
per-variant `dispatch_action`.

- Keys win: a name shared by a key and an action binds the key; use an
  `act-` prefix to target the action (`act-up:down`).
- New `skip` action suppresses the triggering action's own behaviour, so
  `act-up:skip+down` remaps the up action to down and `up:skip` disables
  the up key.

Also fixes `parse_key` so a non-numeric `f…` name (e.g. `focus`, `first`)
falls through to name/event matching instead of erroring on the function-
key branch.

Adds unit and snapshot tests and documents everything in ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019QKxusGbxLxqWdYyeqrb68

* Rename skip action to suppress and document it in the manpage

Rename the `skip` action to `suppress`, which more clearly conveys that
it cancels the triggering action's default behaviour. Add it to the
manpage actions list, noting that when bound to an action it suppresses
that action's default (so the rest of the chain runs in its place), and
when bound to a key it is equivalent to `ignore`.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019QKxusGbxLxqWdYyeqrb68

* Fire finder events from callbacks instead of the render path

Move the synthetic finder events off the per-render check:

- `focus` now rides along with `App::on_selection_changed` (via a small
  `take_focus_event` helper), firing only when the focused item actually
  changes on cursor movement.
- `load`/`result`/`zero`/`one` track async reader/matcher completion, which
  has no synchronous callback, so `App::poll_completion_events` edge-triggers
  them from the `Heartbeat` handler rather than the render path. A `Render`
  is queued just before them so a list-inspecting binding (e.g. `load:first`)
  still sees the finished results.

This removes the branching that previously ran on every render tick and
keeps the event logic out of the unrelated `dispatch_action` arms.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019QKxusGbxLxqWdYyeqrb68

* misc tweaks incl. noremap

* fixes

* docs: document new binds

* coderabbit review

* fix: address Copilot review comments on action binds

- Split `--bind` specs with top-level comma splitting in `SkimOptions::build`
  so commas inside parenthesized action arguments (e.g.
  `act-up:execute(echo a,b)`) no longer garble follow-up bindings. Reuses the
  existing `split_top_level` helper (now `pub(crate)`), matching
  `KeyMap::add_keymaps_str`.
- Correct the misleading `load` event comment in `check_reader`: the event is
  fired from `App::poll_completion_events` (the heartbeat handler), not the
  render path.
- Add a unit test covering commas inside action arguments.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Pxems1gNKKezFcxtZfURJp

* fix: harden action-trigger binds (logging, runtime bind/unbind, API surface)

Address three review findings on the action-trigger feature:

- Log dropped `--bind` specs: an unknown trigger name or an invalid
  follow-up chain in parse_action_binds is now reported via debug!
  instead of vanishing silently, matching the keymap path's behavior.
- Make the runtime `bind`/`unbind` actions manage action triggers as
  well as keys: `bind(act-up:last)` merges into action_binds and
  `unbind(act-up)` removes the trigger, with the same keys-win
  precedence as `--bind`. Trigger-name resolution is shared through a
  new binds::action_trigger_name helper.
- Narrow the new App fields (reader_done, load_event_fired,
  result_pending) to pub(crate): they are a Skim<->App coordination
  protocol, not public API.

Update the manpage (regenerated sk.1) and ARCHITECTURE.md accordingly,
and cover the new behavior with unit tests.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01TgSqqsXn1GfQRZhQWAWi7t

* fix: don't abort the event loop on an invalid if-* branch chain

`if-*` branch chains are stored unparsed by `parse_action`, so an invalid
action name only surfaces when the binding fires. `dispatch_conditional`
propagated that parse error out of `App::handle_event`, killing the whole
finder mid-session on a bind typo. Log and skip the chain instead,
matching the invalid-chain handling of `parse_action_binds`.

Also refresh the stale line numbers in the ARCHITECTURE.md
cross-reference table.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01TgSqqsXn1GfQRZhQWAWi7t

* fix: make sure to render before start in sync mode

* chore: push snaps

* fix: misc

* fix: address review comments on start event, if-* logging and docs

- skim.rs: retry the one-shot `start` event from `tick()` so a momentarily
  full bounded `event_tx` at the `start()`/`enter()` call sites can no longer
  drop it permanently. Idempotent via the `start_fired` guard.
- app.rs: log an invalid `if-*` conditional action chain at `warn!` instead of
  `debug!` so a misconfigured binding is discoverable by default.
- ARCHITECTURE.md: clarify that `Skim::check_reader` only records `reader_done`;
  `App::poll_completion_events` owns and emits `load`/`result`/`zero`/`one`.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019QKxusGbxLxqWdYyeqrb68

* chore: minor formatting

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-07-21 11:42:47 +00:00
..
ansi__ansi_flag_disabled@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_flag_disabled@color002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_flag_enabled@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_flag_enabled@color002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_flag_no_strip@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_flag_no_strip@color002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_hide_nth@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
ansi__ansi_hide_nth@color002.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
ansi__ansi_hide_nth_searchable@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
ansi__ansi_hide_nth_searchable@color002.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
ansi__ansi_matching_on_stripped_text@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_matching_on_stripped_text@003.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__ansi_matching_on_stripped_text@color002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
ansi__prompt_ansi@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
ansi__prompt_ansi@color002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
binds__bind_act_prefix@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_action_followup@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_append_and_select@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_append_and_select@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_append_and_select@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_change@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_change@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_change@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_first_last@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_first_last@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_first_last@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_first_last@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_focus@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_if_non_matched@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_if_non_matched@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_if_non_matched@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_load@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_one@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_result@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_set_header_change@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_header_change@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_header_from_empty@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_header_from_empty@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_header_to_empty@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_header_to_empty@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_preview_cmd@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_preview_cmd@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_preview_cmd@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_basic@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_basic@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_expand@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_expand@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_fields@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_fields@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_to_itself@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_to_itself@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_to_itself@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_set_query_to_itself@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_start@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_start_select_all_no_sync@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_start_select_all_sync@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_suppress@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
binds__bind_toggle_interactive@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_toggle_interactive@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_toggle_interactive_queries@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_toggle_interactive_queries@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_toggle_interactive_queries@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_toggle_interactive_queries@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_toggle_interactive_queries@005.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_top_alias@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_top_alias@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_top_alias@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
binds__bind_zero@001.snap feat: allow binding actions & more events (#1125) 2026-07-21 11:42:47 +00:00
case__case_ignore_different@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_ignore_different@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_ignore_exact@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_ignore_exact@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_ignore_lower@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_ignore_lower@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_ignore_no_match@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_ignore_no_match@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_non_ascii@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_non_ascii@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_non_ascii@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_respect_exact@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_respect_exact@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_respect_lower@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_respect_lower@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_respect_no_match@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_respect_no_match@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_smart_exact@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_smart_exact@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_smart_lower@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_smart_lower@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_smart_no_match@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
case__case_smart_no_match@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__interactive_mode_command_execution@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__interactive_mode_command_execution@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__interactive_mode_command_execution@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__unicode_input@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__unicode_input@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__unicode_input@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__unicode_input@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
defaults__vanilla.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
defaults__vanilla_basic.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
highlighting__highlight_match@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
highlighting__highlight_match@color002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
highlighting__highlight_split_match@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
highlighting__highlight_split_match@color002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
issues__issue_359_multi_regex_unicode@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
issues__issue_361_literal_space_control@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
issues__issue_361_literal_space_invert@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
issues__issue_547_null_match@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
issues__issue_547_null_match@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
issues__issue_929_double_width_chars@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
issues__issue_929_double_width_chars@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_b@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_b@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_bspace@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_bspace@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_d@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_d@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_d@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_d@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_f@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_f@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_alt_f@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_arrows@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_arrows@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_arrows@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_basic@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
keys__keys_basic@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_bspace@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_bspace@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_btab@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_btab@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_a@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_a@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_arrows@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_arrows@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_arrows@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_arrows@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_b@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_b@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_b@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_c@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_d@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_e@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_e@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_e@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_f@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_f@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_f@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_h@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_h@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_k@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_k@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_u@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_u@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_w@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_w@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_y@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_y@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_ctrl_y@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_tab@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_tab@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_tab@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_tab_empty@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_tab_empty@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys__keys_tab_empty@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_b@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_b@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_bspace@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_bspace@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_d@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_d@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_d@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_d@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_f@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_f@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_alt_f@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_arrows@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_arrows@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_arrows@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_basic@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_basic@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_bspace@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_bspace@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_btab@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_btab@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_a@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_a@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_arrows@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_arrows@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_arrows@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_arrows@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_b@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_b@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_b@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_c@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_d@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_e@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_e@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_e@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_f@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_f@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_f@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_h@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_h@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_k@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_k@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_u@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_u@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_w@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_w@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_y@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_y@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_ctrl_y@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_enter@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_tab@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_tab@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
keys_interactive__keys_interactive_tab@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
layout__layout_border@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
layout__layout_border_no_collapse@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
layout__layout_default@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
layout__layout_reverse@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
layout__layout_reverse_border@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
layout__layout_reverse_border_no_collapse@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
layout__layout_reverse_list@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
layout__layout_reverse_list_border@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
layout__layout_reverse_list_border_no_collapse@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
matcher__matcher_arinae@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
matcher__matcher_arinae_typos@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
matcher__matcher_clangd@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
matcher__matcher_default@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
matcher__matcher_frizbee@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
matcher__matcher_frizbee_typos@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
matcher__matcher_fzy@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
matcher__matcher_fzy_typos@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
matcher__matcher_skim_v2@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
mouse__mouse_selection_refreshes_preview@001.snap fix: refresh preview after mouse selection (#1095) 2026-06-26 00:36:07 +02:00
mouse__mouse_selection_refreshes_preview@002.snap fix: refresh preview after mouse selection (#1095) 2026-06-26 00:36:07 +02:00
multiline__multiline_border@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
multiline__multiline_custom_sep_colon@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_custom_sep_comma@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_cycle@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_cycle@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_cycle@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_empty_segment@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_header_lines@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_header_multiline_text@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_highlight_line@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_layout_reverse@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_layout_reverse@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_layout_reverse_border@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
multiline__multiline_layout_reverse_list@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_layout_reverse_list@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_mixed_navigation@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_mixed_navigation@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_mixed_navigation@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_multi@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_multi@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_multi@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_multi@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_no_match@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_no_sort@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_no_sort@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_nth@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_nth@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_nth@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_nth@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_pre_select_n@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_pre_select_pat@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_read0@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_read0@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_read0_three_lines@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_read0_three_lines@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_search_and_navigate@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_search_and_navigate@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_search_second_line@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_single_item@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_tabstop_1@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_tabstop_4@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_tabstop_default@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_tabstop_midline@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_tac@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_three_lines@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_with_header@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_with_nth@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_with_nth@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_wrap@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
multiline__multiline_wrap_both_lines@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_no_normalize_accented_item@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_no_normalize_accented_item@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_accented_item_unaccented_query@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_accented_item_unaccented_query@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_case_insensitive@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_case_insensitive@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_combined_chars@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_combined_chars@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_combined_chars@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_cyrillic@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_cyrillic@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_exact_match@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_exact_match@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_multiple_diacritics@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_multiple_diacritics@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_multiple_diacritics@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_negation@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_negation@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_prefix@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_prefix@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_suffix@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_suffix@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_umlauts@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_umlauts@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_umlauts@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_unaccented_item_accented_query@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
normalize__insta_normalize_unaccented_item_accented_query@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_border_default@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_double@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_heavy_double_dashed@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_heavy_quadruple_dashed@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_heavy_triple_dashed@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_light_double_dashed@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_light_quadruple_dashed@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_light_triple_dashed@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_none@001.snap feat: add border none (closes #1041) (#1044) 2026-04-10 17:44:45 +02:00
options__opt_border_plain@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_quadrant_inside@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_quadrant_outside@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_rounded@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_border_thick@001.snap feat: collapsed borders by default and --border-no-collapse flag (#1117) 2026-07-17 16:59:14 +00:00
options__opt_cycle@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_cycle@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_cycle@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_cycle_header_lines@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_cycle_header_lines@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_cycle_header_lines@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_disabled@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_disabled@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_ellipsis@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_exit_0_enter@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_inline_info@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_lines_1@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_lines_all@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_lines_inline_info@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_lines_reverse@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_lines_reverse_inline_info@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_multiline@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_only@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_reverse@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_header_reverse_inline_info@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_hide_nth_1@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hide_nth_2@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hide_nth_hscroll@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hide_nth_last@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hide_nth_multi@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hide_nth_range@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hide_nth_still_searchable@001.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hide_nth_still_searchable@002.snap feat: add --hide-nth to hide fields from display but keep them searchable (#1122) 2026-07-18 13:13:43 +00:00
options__opt_hscroll_begin@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_hscroll_end@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_hscroll_middle@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_control@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_control@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_default@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_default@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_hidden@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_inline@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_inline@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_info_inline_custom@001.snap feat: add more info variants (closes #1042) (#1048) 2026-04-11 14:12:22 +02:00
options__opt_info_inline_custom@002.snap feat: add more info variants (closes #1042) (#1048) 2026-04-11 14:12:22 +02:00
options__opt_info_inline_right@001.snap feat: add more info variants (closes #1042) (#1048) 2026-04-11 14:12:22 +02:00
options__opt_info_inline_right@002.snap feat: add more info variants (closes #1042) (#1048) 2026-04-11 14:12:22 +02:00
options__opt_info_inline_right_custom@001.snap feat: add more info variants (closes #1042) (#1048) 2026-04-11 14:12:22 +02:00
options__opt_info_inline_right_custom@002.snap feat: add more info variants (closes #1042) (#1048) 2026-04-11 14:12:22 +02:00
options__opt_info_left@001.snap feat: add 'left' and right info display modes (#1120) 2026-07-18 12:34:21 +00:00
options__opt_info_left@002.snap feat: add 'left' and right info display modes (#1120) 2026-07-18 12:34:21 +00:00
options__opt_info_right@001.snap feat: add 'left' and right info display modes (#1120) 2026-07-18 12:34:21 +00:00
options__opt_info_right@002.snap feat: add 'left' and right info display modes (#1120) 2026-07-18 12:34:21 +00:00
options__opt_inline_info@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_inline_info@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_min_query_length@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_min_query_length@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_min_query_length@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_min_query_length_interactive@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_min_query_length_interactive@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_min_query_length_interactive@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multi@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multi@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multi@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multi_selector@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multi_selector@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline_custom_sep@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline_scroll@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline_scroll@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline_scroll_incr@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline_scroll_incr@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiline_scroll_incr@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_cmd_prompt@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_cmd_query@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_combined_nth@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_combined_nth@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_combined_with_nth@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_interactive@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_layout_and_reverse@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_prompt@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_reverse@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_multiple_flags_reverse_and_layout@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_no_clear_if_empty@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_no_clear_if_empty@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_no_hscroll@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_no_info@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_no_scrollbar@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
options__opt_no_sort@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_no_sort@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_1@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_1@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_1@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_1@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_2@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_2@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_2@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_2@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_4@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_4@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_4@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_4@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_1@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_1@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_1@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_1@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_2@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_2@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_2@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_2@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_4@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_4@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_4@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_4@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_oob@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_neg_oob@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_oob@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_oob@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@005.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@006.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@007.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_closed@008.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_dec@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_dec@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_from_start@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_from_start@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_from_start@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_from_start@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_to_end@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_to_end@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_to_end@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_nth_range_to_end@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_null_delimiter_nth@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
options__opt_null_delimiter_nth@002.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
options__opt_null_delimiter_nth@003.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
options__opt_null_delimiter_with_nth@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
options__opt_pre_select_file.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
options__opt_pre_select_items@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_pre_select_n@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_pre_select_pat@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_read0@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
options__opt_replstr@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_replstr@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_scrollbar_custom_thumb@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
options__opt_scrollbar_default@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
options__opt_scrollbar_empty_string@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
options__opt_scrollbar_reverse@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
options__opt_scrollbar_scrolled@001.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
options__opt_scrollbar_scrolled@002.snap chore(deps): bump the cargo-prod group with 7 updates (#1092) 2026-06-16 22:40:19 +02:00
options__opt_scrollbar_scrolled@003.snap feat: add scrollbar 2026-04-01 13:44:52 +02:00
options__opt_scrollbar_thumb_color@color001.snap feat(theme): add a themeable scrollbar color for the item list (#1101) 2026-06-28 18:48:28 +02:00
options__opt_scrollbar_thumb_style@001.snap feat(theme): add a themeable scrollbar color for the item list (#1101) 2026-06-28 18:48:28 +02:00
options__opt_scrollbar_thumb_style@color002.snap feat(theme): add a themeable scrollbar color for the item list (#1101) 2026-06-28 18:48:28 +02:00
options__opt_select_1_enter@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_selector@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_skip_to_pattern@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_skip_to_pattern@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_skip_to_pattern@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_tabstop_1@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_tabstop_3@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_tabstop_default@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_tac@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_tac_with_header_lines@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_1@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_2@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_4@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_neg_1@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_neg_2@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_neg_4@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_oob@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_oob_4@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_preview@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_range_closed@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_range_desc@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_range_from_start@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_with_nth_range_to_end@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__opt_wrap@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
options__vanilla_basic@001.snap tests: improve coverage to 90% (#1099) 2026-06-25 19:12:49 +00:00
preview__preview_image_lenna@001.snap chore: add image tests & examples 2026-06-17 13:56:37 +02:00
preview__preview_image_missing@001.snap chore: add image tests & examples 2026-06-17 13:56:37 +02:00
preview__preview_image_navigation@001.snap chore: add image tests & examples 2026-06-17 13:56:37 +02:00
preview__preview_image_navigation@002.snap chore: add image tests & examples 2026-06-17 13:56:37 +02:00
preview__preview_image_window_down@001.snap chore: add image tests & examples 2026-06-17 13:56:37 +02:00
preview__preview_navigation@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_navigation@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_no_pty_linux@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_nowrap@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_nul_char@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_offset_expr@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_offset_fixed@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_offset_fixed_and_expr@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_plus@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_plus@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_plus@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_plus@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_plus@005.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_preserve_quotes@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_flag@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_navigation@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_navigation@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_nowrap@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_nul_char@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_offset_expr@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_offset_fixed@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_offset_fixed_and_expr@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_plus@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_plus@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_plus@003.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_plus@004.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_plus@005.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_preserve_quotes@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_window_down@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_window_left@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_window_up@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_pty__preview_pty_wrap@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_window_down@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_window_down_neg.snap feat: allow negative sizes (closes #1040) (#1043) 2026-04-10 16:17:07 +02:00
preview__preview_window_left@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_window_left_neg.snap feat: allow negative sizes (closes #1040) (#1043) 2026-04-10 16:17:07 +02:00
preview__preview_window_right_neg.snap feat: allow negative sizes (closes #1040) (#1043) 2026-04-10 16:17:07 +02:00
preview__preview_window_up@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
preview__preview_window_up_neg.snap feat: allow negative sizes (closes #1040) (#1043) 2026-04-10 16:17:07 +02:00
preview__preview_wrap@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_both_parts@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_both_parts@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_custom_delimiter@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_custom_delimiter@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_delimiter_in_query_not_item@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_delimiter_in_query_not_item@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_empty_after@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_empty_after@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_empty_before@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_empty_before@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_multiple_delimiters_in_item@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_multiple_delimiters_in_item@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_no_delimiter_in_item@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_no_delimiter_in_item@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_or@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_or@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_query_before_delimiter@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
split_match__split_match_query_before_delimiter@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_begin@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_begin@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_default@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_default@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_end@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_end@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_index@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_index@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_length@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_length@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_begin@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_begin@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_end@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_end@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_index@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_index@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_length@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_length@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_pathname@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_pathname@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_score@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_neg_score@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_pathname@001.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00
tiebreak__tiebreak_pathname@002.snap feat: add multiline item rendering (#999) 2026-03-30 13:57:09 +02:00