mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 03:53:02 +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
|
||||
end
|
||||
-- if filepath has oil:// remove it
|
||||
if file_path:find("oil://") then
|
||||
if file_path:find("^oil://") then
|
||||
file_path = file_path:gsub("oil://", "")
|
||||
end
|
||||
-- Escape quotes in the file path
|
||||
|
|
Loading…
Reference in a new issue