mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-05 06:30:28 +09:00
* Add gruvbox truecolor colorscheme * Fixed typo in gruvbox-tv, added operator type in colorschemes * Added operator type to all default themes * Changed operator to symbol * changed operator to symbol due to name conflict * Removed unused 'operator' field. Fixed gutter-error color * Restored the statement group and removed operator
14 lines
594 B
Plaintext
14 lines
594 B
Plaintext
# Micro syntax by <nickolay02@inbox.ru>
|
|
syntax "micro" "\.(micro)$"
|
|
|
|
color statement "\b(syntax|color(-link)?)\b"
|
|
color statement "\b(start=|end=)\b"
|
|
color identifier "\b(default|comment|symbol|identifier|constant(.string(.char)?|.number)?|statement|preproc|type|special|underlined|error|todo|statusline|indent-char|(current-)?line-number|gutter-error|gutter-warning|cursor-line|color-column)\b"
|
|
color constant.number "\b(|h|A|0x)+[0-9]+(|h|A)+\b"
|
|
color constant.number "\b0x[0-9 a-f A-F]+\b"
|
|
|
|
color comment "#.*$"
|
|
|
|
color constant.string ""(\\.|[^"])*""
|
|
color constant.number "#[0-9 A-F a-f]+"
|