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

correct time elapsed refreshing on line change

This commit is contained in:
Sean Ray 2022-12-30 20:07:01 -05:00 committed by GitHub
parent 4249c0c72b
commit a6d83d54ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -793,7 +793,9 @@ function Presence:update_for_buffer(buffer, should_debounce)
local activity_set_at = os.time() local activity_set_at = os.time()
-- If we shouldn't debounce and we trigger an activity, keep this value the same. -- If we shouldn't debounce and we trigger an activity, keep this value the same.
-- Otherwise set it to the current time. -- Otherwise set it to the current time.
local relative_activity_set_at = should_debounce and self.last_activity.relative_set_at or os.time() -- local relative_activity_set_at = should_debounce and self.last_activity.relative_set_at or os.time()
local relative_activity_set_at = self.last_activity.relative_set_at or os.time()
self.log:debug(string.format("Setting activity for %s...", buffer and #buffer > 0 and buffer or "unnamed buffer")) self.log:debug(string.format("Setting activity for %s...", buffer and #buffer > 0 and buffer or "unnamed buffer"))