mirror of
https://github.com/jiriks74/presence.nvim
synced 2024-11-23 20:37:50 +01:00
fix(formatting): format using stylua
This commit is contained in:
parent
9dcf608de4
commit
8a513b74d3
@ -800,11 +800,11 @@ function Presence:update_for_buffer(buffer)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Parse vim buffer
|
-- Parse vim buffer
|
||||||
local filename = self.get_filename(buffer, self.os.path_separator)
|
local filename = self.get_filename(buffer, self.os.path_separator)
|
||||||
local parent_dirpath = self.get_dir_path(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
|
local extension = filename and self.get_file_extension(filename) or nil
|
||||||
self.log:debug(string.format("Parsed filename %s with %s extension", filename or "no", 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
|
-- Return early if there is no valid activity status text to set
|
||||||
local status_text = self:get_status_text(filename)
|
local status_text = self:get_status_text(filename)
|
||||||
@ -812,9 +812,9 @@ function Presence:update_for_buffer(buffer)
|
|||||||
return self.log:debug("No status text for the given buffer, skipping...")
|
return self.log:debug("No status text for the given buffer, skipping...")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Get project information
|
-- Get project information
|
||||||
self.log:debug(string.format("Getting project name for %s...", parent_dirpath or "no"))
|
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)
|
local project_name, project_path = self:get_project_name(parent_dirpath)
|
||||||
|
|
||||||
-- Check for blacklist
|
-- Check for blacklist
|
||||||
local is_blacklisted = #self.options.blacklist > 0 and self:check_blacklist(buffer, parent_dirpath, project_path)
|
local is_blacklisted = #self.options.blacklist > 0 and self:check_blacklist(buffer, parent_dirpath, project_path)
|
||||||
@ -825,11 +825,11 @@ function Presence:update_for_buffer(buffer)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
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()
|
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…
x
Reference in New Issue
Block a user