mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-04 22:20:20 +09:00
Add Elm syntax file
This commit is contained in:
38
runtime/syntax/elm.yaml
Normal file
38
runtime/syntax/elm.yaml
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
filetype: elm
|
||||||
|
|
||||||
|
detect:
|
||||||
|
filename: "\\.elm$"
|
||||||
|
|
||||||
|
rules:
|
||||||
|
- statement: "\\b(as|alias|case|else|exposing|if|import|in|let|module|of|port|then|type|)\\b"
|
||||||
|
- statement: "(\\=|\\:|\\->)"
|
||||||
|
- type: "\\b([A-Z][A-Za-z\\d]*)\\b"
|
||||||
|
- identifier: "^([a-z][A-Za-z\\d]*)\\b"
|
||||||
|
- constant.string:
|
||||||
|
start: "\"\"\""
|
||||||
|
end: "\"\"\""
|
||||||
|
skip: "\\\\."
|
||||||
|
rules:
|
||||||
|
- constant.specialChar: "\\\\."
|
||||||
|
- constant.string:
|
||||||
|
start: "\""
|
||||||
|
end: "\""
|
||||||
|
skip: "\\\\."
|
||||||
|
rules:
|
||||||
|
- constant.specialChar: "\\\\."
|
||||||
|
- constant.string:
|
||||||
|
start: "'"
|
||||||
|
end: "'"
|
||||||
|
skip: "\\\\."
|
||||||
|
rules:
|
||||||
|
- constant.specialChar: "\\\\."
|
||||||
|
- comment:
|
||||||
|
start: "--"
|
||||||
|
end: "$"
|
||||||
|
rules:
|
||||||
|
- todo: "(TODO|XXX|FIXME):?"
|
||||||
|
- comment:
|
||||||
|
start: "\\{-"
|
||||||
|
end: "-\\}"
|
||||||
|
rules:
|
||||||
|
- todo: "(TODO|XXX|FIXME):?"
|
||||||
Reference in New Issue
Block a user