Add favorites to model selector (#23) (#4343)

Co-authored-by: Github Action <action@github.com>
This commit is contained in:
shuv
2025-11-25 22:41:41 -08:00
committed by GitHub
parent 73eae191e9
commit 335f46122b
10 changed files with 253 additions and 39 deletions

View File

@@ -428,6 +428,8 @@ export namespace Config {
model_list: z.string().optional().default("<leader>m").describe("List available models"),
model_cycle_recent: z.string().optional().default("f2").describe("Next recently used model"),
model_cycle_recent_reverse: z.string().optional().default("shift+f2").describe("Previous recently used model"),
model_cycle_favorite: z.string().optional().default("none").describe("Next favorite model"),
model_cycle_favorite_reverse: z.string().optional().default("none").describe("Previous favorite model"),
command_list: z.string().optional().default("ctrl+p").describe("List available commands"),
agent_list: z.string().optional().default("<leader>a").describe("List agents"),
agent_cycle: z.string().optional().default("tab").describe("Next agent"),