mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-29 14:22:42 +09:00
Improve new syntax files and fix a region glitch
This commit is contained in:
@@ -1,25 +1,49 @@
|
||||
filetype: swift
|
||||
|
||||
detect:
|
||||
detect:
|
||||
filename: "\\.swift$"
|
||||
|
||||
rules:
|
||||
- symbol.operator: "[.:;,+*|=!?\\%]|<|>|/|-|&"
|
||||
- statement: "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\\ "
|
||||
- statement: "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\\ "
|
||||
- preproc: "(print)"
|
||||
- preproc: "(init)"
|
||||
# Operators
|
||||
- statement: "([.:;,+*|=!?\\%]|<|>|/|-|&)"
|
||||
|
||||
# Statements
|
||||
- statement: "(class|import|let|var|struct|enum|func|if|else|switch|case|default|for|in|internal|external|unowned|private|public|throws)\\ "
|
||||
- statement: "(prefix|postfix|operator|extension|lazy|get|set|self|willSet|didSet|override|super|convenience|weak|strong|mutating|return|guard)\\ "
|
||||
|
||||
# Keywords
|
||||
- statement: "(print)"
|
||||
- statement: "(init)"
|
||||
|
||||
# Numbers
|
||||
- constant.number: "([0-9]+)"
|
||||
|
||||
# Standard Types
|
||||
- type: "\\ ((U)?Int(8|16|32|64))"
|
||||
- constant.bool: "(true|false|nil)"
|
||||
- constant: "(true|false|nil)"
|
||||
- type: "\\ (Double|String|Float|Boolean|Dictionary|Array|Int)"
|
||||
- type: "\\ (AnyObject)"
|
||||
- constant.string: "\"[^\"]*\""
|
||||
- comment: "//.*"
|
||||
- comment: "///.*"
|
||||
|
||||
- constant.string:
|
||||
start: "\""
|
||||
end: "\""
|
||||
rules:
|
||||
- constant.specialChar: "\\\\."
|
||||
|
||||
- comment:
|
||||
start: "//"
|
||||
end: "$"
|
||||
rules:
|
||||
- todo: "(TODO|XXX|FIXME):?"
|
||||
|
||||
- comment:
|
||||
start: "///"
|
||||
end: "$"
|
||||
rules:
|
||||
- todo: "(TODO|XXX|FIXME):?"
|
||||
|
||||
- comment:
|
||||
start: "/\\*\\*"
|
||||
end: "\\*/"
|
||||
rules: []
|
||||
|
||||
- comment: "[/**]"
|
||||
rules:
|
||||
- todo: "(TODO|XXX|FIXME):?"
|
||||
|
||||
Reference in New Issue
Block a user