diff --git a/config/ConEmu.xml b/config/ConEmu.xml
index 929cf24ac..b048569c7 100644
--- a/config/ConEmu.xml
+++ b/config/ConEmu.xml
@@ -253,7 +253,7 @@
-
+
diff --git a/vendor/clink.lua b/vendor/clink.lua
index 11e643354..8f44e1777 100644
--- a/vendor/clink.lua
+++ b/vendor/clink.lua
@@ -203,9 +203,12 @@ end
-- @return {bool}
---
function get_git_status()
- for line in io.popen("git status --porcelain 2>nul"):lines() do
+ local file = io.popen("git status --no-lock-index --porcelain 2>nul")
+ for line in file:lines() do
+ file:close()
return false
end
+ file:close()
return true
end