From 4a32ba0d4dbb63fe9332bd2666e429e8d84dbfa1 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 10 Nov 2024 19:53:01 +0100 Subject: remove git utility module --- lua/utility/git.lua | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 lua/utility/git.lua diff --git a/lua/utility/git.lua b/lua/utility/git.lua deleted file mode 100644 index b43ccc5..0000000 --- a/lua/utility/git.lua +++ /dev/null @@ -1,29 +0,0 @@ -require("utility.misc") - -function RepositoryRoot() - local current_file = GetCurrentFile() - - if current_file == "fzf" then - return "" - end - - local super_project_path = vim.fn.system("git -C " .. Dirname(current_file) - .. " rev-parse --show-superproject-working-tree") - - if vim.v.shell_error ~= 0 then - return "" - end - - if super_project_path then - return super_project_path - end - - local toplevel_path = vim.fn.system("git -C " .. Dirname(current_file) - .. " rev-parse --show-toplevel | tr -d '\n'") - - if vim.v.shell_error ~= 0 then - return "" - end - - return toplevel_path -end -- cgit v1.2.3-18-g5258