init
This commit is contained in:
26
micro/syntax/vala.yaml
Normal file
26
micro/syntax/vala.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
filetype: vala
|
||||
|
||||
detect:
|
||||
filename: "\\.vala$"
|
||||
|
||||
rules:
|
||||
- type: "\\b(float|double|bool|u?char|u?int(8|16|32|64)?|u?short|u?long|void|s?size_t|unichar)\\b"
|
||||
- identifier.class: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]"
|
||||
- statement: "\\b(for|if|while|do|else|case|default|switch|try|throw|catch)\\b"
|
||||
- statement: "\\b(inline|typedef|struct|enum|union|extern|static|const)\\b"
|
||||
- statement: "\\b(operator|new|delete|return|null)\\b"
|
||||
- statement: "\\b(class|override|private|public|signal|this|weak)\\b"
|
||||
- special: "\\b(goto|break|continue)\\b"
|
||||
- constant.bool: "\\b(true|false)\\b"
|
||||
- constant.number: "\\b([0-9]+)\\b"
|
||||
- symbol.operator: "[\\-+/*=<>?:!~%&|]|->"
|
||||
- constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
|
||||
- comment: "(^|[[:space:]])//.*"
|
||||
- comment:
|
||||
start: "/\\*"
|
||||
end: "\\*/"
|
||||
rules: []
|
||||
|
||||
- todo: "TODO:?"
|
||||
- indent-char.whitespace: "[[:space:]]+$"
|
||||
- indent-char: " + +| + +"
|
||||
Reference in New Issue
Block a user