Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reopen same image after close buffer, It overlapped with text and image #268

Open
nolleh opened this issue Jan 11, 2025 · 0 comments
Open

Comments

@nolleh
Copy link

nolleh commented Jan 11, 2025

I am suffer from issue that image overlapped with text sometimes.
I failed to find out same issue was reported, so I assume it possibly associated with Ubuntu env. (because many of other users are using mac)

environment

  1. Ubuntu
  2. terminal: kitty
  3. nvim version:
    v0.11.0-dev-1517+ga37784ad83
    RelWithDebInfo
  4. processor:
    magick_cli
  5. config:
    default setting that described in README.md, only changed processor

lazy install

  {
    "3rd/image.nvim",
    build = false,
    opts = {},
    config = function()
      require("custom.configs.image")
    end,
  },

custom.configs.image

require("image").setup({
  backend = "kitty",
  -- processor = "magick_rock", -- or "magick_cli"
  processor = "magick_cli", -- or "magick_cli"
  integrations = {
    markdown = {
      enabled = true,
      clear_in_insert_mode = false,
      download_remote_images = true,
      only_render_image_at_cursor = false,
      floating_windows = false, -- if true, images will be rendered in floating markdown windows
      filetypes = { "markdown", "vimwiki" }, -- markdown extensions (ie. quarto) can go here
    },
    neorg = {
      enabled = true,
      filetypes = { "norg" },
    },
    typst = {
      enabled = true,
      filetypes = { "typst" },
    },
    html = {
      enabled = false,
    },
    css = {
      enabled = false,
    },
  },
  max_width = nil,
  max_height = nil,
  max_width_window_percentage = nil,
  max_height_window_percentage = 50,
  window_overlap_clear_enabled = false, -- toggles images when windows are overlapped
  window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "snacks_notif", "scrollview", "scrollview_sign" },
  editor_only_render_when_focused = false, -- auto show/hide images when the editor gains/looses focus
  tmux_show_only_in_active_window = false, -- auto show/hide images in the correct Tmux window (needs visual-activity off)
  hijack_file_patterns = { "*.png", "*.jpg", "*.jpeg", "*.gif", "*.webp", "*.avif" }, -- render image files as images when opened
})

reproduce

  1. open image file
  2. close buffer
  3. open same image file

Phenomenon

actual

rendered image with overlapped with text
image

expected

rendered image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant