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

feat: Support oil.nvim file explore

This commit is contained in:
nick22985 2024-05-10 12:31:52 +10:00
parent ab97802975
commit 805f7dbc5b
No known key found for this signature in database
GPG key ID: EDEE4CC55CB599FF
2 changed files with 5 additions and 1 deletions

View file

@ -7,4 +7,5 @@ return {
["TelescopePrompt"] = "Telescope",
["neo-tree"] = "Neotree",
["fern"] = "Fern",
["oil"] = "Oil",
}

View file

@ -438,7 +438,10 @@ function Presence:get_project_name(file_path)
if not file_path then
return nil
end
-- if filepath has oil:// remove it
if file_path:find("oil://") then
file_path = file_path:gsub("oil://", "")
end
-- Escape quotes in the file path
file_path = file_path:gsub([["]], [[\"]])