Focus the "Filter results..." text input in the results table.
Toggle the per-column filter row in the results table.
Abort the currently-running search (same effect as the stop button).
Expand every expandable row in the results table.
Collapse every expanded row in the results table.
Scroll the results table back to the top.
Show every result row on one page (disable pagination).
Clear all per-column filters in the results table.
Custom DOM event names used to bridge global hotkey handlers in
App.tsxto components that own the relevant local state (e.g.ResultsTable).We use
window-dispatchedCustomEvents rather than lifting state into context so the hotkey layer stays decoupled from the component tree — the listener only has to exist while the target component is mounted.Source