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

Compare commits

...

6 commits

Author SHA1 Message Date
66463cce63
Merge 8a513b74d3 into c850b9e245 2025-01-03 00:08:39 +02:00
c850b9e245 Revert "fix(ci): Use submodules for actions"
All checks were successful
StyLua / StyLua (push) Successful in 2m3s
Luacheck / Luacheck (push) Successful in 21s
Breaks `lazy.nvim` because of the submodules

Fixes https://github.com/jiriks74/presence.nvim/issues/67

This reverts commit 8117a074d5.
2024-12-13 03:33:59 +01:00
8117a074d5 fix(ci): Use submodules for actions
All checks were successful
Luacheck / Luacheck (push) Successful in 11s
StyLua / StyLua (push) Successful in 14s
I've moved to forgejo which uses https://code.forgejo.org/actions/ by
default
2024-12-12 17:09:31 +01:00
8a513b74d3
fix(formatting): format using stylua 2024-04-09 15:29:57 +02:00
9dcf608de4
fix: remove unused argument 2024-04-09 15:29:57 +02:00
41d3ef7ff8
prevent error messages when opening unnamed buffer 2024-04-09 15:29:57 +02:00

View file

@ -831,7 +831,7 @@ function Presence:get_buttons(buffer, parent_dirpath)
end
-- Update Rich Presence for the provided vim buffer
function Presence:update_for_buffer(buffer, should_debounce)
function Presence:update_for_buffer(buffer)
-- 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
@ -843,7 +843,7 @@ function Presence:update_for_buffer(buffer, should_debounce)
local filename = self.get_filename(buffer, self.os.path_separator)
local parent_dirpath = self.get_dir_path(buffer, self.os.path_separator)
local extension = filename and self.get_file_extension(filename) or nil
self.log:debug(string.format("Parsed filename %s with %s extension", filename, extension or "no"))
self.log:debug(string.format("Parsed filename %s with %s extension", filename or "no", extension or "no"))
-- Return early if there is no valid activity status text to set
local status_text = self:get_status_text(filename)
@ -852,7 +852,7 @@ function Presence:update_for_buffer(buffer, should_debounce)
end
-- Get project information
self.log:debug(string.format("Getting project name for %s...", parent_dirpath))
self.log:debug(string.format("Getting project name for %s...", parent_dirpath or "no"))
local project_name, project_path = self:get_project_name(parent_dirpath)
-- Check for blacklist
@ -868,7 +868,8 @@ function Presence:update_for_buffer(buffer, should_debounce)
local activity_set_at = os.time()
-- If we shouldn't debounce and we trigger an activity, keep this value the same.
-- 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"))