From 1a40c1ef27da1ce9ad7594bab627a486d16dc966 Mon Sep 17 00:00:00 2001 From: Max Cahill <1bardesign@gmail.com> Date: Fri, 23 Jul 2021 14:26:26 +1000 Subject: [PATCH] added aabb as an acronym for camelCase --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 410b612..6819aca 100644 --- a/init.lua +++ b/init.lua @@ -95,7 +95,7 @@ function _batteries:camelCase() end --any acronyms to fully capitalise to avoid "Rgb" and the like - local acronyms = _batteries.set{"rgb", "rgba", "argb", "hsl", "xy", "gc",} + local acronyms = _batteries.set{"rgb", "rgba", "argb", "hsl", "xy", "gc", "aabb",} local function caps_acronym(s) if acronyms:has(s) then s = s:upper()