mirror of https://github.com/buggins/dlangui.git
syntax highlight
This commit is contained in:
parent
f1c4ec82f2
commit
851b928f23
|
@ -87,7 +87,9 @@ enum TokenCategory : ubyte {
|
||||||
// add more here
|
// add more here
|
||||||
//....
|
//....
|
||||||
/// error
|
/// error
|
||||||
Error = (15 << TOKEN_CATEGORY_SHIFT)
|
Error = (15 << TOKEN_CATEGORY_SHIFT),
|
||||||
|
/// invalid token
|
||||||
|
Error_InvalidToken = (15 << TOKEN_CATEGORY_SHIFT) | 1 // invalid token
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Editor action codes
|
/// Editor action codes
|
||||||
|
|
Loading…
Reference in New Issue