From a4ed54327f08e510ec54408c93c2a08285c727af Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Wed, 14 Sep 2022 10:53:00 -0400 Subject: [PATCH] chore: move cursor bubble to internal --- {cursor => internal/cursor}/cursor.go | 0 textarea/textarea.go | 2 +- textinput/textinput.go | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename {cursor => internal/cursor}/cursor.go (100%) 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"