fix(tui): prioritize models slash autocomplete (#30848)

This commit is contained in:
Aiden Cline
2026-06-04 23:28:43 -05:00
committed by GitHub
parent 0a36433062
commit b375890745
@@ -633,6 +633,8 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
suggested: true,
category: "Agent",
slashName: "models",
// Bias /mo toward /models over /move without changing global fuzzy scoring.
slashAliases: ["mo"],
run: () => {
dialog.replace(() => <DialogModel />)
},