rcarriga / nvim-notify

A fancy, configurable, notification manager for NeoVim
MIT License
2.97k stars 78 forks source link

`top_down = false` with `stages` excepts `fade_in_slied_out` causes the window to appear on top of statusline #177

Open fitrh opened 1 year ago

fitrh commented 1 year ago

With the following config

vim.o.termguicolors = true
vim.cmd.packadd("nvim-notify")
local notify = require("notify")
notify.setup({
    stages = "static",
    top_down = false,
})

vim.notify = notify

The window appears on top of the statusline

20230209_154230

This only happens if the stages is not fade_in_slide_out

20230209_154159