1
0
Fork 0
mirror of https://github.com/jiriks74/presence.nvim synced 2025-04-05 12:03:00 +02:00

Fix wrong buffer path when using netrw on windows (#83)

This commit is contained in:
Marie Ramlow 2022-12-06 08:03:47 +01:00
parent c1c5475882
commit c4041aeb06
No known key found for this signature in database

View file

@ -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