From b2c3b2172175a3bdc59511c201efea249b690490 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Sun, 28 Dec 2025 10:31:30 -0800 Subject: [PATCH] Change feed hotkey from C-b f to C-b a (activity) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit C-b f conflicts with tmux built-in find-window command. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- internal/tmux/tmux.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }