VonHeikemen / fine-cmdline.nvim

Enter ex-commands in a nice floating input.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Disable signcolumns in cmdline

mystilleef opened this issue · comments

fine-cmdline shows sign columns. Is there a reason they're enabled? I've attached a screenshot below.

finecmdlinebug

Now that's odd.I don't enable them.

You should be able to turn them off, though.

require('fine-cmdline').setup({
  popup = {
    win_options = {
      signcolumn = 'no'
    }
  }
})

Let me know if it works. I can put this option on the defaults if these random signcolumns become a problem.

That worked, thanks.