editor-bootstrap / vim-bootstrap

Vim Bootstrap is a generator that provides a simple method of generating a configuration for vim / neovim.
https://vim-bootstrap.com/
MIT License
2.08k stars 209 forks source link

Fix invalid indentLine_concealcursor value type breaking VIM 8.2 (#406) #407

Closed laurentgoudet closed 2 years ago

laurentgoudet commented 2 years ago

The value type for g:indentLine_concealcursor is currently wrong (it should be a string, not a number), causing the indentLine plugin to throw an error starting with VIM 8.2, possibly because type checking became stricter in that version of VIM?

This fixes it by changing the value from 0 to ''.

avelino commented 2 years ago

Thanks @laurentgoudet