aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax')
-rw-r--r--src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax24
1 files changed, 11 insertions, 13 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax
index d5a5e4d9..c09fbec2 100644
--- a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax
+++ b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/cpp.syntax
@@ -11,57 +11,55 @@
"file_suffix" : ["cpp","hpp","c", "h" ]
},
"format" : {
- "columns_per_line" : -1,
- "font_type" : "fixed-width",
+ "font_type" : "monospace",
"line_wrap" : false
},
- "rules" : {
- "1" : {
+ "rules" : [
+ {
"name" : "multi-line comment",
"regex_start" : "/\\*",
"regex_end" : "\\*/",
"foreground" : "colors/comment"
},
- "2" : {
+ {
"name" : "single-line comment",
"regex" : "//[^\n]*",
"foreground" : "colors/comment",
},
- "3" : {
+ {
"name" : "keywords",
"words" : ["char", "class", "const", "double", "enum", "explicit", "extern", "float", "friend", "inline", "int", "long", "namespace", "operator", "private", "protected", "public" , "short", "signals", "signed", "slots", "static", "struct", "template", "typedef", "typename", "union", "unsigned", "virtual", "void", "volatile", "true", "false", "bool"],
"foreground" : "colors/keyword",
"background" : "none",
"font_weight" : "bold"
},
- "4" : {
+ {
"name" : "alternate keywords",
"words" : ["for", "while", "switch", "case", "continue", "break", "if", "else", "return", "exit"],
"foreground" : "colors/altkeyword",
"background" : "none",
"font_weight" : "bold"
},
- "5" : {
+ {
"name" : "class names",
"regex" : "\\b[A-Za-z0-9_-\\.]+(?=::)\\b",
"foreground" : "colors/class",
"font_weight" : "bold"
},
- "6" : {
+ {
"name" : "function names",
"regex" : "\\b[A-Za-z0-9_]+(?=\\()",
"foreground" : "colors/function"
},
- "7" : {
+ {
"name" : "text",
"regex" : "\"[^\"\\\\]*(\\\\(.|\\n)[^\"\\\\]*)*\"|'[^'\\\\]*(\\\\(.|\\n)[^'\\\\]*)*'",
"foreground" : "colors/text"
},
- "8" : {
+ {
"name" : "preprocessor",
"regex" : "^[\\s]*#[^\n]*",
"foreground" : "colors/preprocessor"
}
-
- }
+ ]
}
bgstack15