summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorStephanie Gredell <s.raide@gmail.com>2026-02-22 10:24:53 -0800
committerStephanie Gredell <s.raide@gmail.com>2026-02-22 10:24:53 -0800
commite057505a1adbc0c27dd10006970157e738c0ea4b (patch)
treefa9b7c2dcc44dd1400fc9f66b9245a86ae7e2aa2 /lua
parent20674c96653e2dad8c84279b5564a20a45530084 (diff)
downloada4-e057505a1adbc0c27dd10006970157e738c0ea4b.tar.xz
a4-e057505a1adbc0c27dd10006970157e738c0ea4b.zip
really need to fix stylua still...
Diffstat (limited to 'lua')
-rw-r--r--lua/99/extensions/files/init.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/99/extensions/files/init.lua b/lua/99/extensions/files/init.lua
index 2214db6..03afb03 100644
--- a/lua/99/extensions/files/init.lua
+++ b/lua/99/extensions/files/init.lua
@@ -82,7 +82,10 @@ end
--- @param root string
--- @return _99.Files.File[]
local function scan_with_git_sync(root)
- local cmd = string.format("git -C %s ls-files --cached --others --exclude-standard", vim.fn.shellescape(root))
+ local cmd = string.format(
+ "git -C %s ls-files --cached --others --exclude-standard",
+ vim.fn.shellescape(root)
+ )
local output = vim.fn.system(cmd)
if vim.v.shell_error ~= 0 or output == "" then