Closed Milly closed 8 months ago
If we make the following settings. The highlight column position is not valid.
Column position of the highlight is calculated by byte length. However, strwidth() is used.
strwidth()
Use strlen() instead.
strlen()
Problem
If we make the following settings. The highlight column position is not valid.
Cause
Column position of the highlight is calculated by byte length. However,
strwidth()
is used.Fix
Use
strlen()
instead.