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:
parent
ab97802975
commit
805f7dbc5b
2 changed files with 5 additions and 1 deletions
|
@ -7,4 +7,5 @@ return {
|
||||||
["TelescopePrompt"] = "Telescope",
|
["TelescopePrompt"] = "Telescope",
|
||||||
["neo-tree"] = "Neotree",
|
["neo-tree"] = "Neotree",
|
||||||
["fern"] = "Fern",
|
["fern"] = "Fern",
|
||||||
|
["oil"] = "Oil",
|
||||||
}
|
}
|
||||||
|
|
|
@ -438,7 +438,10 @@ function Presence:get_project_name(file_path)
|
||||||
if not file_path then
|
if not file_path then
|
||||||
return nil
|
return nil
|
||||||
end
|
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
|
-- Escape quotes in the file path
|
||||||
file_path = file_path:gsub([["]], [[\"]])
|
file_path = file_path:gsub([["]], [[\"]])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue