You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It works perfectly locally and I mapped it into commands like so
-- Function to delete the image immediatelylocalholo_image=nillocalfunctionHolo_del()
ifholo_imagethenholo_image:delete(0, { free=true })
holo_image=nilendend-- Function to display the image from the current buffer's file pathlocalfunctionHolo_disp()
localimage_path=vim.fn.expand"%"ifimage_pathandvim.fn.match(image_path, "\\v\\.png$") ~=-1then-- Get the current bufferHolo_del()
localbuf=vim.api.nvim_get_current_buf()
-- Load the hologram imageholo_image=require("hologram.image"):new(image_path, {})
-- Display the image at the center of the bufferholo_image:display(1, 0, buf, {})
elseprint"No valid PNG file detected"endend
However it does not work through ssh (even through kitten ssh)
kitten icat works on my distant server, but not hologram.
Thank you
The text was updated successfully, but these errors were encountered:
Hello,
Thank you very much for this awesom plugin 😃
It works perfectly locally and I mapped it into commands like so
However it does not work through ssh (even through kitten ssh)
kitten icat works on my distant server, but not hologram.
Thank you
The text was updated successfully, but these errors were encountered: