diff options
| author | adamdottv <[email protected]> | 2025-06-18 15:51:21 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-06-18 15:51:26 -0500 |
| commit | 87d1d3fb62c45684d38c29f075d0742b9546ee28 (patch) | |
| tree | 6312f54201442c707362051b5aeca5e5470b3264 /packages/tui/internal/app | |
| parent | e054454109140883ef52c00d833d560896361f6c (diff) | |
| download | opencode-87d1d3fb62c45684d38c29f075d0742b9546ee28.tar.gz opencode-87d1d3fb62c45684d38c29f075d0742b9546ee28.zip | |
fix(tui): file completion quirks
Diffstat (limited to 'packages/tui/internal/app')
| -rw-r--r-- | packages/tui/internal/app/app.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/tui/internal/app/app.go b/packages/tui/internal/app/app.go index 940ac7b2f..6f0733aa3 100644 --- a/packages/tui/internal/app/app.go +++ b/packages/tui/internal/app/app.go @@ -42,6 +42,9 @@ type SendMsg struct { Text string Attachments []Attachment } +type CompletionDialogTriggerdMsg struct { + InitialValue string +} func New( ctx context.Context, |
