diff options
| author | Dax Raad <[email protected]> | 2025-06-14 21:29:02 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-06-14 21:29:02 -0400 |
| commit | c4ff8dd2052e7aae5728cd006e3009e084070e81 (patch) | |
| tree | 1f07d86a6f69425dbc2a8ec1f30799bad9be5870 | |
| parent | 0e035b3115d35b0a2fc8972375052f2b2f893fb2 (diff) | |
| download | opencode-c4ff8dd2052e7aae5728cd006e3009e084070e81.tar.gz opencode-c4ff8dd2052e7aae5728cd006e3009e084070e81.zip | |
revert ctrl+d - conflicts with page down
| -rw-r--r-- | packages/tui/internal/components/chat/editor.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go index f046bc01a..293f18f05 100644 --- a/packages/tui/internal/components/chat/editor.go +++ b/packages/tui/internal/components/chat/editor.go @@ -124,11 +124,6 @@ func (m *editorComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) { return nil } } - case "ctrl+d": - if m.textarea.Value() != "" { - return m, nil - } - return m, tea.Quit case "shift+enter": value := m.textarea.Value() m.textarea.SetValue(value + "\n") |
