modified: dashboard/help_bar.go

modified:   dashboard2/help_bar.go
	modified:   views.go
This commit is contained in:
viljarb
2026-03-04 10:26:07 +01:00
parent 1d5b7e0860
commit 496422cf7c
3 changed files with 3 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ func (h HelpBar) View() string {
func (h HelpBar) shortHelp() string {
keys := []string{
styles.HighlightKey("tab") + " switch",
styles.HighlightKey("ctrl+2") + " dash2",
styles.HighlightKey("2") + " dash2",
styles.HighlightKey("↑/k") + " up",
styles.HighlightKey("↓/j") + " down",
styles.HighlightKey("pgup/pgdn") + " page",

View File

@@ -32,7 +32,7 @@ func (h HelpBar) View() string {
func (h HelpBar) shortHelp() string {
keys := []string{
styles.HighlightKey("tab") + " switch",
styles.HighlightKey("ctrl+1") + " dash1",
styles.HighlightKey("1") + " dash1",
styles.HighlightKey("↑/k") + " up",
styles.HighlightKey("↓/j") + " down",
styles.HighlightKey("pgup/pgdn") + " page",

View File

@@ -9,3 +9,4 @@ import (
func NewDashboardView(app *app.App, feedbackChan chan models.ValidationFeedback, quitChan chan bool) *dashboard.Model {
return dashboard.NewDashboard(app, feedbackChan, quitChan)
}