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 <noreply@anthropic.com>
This commit is contained in:
parent
b7ca7ab818
commit
04666e71fd
1 changed files with 6 additions and 6 deletions
|
|
@ -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();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue