1
0
Fork 0
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:
SIGMazer 2023-09-29 00:55:33 +03:00
parent 2674eefe08
commit e9f7b75bba

View file

@ -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,