commit 288355686bffeee9366f5e80d6d951573f0334f1
parent f7d5a82a5d3ddc7102e7795eddc6defb06036212
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Sun, 11 Aug 2019 20:06:46 +0200
syntax: c: allow an underscore in lowercase type names
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/syntax/c.nanorc b/syntax/c.nanorc
@@ -10,7 +10,7 @@ color brightred "\<[A-Z_][0-9A-Z_]+\>"
color brightmagenta "^[[:space:]]*[A-Z_a-z]+:[[:space:]]*$"
color green "\<(float|double|bool|char|int|short|long|sizeof|enum|void|auto|static|const|struct|union|typedef|extern|(un)?signed|inline)\>"
-color green "\<([[:lower:]]+|(u_?)?int(8|16|32|64|ptr))_t\>"
+color green "\<([[:lower:]][[:lower:]_]*|(u_?)?int(8|16|32|64))_t\>"
color green "\<(class|namespace|template|public|protected|private|typename|this|friend|virtual|override|using|mutable|volatile|register|explicit)\>"
color brightyellow "\<(for|if|while|do|else|case|default|switch)\>"
color brightyellow "\<(try|throw|catch|operator|new|delete)\>"