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