diff options
| author | Adictya <[email protected]> | 2025-05-15 18:22:50 +0530 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-05-15 08:29:54 -0500 |
| commit | a203fb8cccf45d74fb217bdc579155ee058af248 (patch) | |
| tree | 50457180de5bd33e569b1e94761af469861e1bef | |
| parent | acc084c9eaff715788acbcdde3f335b11132d02d (diff) | |
| download | opencode-a203fb8cccf45d74fb217bdc579155ee058af248.tar.gz opencode-a203fb8cccf45d74fb217bdc579155ee058af248.zip | |
fix(complete-module): change completion start key to slash
| -rw-r--r-- | internal/tui/page/chat.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/page/chat.go b/internal/tui/page/chat.go index 59a15b0be..ece36b59a 100644 --- a/internal/tui/page/chat.go +++ b/internal/tui/page/chat.go @@ -51,8 +51,8 @@ var keyMap = ChatKeyMap{ key.WithHelp("ctrl+h", "toggle tools"), ), ShowCompletionDialog: key.NewBinding( - key.WithKeys("@"), - key.WithHelp("@", "Complete"), + key.WithKeys("/"), + key.WithHelp("/", "Complete"), ), } |
