mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-06 20:33:00 +02:00
feat: more explicitly look for oil at the start of file_path
This commit is contained in:
parent
805f7dbc5b
commit
aaaed3d01e
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ function Presence:get_project_name(file_path)
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
-- if filepath has oil:// remove it
|
-- if filepath has oil:// remove it
|
||||||
if file_path:find("oil://") then
|
if file_path:find("^oil://") then
|
||||||
file_path = file_path:gsub("oil://", "")
|
file_path = file_path:gsub("oil://", "")
|
||||||
end
|
end
|
||||||
-- Escape quotes in the file path
|
-- Escape quotes in the file path
|
||||||
|
|
Loading…
Reference in a new issue