From 805f7dbc5b27911760305e399df6877722279970 Mon Sep 17 00:00:00 2001 From: nick22985 Date: Fri, 10 May 2024 12:31:52 +1000 Subject: [PATCH] feat: Support oil.nvim file explore --- lua/presence/file_explorers.lua | 1 + lua/presence/init.lua | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/presence/file_explorers.lua b/lua/presence/file_explorers.lua index 5d33273..ed10c4f 100644 --- a/lua/presence/file_explorers.lua +++ b/lua/presence/file_explorers.lua @@ -7,4 +7,5 @@ return { ["TelescopePrompt"] = "Telescope", ["neo-tree"] = "Neotree", ["fern"] = "Fern", + ["oil"] = "Oil", } diff --git a/lua/presence/init.lua b/lua/presence/init.lua index 1972fc5..a27459a 100644 --- a/lua/presence/init.lua +++ b/lua/presence/init.lua @@ -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([["]], [[\"]])