Shade.nvim
Shade.nvim copied to clipboard
does not work with folke/zen-mode.nvim
Heho,
going into zen mode renders the overlay on top of it. Thus you are not seeing the float (only the cursor).
kind regards
Alexander
Just came across this problem as well, but it's fixable. If you set the on_open
and on_close
functions in the configuration for zen-mode.setup()
to call shade.toggle()
, they work together perfectly. shade.toggle()
does print "off" and "on" depending on the current state, I have vim.cmd(":silent lua require'shade'.toggle()")
, so I don't get that output.