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:
parent
c1c5475882
commit
c4041aeb06
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue