fix: FILE with untracked

This commit is contained in:
Lewis Russell 2023-10-02 15:10:39 +01:00
parent 61e0130d4b
commit 550e251986
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ local function apply_win_signs(bufnr, top, bot, clear)
return
end
local untracked = bcache.git_obj.object_name == nil
local untracked = bcache.git_obj.object_name == nil and bcache.base ~= 'FILE'
apply_win_signs0(bufnr, signs_normal, bcache.hunks, top, bot, clear, untracked)
if signs_staged then
apply_win_signs0(bufnr, signs_staged, bcache.hunks_staged, top, bot, clear, false)