summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorAnthony Poschen <zanven42@gmail.com>2026-02-13 21:48:25 +1100
committerAnthony Poschen <zanven42@gmail.com>2026-02-13 21:48:25 +1100
commitdc561db6af77d7ec387264638c63166225be3375 (patch)
tree6c5a2bcd5d61f58bd7523c06b5636a0a97664bbb /lua
parent94b8094cbd57eb53717b136978651c98f685d2ae (diff)
downloada4-dc561db6af77d7ec387264638c63166225be3375.tar.xz
a4-dc561db6af77d7ec387264638c63166225be3375.zip
feat: run luastyle over the code
Diffstat (limited to 'lua')
-rw-r--r--lua/99/utils.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/lua/99/utils.lua b/lua/99/utils.lua
index 9629fbf..0882489 100644
--- a/lua/99/utils.lua
+++ b/lua/99/utils.lua
@@ -5,11 +5,7 @@ local M = {}
--- @return string
function M.random_file(dir)
local directory = dir or (vim.uv.cwd() .. "/tmp")
- return string.format(
- "%s/99-%d",
- directory,
- math.floor(math.random() * 10000)
- )
+ return string.format("%s/99-%d", directory, math.floor(math.random() * 10000))
end
return M