mirror of
https://github.com/neovim/neovim.git
synced 2025-09-08 12:28:18 +00:00
chore(regexp.c): correctly align META_flags (#17668)
This commit is contained in:
@@ -322,17 +322,17 @@ static int reg_strict; // "[abc" is illegal
|
|||||||
static char_u META_flags[] = {
|
static char_u META_flags[] = {
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
/* % & ( ) * + . */
|
// % & ( ) * + .
|
||||||
0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0,
|
0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0,
|
||||||
/* 1 2 3 4 5 6 7 8 9 < = > ? */
|
// 1 2 3 4 5 6 7 8 9 < = > ?
|
||||||
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1,
|
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1,
|
||||||
/* @ A C D F H I K L M O */
|
// @ A C D F H I K L M O
|
||||||
1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1,
|
1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1,
|
||||||
/* P S U V W X Z [ _ */
|
// P S U V W X Z [ _
|
||||||
1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1,
|
1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1,
|
||||||
/* a c d f h i k l m n o */
|
// a c d f h i k l m n o
|
||||||
0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1,
|
0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1,
|
||||||
/* p s u v w x z { | ~ */
|
// p s u v w x z { | ~
|
||||||
1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1
|
1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user