fix(tui): move agent cycling to shift-tab (#37706)

Co-authored-by: Simon Klee <hello@simonklee.dk>
This commit is contained in:
opencode-agent[bot] 2026-07-19 21:45:03 +02:00 committed by GitHub
commit 86a468c4d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1,7 @@
import { expect, test } from "bun:test"
import { TuiKeybind } from "../src/config/keybind"
test("binds agent cycling only to shift+tab by default", () => {
expect(TuiKeybind.Definitions.agent_cycle.default).toBe("shift+tab")
expect(TuiKeybind.Definitions.agent_cycle_reverse.default).toBe("none")
})