Closed laurentgoudet closed 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?
g:indentLine_concealcursor
string
number
indentLine
This fixes it by changing the value from 0 to ''.
0
''
Thanks @laurentgoudet
The value type for
g:indentLine_concealcursor
is currently wrong (it should be astring
, not anumber
), causing theindentLine
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''
.