Fix: Add escape sequence for @ symbols to prevent send blocking (#1029)

This commit is contained in:
John Henry Rudden 2025-07-16 11:18:48 -05:00 committed by GitHub
parent 88b58fd6a0
commit 050ff943a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -56,7 +56,7 @@ var completionDialogKeys = completionDialogKeyMap{
key.WithKeys("tab", "enter", "right"),
),
Cancel: key.NewBinding(
key.WithKeys(" ", "esc", "backspace", "ctrl+h", "ctrl+c"),
key.WithKeys("space", " ", "esc", "backspace", "ctrl+h", "ctrl+c"),
),
}