mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-04 18:58:12 +00:00
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:  After: 
This commit is contained in:
parent
3739b5f8ff
commit
43c312dfc1
1 changed files with 1 additions and 0 deletions
|
@ -86,6 +86,7 @@ end
|
|||
function M.status(opts)
|
||||
local args = {
|
||||
"status",
|
||||
"-uall",
|
||||
"--porcelain=v1",
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue