Skip to content

Commit 61d9dc9

Browse files
authored
fix: allow text selection (#127)
1 parent 76275e5 commit 61d9dc9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cmd/root.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"time"
99

1010
tea "github.com/charmbracelet/bubbletea"
11+
zone "github.com/lrstanley/bubblezone"
1112
"github.com/opencode-ai/opencode/internal/app"
1213
"github.com/opencode-ai/opencode/internal/config"
1314
"github.com/opencode-ai/opencode/internal/db"
@@ -16,7 +17,6 @@ import (
1617
"github.com/opencode-ai/opencode/internal/pubsub"
1718
"github.com/opencode-ai/opencode/internal/tui"
1819
"github.com/opencode-ai/opencode/internal/version"
19-
zone "github.com/lrstanley/bubblezone"
2020
"github.com/spf13/cobra"
2121
)
2222

@@ -79,7 +79,6 @@ to assist developers in writing, debugging, and understanding code directly from
7979
program := tea.NewProgram(
8080
tui.New(app),
8181
tea.WithAltScreen(),
82-
tea.WithMouseCellMotion(),
8382
)
8483

8584
// Initialize MCP tools in the background

0 commit comments

Comments
 (0)