2016-06-23 19:42:12 +00:00
## Syntax highlighting for Rust.
2020-04-20 17:15:43 +00:00
2016-06-23 19:42:12 +00:00
## Copyright 2015 Luke Francl.
2021-06-27 09:08:42 +00:00
## Licensed under GPL version 3 or newer.
2016-06-23 19:42:12 +00:00
2018-05-18 18:40:08 +00:00
syntax rust "\.(rlib|rs)$"
2016-06-23 19:42:12 +00:00
comment "//"
# Function definitions
color magenta "fn [a-z_0-9]+"
# Reserved words
2019-09-29 13:11:15 +00:00
color yellow "\<(abstract|as|async|await|become|box|break|const|continue|crate|do|dyn|else|enum|extern|false|final|fn|for|if|impl|in|let|loop|macro|match|mod|move|mut|override|priv|pub|ref|return|self|static|struct|super|trait|true|try|type|typeof|unsafe|unsized|use|virtual|where|while|yield)\>"
2016-06-23 19:42:12 +00:00
# Macros
color red "[a-z_]+!"
# Constants
color magenta "[A-Z][A-Z_0-9]+"
# Traits/Enums/Structs/Types/...
2016-07-21 08:21:19 +00:00
color magenta "[A-Z][A-Za-z0-9]+"
2016-06-23 19:42:12 +00:00
# Strings
2020-07-27 08:47:27 +00:00
color green "".*""
color green start="".*\\$" end=".*""
2016-06-23 19:42:12 +00:00
## NOTE: This isn't accurate, but matching "#{0,} for the end of the string is too liberal.
2020-07-27 08:47:27 +00:00
color green start="r#+"" end=""#+"
2016-06-23 19:42:12 +00:00
# Comments
color blue "//.*"
color blue start="/\*" end="\*/"
# Attributes
color magenta start="#!\[" end="\]"
# Some common markers
2020-04-21 10:47:08 +00:00
color brightcyan "XXX|TODO|FIXME|\?\?\?"