From f7e97043482233c837755d7de842aeed0d5f3cf5 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 5 Nov 2024 11:57:38 -0500 Subject: [PATCH] chore: revert "feat(ansi): add SetZone function for setting the bubblezone id" This reverts commit 6f2b6b9c1374c74917f8d6c7695b85076c674c77. --- ansi/zone.go | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 ansi/zone.go diff --git a/ansi/zone.go b/ansi/zone.go deleted file mode 100644 index 08cd73d6..00000000 --- a/ansi/zone.go +++ /dev/null @@ -1,10 +0,0 @@ -package ansi - -import "strconv" - -// SetZone returns a sequence for setting the zone id of a cell. -// -// See: /~https://github.com/lrstanley/bubblezone -func SetZone(zone int) string { - return "\x1b[" + strconv.Itoa(zone) + "z" -}