fix(picker): show all files in git status (#586)

## Description

When new folder is created in a git project, and there are files inside,
git status picker only shows the folder without any preview. Adding
`-uall` to the commands lists them all.

## Related Issue(s)



## Screenshots

Before: 

![screenshot_2025_01_17_15_42_14](https://github.com/user-attachments/assets/e556f563-dc63-472e-9543-bc784e6e1a35)

After: 

![screenshot_2025_01_17_15_43_13](https://github.com/user-attachments/assets/d6b6d715-02fd-4c77-b167-5c62058153dc)
This commit is contained in:
Kristijan Husak 2025-01-17 19:41:13 +00:00 committed by GitHub
parent 3739b5f8ff
commit 43c312dfc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,6 +86,7 @@ end
function M.status(opts)
local args = {
"status",
"-uall",
"--porcelain=v1",
}