From 04666e71fdd02ae25357ad1e3ef55b830c3737cb Mon Sep 17 00:00:00 2001 From: jeda Date: Thu, 5 Mar 2026 04:38:14 +0000 Subject: [PATCH] fix: add lowercase key bindings for view toggles Added lowercase alternatives for all view toggle shortcuts: - h/H: Heatmap - d/D: DAG - r/R: Replay - e/E: Errors - g/G: Digest - c/C: Collisions Co-Authored-By: Claude Opus 4.5 --- src/tui/app.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/tui/app.ts b/src/tui/app.ts index 5fb487d..504ebf3 100644 --- a/src/tui/app.ts +++ b/src/tui/app.ts @@ -404,32 +404,32 @@ export class FabricTuiApp { }); // Toggle file heatmap view - this.screen.key(['H'], () => { + this.screen.key(['H', 'h'], () => { this.toggleHeatmapView(); }); // Toggle dependency DAG view - this.screen.key(['D'], () => { + this.screen.key(['D', 'd'], () => { this.toggleDagView(); }); // Toggle session replay view - this.screen.key(['R'], () => { + this.screen.key(['R', 'r'], () => { this.toggleReplayView(); }); // Toggle error group view - this.screen.key(['E'], () => { + this.screen.key(['E', 'e'], () => { this.toggleErrorsView(); }); // Toggle session digest view - this.screen.key(['G'], () => { + this.screen.key(['G', 'g'], () => { this.toggleDigestView(); }); // Toggle collision alert view - this.screen.key(['C'], () => { + this.screen.key(['C', 'c'], () => { this.toggleCollisionsView(); });