dstein64 / nvim-scrollview

A Neovim plugin that displays interactive vertical scrollbars and signs.
MIT License
546 stars 10 forks source link

Signs won't go away #118

Closed SingularisArt closed 1 year ago

SingularisArt commented 1 year ago

Here's my setup:

require("scrollview").setup({
  excluded_filetypes = { "nerdtree" },
  signs_on_startup = {},
  diagnostics_severities = {},
})

But here's the output: screenshot

I'm using the latest commit.

dstein64 commented 1 year ago

Hi @SingularisArt. Thanks for reporting the issue.

Are you enabling signs for gitsigns in your config?

require('scrollview.contrib.gitsigns').setup()

Do the signs still show if you enter :ScrollViewDisable?

SingularisArt commented 1 year ago

The signs still show up even after disabling the scroll view (via the command provided). I don't have require('scrollview.contrib.gitsigns').setup() in my config. All I have is the setup function.

dstein64 commented 1 year ago

"The signs still show up even after disabling the scroll view (via the command provided)."

It sounds like the signs are coming from another plugin (assuming no bug in :ScrollViewDisable). If you uninstall scrollview, are the signs still shown?

SingularisArt commented 1 year ago

NVM. The issue was with statuscol.