summaryrefslogtreecommitdiff
path: root/helpfuncs.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-12-14 14:44:24 +0300
committerGrail Finder <wohilas@gmail.com>2025-12-14 14:44:24 +0300
commit33f9ed2466e960223389da59a423cc697ff615ba (patch)
tree149105a4c68d5d4640365110856659d6e18b98b3 /helpfuncs.go
parentedbacb813bd148db33d8747ada293ef2acabe7e9 (diff)
Chore: cleanup
Diffstat (limited to 'helpfuncs.go')
-rw-r--r--helpfuncs.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/helpfuncs.go b/helpfuncs.go
index edcb7fe..194d68c 100644
--- a/helpfuncs.go
+++ b/helpfuncs.go
@@ -8,8 +8,18 @@ import (
"os"
"path"
"strings"
+ "unicode"
)
+func isASCII(s string) bool {
+ for i := 0; i < len(s); i++ {
+ if s[i] > unicode.MaxASCII {
+ return false
+ }
+ }
+ return true
+}
+
func colorText() {
text := textView.GetText(false)
quoteReplacer := strings.NewReplacer(