diff options
| author | Stephanie Gredell <s.raide@gmail.com> | 2026-02-22 10:24:53 -0800 |
|---|---|---|
| committer | Stephanie Gredell <s.raide@gmail.com> | 2026-02-22 10:24:53 -0800 |
| commit | e057505a1adbc0c27dd10006970157e738c0ea4b (patch) | |
| tree | fa9b7c2dcc44dd1400fc9f66b9245a86ae7e2aa2 /lua | |
| parent | 20674c96653e2dad8c84279b5564a20a45530084 (diff) | |
| download | a4-e057505a1adbc0c27dd10006970157e738c0ea4b.tar.xz a4-e057505a1adbc0c27dd10006970157e738c0ea4b.zip | |
really need to fix stylua still...
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/99/extensions/files/init.lua | 5 |
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 |
