From d3aed22a415ff984147e8514d5aae5aa2e18e828 Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Thu, 6 Oct 2022 15:27:27 -0400 Subject: [PATCH] Revert "chore: move cursor bubble to internal" This reverts commit a4ed54327f08e510ec54408c93c2a08285c727af. --- {internal/cursor => cursor}/cursor.go | 0 textarea/textarea.go | 2 +- textinput/textinput.go | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename {internal/cursor => cursor}/cursor.go (100%) 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"