mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.2.3571: some unicode control characters are considered printable
Problem: Some unicode control characters are considered printable. Solution: Make 0x2060 - 0x2069 not printable.
This commit is contained in:
parent
c46f7caad0
commit
9d37b0998f
@ -1067,7 +1067,7 @@ bool utf_printable(int c)
|
||||
static struct interval nonprint[] =
|
||||
{
|
||||
{ 0x070f, 0x070f }, { 0x180b, 0x180e }, { 0x200b, 0x200f }, { 0x202a, 0x202e },
|
||||
{ 0x206a, 0x206f }, { 0xd800, 0xdfff }, { 0xfeff, 0xfeff }, { 0xfff9, 0xfffb },
|
||||
{ 0x2060, 0x206f }, { 0xd800, 0xdfff }, { 0xfeff, 0xfeff }, { 0xfff9, 0xfffb },
|
||||
{ 0xfffe, 0xffff }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user