diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-18 19:13:59 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-18 19:13:59 +0300 |
| commit | 65599ad9b87b1c61cb6d8232200da88952370e96 (patch) | |
| tree | 862e20468835255ed06544a2df2470678d3b97dc /internal/tui/common | |
| parent | a92cb0283b1ba8735a6697a8f94911397534131f (diff) | |
t6 add syscall family dashboard aggregation
Diffstat (limited to 'internal/tui/common')
| -rw-r--r-- | internal/tui/common/keys.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/internal/tui/common/keys.go b/internal/tui/common/keys.go index e50ee94..ffdc31a 100644 --- a/internal/tui/common/keys.go +++ b/internal/tui/common/keys.go @@ -19,6 +19,7 @@ type KeyMap struct { Five key.Binding Six key.Binding Seven key.Binding + Eight key.Binding Visualize key.Binding Metric key.Binding Sort key.Binding @@ -62,6 +63,7 @@ func DefaultKeyMap() KeyMap { Five: keyBinding("processes", "5"), Six: keyBinding("lat+gaps", "6"), Seven: keyBinding("stream", "7"), + Eight: keyBinding("non-io", "8"), Visualize: keyBinding("viz", "v"), Metric: keyBinding("metric", "b"), Sort: keyBinding("sort table", "s"), @@ -110,7 +112,7 @@ func (k KeyMap) globalStatusBindings() []key.Binding { bindings := []key.Binding{ helpTextBinding("H", "toggle help"), k.Tab, k.ShiftTab, - k.One, k.Two, k.Three, k.Four, k.Five, k.Six, k.Seven, + k.One, k.Two, k.Three, k.Four, k.Five, k.Six, k.Seven, k.Eight, k.Visualize, k.Metric, k.Sort, k.ReverseSort, k.Filter, k.FilterUndo, k.SelectPID, k.SelectTID, @@ -154,7 +156,7 @@ func (k KeyMap) DashboardFullHelp() [][]key.Binding { controls = append(controls, k.Visualize, k.Metric, k.Sort, k.ReverseSort, k.Filter, k.FilterUndo) return [][]key.Binding{ - {k.One, k.Two, k.Three, k.Four, k.Five, k.Six, k.Seven}, + {k.One, k.Two, k.Three, k.Four, k.Five, k.Six, k.Seven, k.Eight}, controls, { helpTextBinding("space", "stream pause"), |
