From 6156b38e281b47eb2e299a4e1c4052ad8fe135f6 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 10 Jul 2025 12:42:50 -0400 Subject: [PATCH] chore(lint): add missing GoDoc --- internal/tui/components/chat/editor/editor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/tui/components/chat/editor/editor.go b/internal/tui/components/chat/editor/editor.go index ee374a6c1e0e68aaebef74fee07edb62292d68fe..b835aed20a9d07ddccd5f292f36503856a5d241d 100644 --- a/internal/tui/components/chat/editor/editor.go +++ b/internal/tui/components/chat/editor/editor.go @@ -378,6 +378,7 @@ func (c *editorCmp) IsFocused() bool { return c.textarea.Focused() } +// Bindings implements Container. func (c *editorCmp) Bindings() []key.Binding { return c.keyMap.KeyBindings() }