From 8f89ca5b85f7ba88e1bc00396d12053a87109027 Mon Sep 17 00:00:00 2001 From: Cherry Date: Tue, 25 Jul 2023 16:14:36 -0400 Subject: [PATCH] moved git repo check into its own loop --- lua/presence/init.lua | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/lua/presence/init.lua b/lua/presence/init.lua index e44c966..f4a30db 100644 --- a/lua/presence/init.lua +++ b/lua/presence/init.lua @@ -651,12 +651,10 @@ end function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath) local parent_dirname = nil local project_dirname = nil - local git_repo -- Parse parent/project directory name if parent_dirpath then parent_dirname = self.get_filename(parent_dirpath, self.os.path_separator) - git_repo = Presence:get_git_repo_url(parent_dirpath) end if project_dirpath then @@ -682,14 +680,6 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath) return true end - -- Match project either by Lua pattern or by plain string - local is_git_repo_blacklisted = git_repo and - ((git_repo:match(val) == git_repo) == git_repo or - (git_repo:find(val, nil, true))) - if is_git_repo_blacklisted then - return true - end - -- Match project either by Lua pattern or by plain string local is_project_directory_blacklisted = project_dirpath and ((project_dirpath:match(val) == project_dirpath or @@ -701,6 +691,24 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath) end end + + -- check against git repo blacklist + local git_repo = Presence:get_git_repo_url(parent_dirpath) + local blacklist_repos_table = self.options["blacklist_repos"] or {} + + + for _, val in pairs(blacklist_repos_table) do + if buffer:match(val) == buffer then return true end + + local is_git_repo_blacklisted = git_repo and + ((git_repo:match(val) == git_repo) == git_repo or + (git_repo:find(val, nil, true))) + + if is_git_repo_blacklisted then + return true + end + end + return false end