How do I get 1-char-wide sign column?
dimitry-ishenko opened this issue · 4 comments
dimitry-ishenko commented
The image in README shows 1-char-wide sign column and the description reads "... and a sign segment that is only 1 cell wide that shows all other signs."
Mine never goes less than 2 chars despite setting maxwidth = 1
and colwidth = 1
. I've found references online that 2-char minimum is hard-coded in vim.
How do I achieve 1-char-wide sign column? I am on neovim 0.9.4
luukvbaal commented
The example under install shows the config for the image in the README.
The relevant config is the sign.colwidth
field:
colwidth = 2, -- number of display cells per sign in this segment
dimitry-ishenko commented
Thanks @luukvbaal. That's really strange, but it's working now. :) Not sure what I did wrong earlier.
dimitry-ishenko commented
dimitry-ishenko commented
Nevermind, fillchar
to the rescue. :)