From c4041aeb060540aeba4fd4d3e158f1c3e33a32d2 Mon Sep 17 00:00:00 2001 From: Marie Ramlow Date: Tue, 6 Dec 2022 08:03:47 +0100 Subject: [PATCH] Fix wrong buffer path when using netrw on windows (#83) --- lua/presence/init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/presence/init.lua b/lua/presence/init.lua index 1c18a74..3c378ec 100644 --- a/lua/presence/init.lua +++ b/lua/presence/init.lua @@ -758,6 +758,12 @@ end -- Update Rich Presence for the provided vim buffer function Presence:update_for_buffer(buffer, should_debounce) + + -- Since git always uses forward slashes, replace with backslash in Windows + if self.os.name == "windows" then + buffer = buffer:gsub("/", [[\]]) + end + -- Avoid unnecessary updates if the previous activity was for the current buffer -- (allow same-buffer updates when line numbers are enabled) if self.options.enable_line_number == 0 and self.last_activity.file == buffer then