Explorar el Código

fix(complete-module): change completion start key to slash

Adictya hace 11 meses
padre
commit
a203fb8ccc
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      internal/tui/page/chat.go

+ 2 - 2
internal/tui/page/chat.go

@@ -51,8 +51,8 @@ var keyMap = ChatKeyMap{
 		key.WithHelp("ctrl+h", "toggle tools"),
 		key.WithHelp("ctrl+h", "toggle tools"),
 	),
 	),
 	ShowCompletionDialog: key.NewBinding(
 	ShowCompletionDialog: key.NewBinding(
-		key.WithKeys("@"),
-		key.WithHelp("@", "Complete"),
+		key.WithKeys("/"),
+		key.WithHelp("/", "Complete"),
 	),
 	),
 }
 }