nvim-notify icon indicating copy to clipboard operation
nvim-notify copied to clipboard

Notification hides the text behind it

Open shauryagoel opened this issue 2 years ago • 2 comments

Is there a way to hide the notification or make it small dynamically when there is text behind it? On small windows, the text is hidden by the notification. I know that we can change the size of the notification, but, is there any other better way?

shauryagoel avatar Jun 10 '23 10:06 shauryagoel

Or have a command to clear out notifications :smile:

Willem-J-an avatar Jun 22 '23 06:06 Willem-J-an

My workaround for this was to move notifications to the bottom, following https://github.com/rcarriga/nvim-notify/pull/127.

In my config (using lazy.nvim) it looked like https://github.com/gibfahn/dot/commit/f1922ca89e8d9c85be8eeb16979ef4a18eb1c104 :

  {
    "rcarriga/nvim-notify", -- Notification plugin used by noice.
    event = "VeryLazy",
    opts = {
      top_down = false, -- Notifications start at the bottom to stay out of your way.
    },
  },

gibfahn avatar Oct 26 '23 15:10 gibfahn