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
commit b375890745
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 />)
},