diff options
| author | Adam <[email protected]> | 2025-04-30 05:52:30 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-30 12:52:30 +0200 |
| commit | 61d9dc95111d2645a49816f6d9d6cc1014be1a22 (patch) | |
| tree | ab812e37a5ca9c4be3f031f2fc30b8f78c1f4333 | |
| parent | 76275e533e029b25c01e3cf07af3f89a35de0a55 (diff) | |
| download | opencode-61d9dc95111d2645a49816f6d9d6cc1014be1a22.tar.gz opencode-61d9dc95111d2645a49816f6d9d6cc1014be1a22.zip | |
fix: allow text selection (#127)
| -rw-r--r-- | cmd/root.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/root.go b/cmd/root.go index 74ace3661..ab81f7120 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -8,6 +8,7 @@ import ( "time" tea "github.com/charmbracelet/bubbletea" + zone "github.com/lrstanley/bubblezone" "github.com/opencode-ai/opencode/internal/app" "github.com/opencode-ai/opencode/internal/config" "github.com/opencode-ai/opencode/internal/db" @@ -16,7 +17,6 @@ import ( "github.com/opencode-ai/opencode/internal/pubsub" "github.com/opencode-ai/opencode/internal/tui" "github.com/opencode-ai/opencode/internal/version" - zone "github.com/lrstanley/bubblezone" "github.com/spf13/cobra" ) @@ -79,7 +79,6 @@ to assist developers in writing, debugging, and understanding code directly from program := tea.NewProgram( tui.New(app), tea.WithAltScreen(), - tea.WithMouseCellMotion(), ) // Initialize MCP tools in the background |
