From a1d37fa32ef9431f6a57c217ba5c456d20834679 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 6 Jul 2024 23:21:20 +0200 Subject: [PATCH] fix: branch detection. Closes #62 --- lua/persistence/init.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/persistence/init.lua b/lua/persistence/init.lua index 1acf0b1..7d1f502 100644 --- a/lua/persistence/init.lua +++ b/lua/persistence/init.lua @@ -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