summary refs log tree commit diff
path: root/bin/hi.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-07 00:29:37 -0500
committerJune McEnroe <june@causal.agency>2019-02-07 00:29:37 -0500
commit218700612744aff81f2897e5475605e439d8fe42 (patch)
treea3f8021507fded36d21ab9e652a8c004a97e4160 /bin/hi.c
parentAdd subexpression highlighting to hi (diff)
downloadsrc-218700612744aff81f2897e5475605e439d8fe42.tar.gz
src-218700612744aff81f2897e5475605e439d8fe42.zip
Move comments below strings in hi
Also add the #if 0 "comment" syntax.
Diffstat (limited to 'bin/hi.c')
-rw-r--r--bin/hi.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/bin/hi.c b/bin/hi.c
index 11ffeb31..6c18b5f6 100644
--- a/bin/hi.c
+++ b/bin/hi.c
@@ -31,8 +31,8 @@ enum Class {
 	Normal,
 	Keyword,
 	Macro,
-	Comment,
 	String,
+	Comment,
 	ClassCount,
 };
 
@@ -54,10 +54,11 @@ static const struct Syntax CSyntax[] = {
 	{ Keyword, .subexp = 2, .pattern = CKB"(case|default)"CKB },
 	{ Macro,   .pattern = "^#.*" },
 	{ String,  .pattern = "<[^[:blank:]=]*>" },
-	{ Comment, .pattern = "//.*", },
-	{ Comment, .pattern = "/\\*", .pattend = "\\*/" },
 	{ String,  .pattern = "[LUu]?'([^']|\\\\')*'", },
 	{ String,  .pattern = "([LUu]|u8)?\"([^\"]|\\\\\")*\"", },
+	{ Comment, .pattern = "//.*", },
+	{ Comment, .pattern = "/\\*", .pattend = "\\*/" },
+	{ Comment, .pattern = "^#if 0", .pattend = "^#endif" },
 };
 
 static const struct Language {
@@ -127,8 +128,8 @@ static const enum SGR Style[ClassCount][2] = {
 	[Normal]  = { Reset, Default },
 	[Keyword] = { Reset, White },
 	[Macro]   = { Reset, Green },
-	[Comment] = { Reset, Blue },
 	[String]  = { Reset, Cyan },
+	[Comment] = { Reset, Blue },
 };
 
 static void ansiOutput(enum Class class, const char *str, size_t len) {
@@ -173,8 +174,8 @@ static const char *ClassName[ClassCount] = {
 	[Normal]  = "Normal",
 	[Keyword] = "Keyword",
 	[Macro]   = "Macro",
-	[Comment] = "Comment",
 	[String]  = "String",
+	[Comment] = "Comment",
 };
 
 static void htmlOutput(enum Class class, const char *str, size_t len) {
@@ -193,8 +194,8 @@ static void htmlDocumentHeader(const char *path) {
 		"<style>\n"
 		".hi.Keyword { color: dimgray; }\n"
 		".hi.Macro   { color: green; }\n"
-		".hi.Comment { color: navy; }\n"
 		".hi.String  { color: teal; }\n"
+		".hi.Comment { color: navy; }\n"
 		"</style>\n"
 	);
 	htmlHeader(path);