From e52c5c62824e378bc9a25fff1f41b0254eb85a8a Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 21 May 2023 22:52:19 -0400 Subject: highlight TODOs in comments --- ted.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ted.h') diff --git a/ted.h b/ted.h index 5b79599..abfe991 100644 --- a/ted.h +++ b/ted.h @@ -101,7 +101,7 @@ typedef u32 SyntaxState; /// types of syntax highlighting enum SyntaxCharType { - // do not change these numbers as it will break backwards compatibility + // do not change these numbers as it will break backwards compatibility with plugins SYNTAX_NORMAL = 0, SYNTAX_KEYWORD = 1, SYNTAX_BUILTIN = 2, @@ -110,6 +110,7 @@ enum SyntaxCharType { SYNTAX_STRING = 5, SYNTAX_CHARACTER = 6, SYNTAX_CONSTANT = 7, + SYNTAX_TODO = 8, }; /// Type of syntax highlighting. typedef u8 SyntaxCharType; -- cgit v1.2.3