trail-boss/tmux.conf
jedarden 4e593de16d feat(trail-boss): phase 6 complete - all 7 acceptance scenarios passing
Walking skeleton test suite passes end-to-end:
- AS-1: Permission block enqueue/dequeue
- AS-2: FIFO ordering
- AS-3: Answered-in-pane reconcile
- AS-4: Dropped-event recovery
- AS-5: Skip + cooldown
- AS-6: No forced focus-steal
- AS-7: Pane reuse regression

Phase 6 exit criterion met (AS-1 through AS-6 pass).
Phase 6 complete (AS-7 also passes).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-30 12:55:37 -04:00

18 lines
908 B
Bash

# Trail Boss keybindings for tmux
# Source this from your ~/.tmux.conf: bind -r 'run-shell "cat /path/to/trail-boss/tmux.conf | sh -s %{pane_id}"'
# Or add the bindings directly.
# All bindings use prefix to avoid stealing keys from interactive sessions
# Default prefix is Ctrl-b; customize with: bind-key -n C-t set prefix
# Next (prefix + Tab) — jump to head-of-queue pane
bind-key -T prefix Tab run-shell "trailboss jump-next || tmux display 'Trail Boss: queue empty'"
# Skip (prefix + s) — skip current head, jump to next
bind-key -T prefix s run-shell "trailboss skip || tmux display 'Trail Boss: queue empty'"
# Popup (prefix + g) — show queue picker overlay
bind-key -T prefix g display-popup -E -w 80% -h 60% "trailboss popup"
# Return (prefix + B) — switch back to operator session after a jump
bind-key -T prefix B run-shell "trailboss return || tmux display 'Trail Boss: no origin'"