diff --git a/internal/tmux/tmux.go b/internal/tmux/tmux.go index 5f8331ce..12c9a0e4 100644 --- a/internal/tmux/tmux.go +++ b/internal/tmux/tmux.go @@ -674,13 +674,13 @@ func (t *Tmux) SetCrewCycleBindings(session string) error { return nil } -// SetFeedBinding configures C-b f to jump to the activity feed window. +// SetFeedBinding configures C-b a to jump to the activity feed window. // This creates the feed window if it doesn't exist, or switches to it if it does. // Uses `gt feed --window` which handles both creation and switching. func (t *Tmux) SetFeedBinding(session string) error { - // C-b f → gt feed --window (jump to feed window, creating if needed) + // C-b a → gt feed --window (jump to activity feed window, creating if needed) // The feed command detects the current session from tmux environment - _, err := t.run("bind-key", "-T", "prefix", "f", + _, err := t.run("bind-key", "-T", "prefix", "a", "run-shell", "gt feed --window") return err }