diff --git a/cursor/cursor.go b/internal/cursor/cursor.go similarity index 100% rename from cursor/cursor.go rename to internal/cursor/cursor.go diff --git a/textarea/textarea.go b/textarea/textarea.go index a7de53f..80d0cc0 100644 --- a/textarea/textarea.go +++ b/textarea/textarea.go @@ -6,7 +6,7 @@ import ( "unicode" "github.com/atotto/clipboard" - "github.com/charmbracelet/bubbles/cursor" + "github.com/charmbracelet/bubbles/internal/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 10f93dc..0c8af73 100644 --- a/textinput/textinput.go +++ b/textinput/textinput.go @@ -6,7 +6,7 @@ import ( "unicode" "github.com/atotto/clipboard" - "github.com/charmbracelet/bubbles/cursor" + "github.com/charmbracelet/bubbles/internal/cursor" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/lipgloss" rw "github.com/mattn/go-runewidth"