syntax highlight

This commit is contained in:
Vadim Lopatin 2015-01-21 09:30:27 +03:00
parent f1c4ec82f2
commit 851b928f23
1 changed files with 3 additions and 1 deletions

View File

@ -87,7 +87,9 @@ enum TokenCategory : ubyte {
// add more here
//....
/// 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