mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 12:03:00 +02:00
moved git repo check into its own loop
This commit is contained in:
parent
81b5b68e15
commit
e843dec3ca
1 changed files with 21 additions and 2 deletions
|
@ -677,12 +677,10 @@ end
|
||||||
function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
||||||
local parent_dirname = nil
|
local parent_dirname = nil
|
||||||
local project_dirname = nil
|
local project_dirname = nil
|
||||||
local git_repo
|
|
||||||
|
|
||||||
-- Parse parent/project directory name
|
-- Parse parent/project directory name
|
||||||
if parent_dirpath then
|
if parent_dirpath then
|
||||||
parent_dirname = self.get_filename(parent_dirpath, self.os.path_separator)
|
parent_dirname = self.get_filename(parent_dirpath, self.os.path_separator)
|
||||||
git_repo = Presence:get_git_repo_url(parent_dirpath)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if project_dirpath then
|
if project_dirpath then
|
||||||
|
@ -709,6 +707,7 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Match project either by Lua pattern or by plain string
|
-- Match project either by Lua pattern or by plain string
|
||||||
|
<<<<<<< HEAD
|
||||||
local is_git_repo_blacklisted = git_repo and
|
local is_git_repo_blacklisted = git_repo and
|
||||||
((git_repo:match(val) == git_repo) == git_repo or
|
((git_repo:match(val) == git_repo) == git_repo or
|
||||||
(git_repo:find(val, nil, true)))
|
(git_repo:find(val, nil, true)))
|
||||||
|
@ -717,6 +716,8 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Match project either by Lua pattern or by plain string
|
-- Match project either by Lua pattern or by plain string
|
||||||
|
=======
|
||||||
|
>>>>>>> 8f89ca5 (moved git repo check into its own loop)
|
||||||
local is_project_directory_blacklisted = project_dirpath and
|
local is_project_directory_blacklisted = project_dirpath and
|
||||||
((project_dirpath:match(val) == project_dirpath or
|
((project_dirpath:match(val) == project_dirpath or
|
||||||
project_dirname:match(val) == project_dirname) or
|
project_dirname:match(val) == project_dirname) or
|
||||||
|
@ -727,6 +728,24 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
|
||||||
end
|
end
|
||||||
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
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue