mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 20:12:59 +02:00
fix warning: line is too long
This commit is contained in:
parent
2674eefe08
commit
e9f7b75bba
1 changed files with 2 additions and 1 deletions
|
@ -823,7 +823,8 @@ function Presence:update_for_buffer(buffer, should_debounce)
|
|||
local use_file_as_main_image = self.options.main_image == "file"
|
||||
local use_neovim_as_main_image = self.options.main_image == "neovim"
|
||||
local assets = {
|
||||
large_image = use_file_as_main_image and asset_key or use_neovim_as_main_image and "neovim" or self.options.main_image,
|
||||
large_image = use_file_as_main_image and asset_key or use_neovim_as_main_image
|
||||
and "neovim" or self.options.main_image,
|
||||
large_text = use_file_as_main_image and file_text or neovim_image_text,
|
||||
small_image = use_file_as_main_image and "neovim" or asset_key,
|
||||
small_text = use_file_as_main_image and neovim_image_text or file_text,
|
||||
|
|
Loading…
Reference in a new issue