VonHeikemen / fine-cmdline.nvim

Enter ex-commands in a nice floating input.
MIT License
445 stars 7 forks source link

Disable signcolumns in cmdline #9

Closed mystilleef closed 2 years ago

mystilleef commented 2 years ago

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

finecmdlinebug

VonHeikemen commented 2 years ago

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.

mystilleef commented 2 years ago

That worked, thanks.