1
0
Fork 0
mirror of https://github.com/jiriks74/presence.nvim synced 2025-04-05 12:03:00 +02:00

fix(formatting): Format using StyLua to be in sync with upstream

This commit is contained in:
Jiří Štefka 2024-04-10 14:05:29 +02:00
parent 89d695ab5a
commit 6f542a1100

View file

@ -695,29 +695,30 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
-- Loop over the values to see if the provided project/path is in the blacklist
for _, val in pairs(blacklist_table) do
-- Matches buffer exactly
if buffer:match(val) == buffer then return true end
if buffer:match(val) == buffer then
return true
end
-- Match parent either by Lua pattern or by plain string
local is_parent_directory_blacklisted = parent_dirpath and
((parent_dirpath:match(val) == parent_dirpath or
parent_dirname:match(val) == parent_dirname) or
(parent_dirpath:find(val, nil, true) or
parent_dirname:find(val, nil, true)))
local is_parent_directory_blacklisted = parent_dirpath
and (
(parent_dirpath:match(val) == parent_dirpath or parent_dirname:match(val) == parent_dirname)
or (parent_dirpath:find(val, nil, true) or parent_dirname:find(val, nil, true))
)
if is_parent_directory_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
project_dirname:match(val) == project_dirname) or
(project_dirpath:find(val, nil, true) or
project_dirname:find(val, nil, true)))
local is_project_directory_blacklisted = project_dirpath
and (
(project_dirpath:match(val) == project_dirpath or project_dirname:match(val) == project_dirname)
or (project_dirpath:find(val, nil, true) or project_dirname:find(val, nil, true))
)
if is_project_directory_blacklisted then
return true
end
end
-- check against git repo blacklist
local git_repo = Presence:get_git_repo_url(parent_dirpath)
if git_repo then
@ -727,13 +728,13 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
return false
end
for _, val in pairs(blacklist_repos_table) do
if buffer:match(val) == buffer then return true end
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)))
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
@ -750,9 +751,7 @@ function Presence:get_git_repo_url(parent_dirpath)
-- Escape quotes in the file path
local path = parent_dirpath:gsub([["]], [[\"]])
local git_url_cmd = "git config --get remote.origin.url"
local cmd = path
and string.format([[cd "%s" && %s]], path, git_url_cmd)
or git_url_cmd
local cmd = path and string.format([[cd "%s" && %s]], path, git_url_cmd) or git_url_cmd
-- Trim and coerce empty string value to null
repo_url = vim.trim(vim.fn.system(cmd))