feat(tui): add open menu for sessions and projects (#39752)

This commit is contained in:
Kit Langton 2026-07-30 20:08:12 -04:00 committed by GitHub
commit 146fdb9de1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 178 additions and 115 deletions

View file

@ -110,8 +110,6 @@ test("navigates session tabs with leader arrows", () => {
expect(config.keybinds.get("session.tab.previous")).toMatchObject([
{ key: "ctrl+shift+tab,<leader>left,alt+shift+[" },
])
expect(config.keybinds.get("session.tab.history.back")).toMatchObject([{ key: "ctrl+o" }])
expect(config.keybinds.get("session.tab.history.forward")).toMatchObject([{ key: "ctrl+i" }])
expect(config.keybinds.get("session.tab.next_unread")).toMatchObject([{ key: "<leader>down" }])
expect(config.keybinds.get("session.tab.previous_unread")).toMatchObject([{ key: "<leader>up" }])
})