How to get rid of redundant hyphen chars when inserting space or tab? #594
-
I made the following changes in config. set.list = true
set.listchars:append "eol:↴"
require('indent_blankline').setup {
char = '│',
show_trailing_blankline_indent = false,
show_end_of_line = true,
}
Now eol characters are inserted as expected. But hyphens are inserted when inserting space or tab chars. |
Beta Was this translation helpful? Give feedback.
Answered by
lukas-reineke
Jul 12, 2023
Replies: 1 comment
-
This is not coming from indent-blankline. That is the default Neovim value for trailing spaces. See |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lukas-reineke
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is not coming from indent-blankline. That is the default Neovim value for trailing spaces. See
:help 'listchars'