Skip to content

open image image under cursor in full screen buffer #149

Answered by 3rd
jmbuhr asked this question in Q&A
Discussion options

You must be logged in to vote

Hey, would it be an option to set window_overlap_clear_enabled = true?
It should work with that, and it's a bit more complicated without as the integration doesn't have the capability to pause its work.
We can add that, but maybe the overlap trick is enough.

Something like:

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({
    "git",
    "clone",
    "--filter=blob:none",
    "--branch=stable",
    "https://github.com/folke/lazy.nvim.git",
    lazypath,
  })
end
vim.opt.rtp:prepend(lazypath)

_G.log = function(...)
  local objects = vim.tbl_map(vim.inspect, { ... })
  print(unpack(objects))
end
require("lazy").setup({
  {…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@jmbuhr
Comment options

@jmbuhr
Comment options

@jmbuhr
Comment options

@jmbuhr
Comment options

Answer selected by jmbuhr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants