diff options
| author | adamdottv <[email protected]> | 2025-05-15 07:19:17 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-15 07:19:17 -0500 |
| commit | a33e3e25b6646b6128975836d7f182e89f5eb891 (patch) | |
| tree | 9aa3c79050ec079e883e3a881301469e3b0d9edc | |
| parent | 658faab2bfe387f639569af930f8b912052721c7 (diff) | |
| download | opencode-a33e3e25b6646b6128975836d7f182e89f5eb891.tar.gz opencode-a33e3e25b6646b6128975836d7f182e89f5eb891.zip | |
chore: cleanup dead code
| -rw-r--r-- | internal/tui/styles/icons.go | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/internal/tui/styles/icons.go b/internal/tui/styles/icons.go index 64d73dd37..6f9af6a5b 100644 --- a/internal/tui/styles/icons.go +++ b/internal/tui/styles/icons.go @@ -10,16 +10,3 @@ const ( SpinnerIcon string = "⟳" DocumentIcon string = "🖼" ) - -// CircledDigit returns the Unicode circled digit/number for 0‑20. -// out‑of‑range → "". -func CircledDigit(n int) string { - switch { - case n == 0: - return "\u24EA" // ⓪ - case 1 <= n && n <= 20: - return string(rune(0x2460 + n - 1)) // ①–⑳ - default: - return "" - } -} |
