fix: branch detection. Closes #62

This commit is contained in:
Folke Lemaitre 2024-07-06 23:21:20 +02:00
parent 34f337e383
commit a1d37fa32e
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040

View File

@ -120,7 +120,10 @@ end
--- get current branch name
---@return string?
function M.branch()
return vim.fn.systemlist("git branch --show-current")[1]
if uv.fs_stat(".git") then
local ret = vim.fn.systemlist("git branch --show-current")[1]
return vim.v.shell_error == 0 and ret or nil
end
end
return M