diff options
| author | adamdottv <[email protected]> | 2025-07-08 14:57:17 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-07-08 14:57:17 -0500 |
| commit | daa5fc916a988d4d038d1a89aa2076010bed1fab (patch) | |
| tree | e25e92c66e811d2f9c0f6f5f94d9a80cedf1794b /packages/tui/go.mod | |
| parent | c659496b96acefe73253bc6eecaa6b953b6f9c98 (diff) | |
| download | opencode-daa5fc916a988d4d038d1a89aa2076010bed1fab.tar.gz opencode-daa5fc916a988d4d038d1a89aa2076010bed1fab.zip | |
fix(tui): pasting causes panic on macos
Diffstat (limited to 'packages/tui/go.mod')
| -rw-r--r-- | packages/tui/go.mod | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/tui/go.mod b/packages/tui/go.mod index 10f6e7e49..5a405bd76 100644 --- a/packages/tui/go.mod +++ b/packages/tui/go.mod @@ -23,6 +23,8 @@ require ( replace github.com/sst/opencode-sdk-go => ./sdk +replace golang.design/x/clipboard v0.7.1 => github.com/sst/clipboard v0.0.0-20250708194754-36e9fc12a4e8 + require golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect require ( @@ -63,7 +65,7 @@ require ( ) require ( - github.com/atotto/clipboard v0.1.4 + github.com/atotto/clipboard v0.1.4 // indirect github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/aymerick/douceur v0.2.0 // indirect github.com/charmbracelet/colorprofile v0.3.1 // indirect |
