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:
parent
4249c0c72b
commit
a6d83d54ed
1 changed files with 3 additions and 1 deletions
|
@ -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"))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue