diff --git a/internal/cursor/cursor.go b/cursor/cursor.go similarity index 100% rename from internal/cursor/cursor.go rename to cursor/cursor.go diff --git a/textarea/textarea.go b/textarea/textarea.go index 80d0cc0..a7de53f 100644 --- a/textarea/textarea.go +++ b/textarea/textarea.go @@ -6,7 +6,7 @@ import ( "unicode" "github.com/atotto/clipboard" - "github.com/charmbracelet/bubbles/internal/cursor" + "github.com/charmbracelet/bubbles/cursor" "github.com/charmbracelet/bubbles/key" "github.com/charmbracelet/bubbles/viewport" tea "github.com/charmbracelet/bubbletea" diff --git a/textinput/textinput.go b/textinput/textinput.go index 8258130..007bd6f 100644 --- a/textinput/textinput.go +++ b/textinput/textinput.go @@ -6,7 +6,7 @@ import ( "unicode" "github.com/atotto/clipboard" - "github.com/charmbracelet/bubbles/internal/cursor" + "github.com/charmbracelet/bubbles/cursor" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" rw "github.com/mattn/go-runewidth"