Keymap reference
Every binding the Evaluar TUI defines, transcribed from the BINDINGS declarations in src/evaluar/tui/.
Global
Defined in src/evaluar/tui/app.py.
| Key | Action | Notes |
|---|---|---|
ctrl+p | command_palette | Open the command palette. |
ctrl+l | toggle_log | Show/hide the log pane. |
ctrl+e | export_json | Export the current run as JSON. |
ctrl+t | toggle_run_id_mode | Toggle the run-id display mode. |
ctrl+h | show_home | Return to the home view. |
ctrl+c | request_quit | Quit the TUI. |
? | show_command_reference | Open the command reference modal. |
e | focus_evaluation | Focus the evaluation pane (results view). |
g | toggle_charts | Toggle the charts widget (results view). |
i | inspect_failure | Open the failure inspector for the focused run. |
Results view
Defined in src/evaluar/tui/views/results.py.
| Key | Action |
|---|---|
e | Focus the evaluation pane. |
g | Toggle charts. |
v | Open the bbox editor in edit mode (GT editing). |
o | Open the bbox editor in overlay mode (read-only prediction overlay). |
i | Open the failure inspector. |
left | Focus the models pane. |
right | Focus the evaluation pane. |
Failure inspector
Defined in src/evaluar/tui/views/failure_inspector.py.
| Key | Action |
|---|---|
d | Focus the diff pane. |
s | Focus the samples pane. |
v | Open the bbox editor in edit mode. |
o | Open the bbox editor in overlay mode. |
tab / right | Cycle focus forward. |
left | Cycle focus backward. |
b / escape | Go back. |
Modals
| Modal | Key | Action |
|---|---|---|
| Command reference | escape | Dismiss. |
| Confirm | enter | Confirm. |
| Confirm | escape | Cancel. |
| Confirm | left / right | Focus previous / next. |
Things that are not bound
The following keys are commonly assumed but not bound anywhere in the TUI today:
- Vim-style navigation (
j,k,h,l,gg,G). ffor the failure inspector (usei).efor ground-truth editing (usev).qfor quit (usectrl+c).n/Nfor next / previous failure.Ofor cycling overlay modes.cfor copying the sample id.
Bbox editor (subprocess)
The bbox editor is launched from the TUI via o or v and runs as a separate OpenCV window. Its keymap is documented on the bbox editor page.