51 lines
2.1 KiB
Text
51 lines
2.1 KiB
Text
syntax "c#" "\.cs$"
|
|
|
|
# Resets everything back to plain text coloring.
|
|
# Can be used at the start of each theme file.
|
|
color white "^.*$"
|
|
|
|
# Class
|
|
color red "class +[A-Za-z0-9]+ *((:) +[A-Za-z0-9.]+)?"
|
|
|
|
# Annotation
|
|
color yellow "@[A-Za-z]+"
|
|
|
|
color cyan "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]"
|
|
color white "[(]"
|
|
color blue "\<(bool|byte|sbyte|char|decimal|double|float|IntPtr|int|uint|long|ulong|object|short|ushort|string|base|this|var|void)\>"
|
|
color red "\<(alias|as|case|catch|checked|default|do|dynamic|else|finally|fixed|for|foreach|goto|if|is|lock|new|null|return|switch|throw|try|unchecked|while)\>"
|
|
color red "\<(abstract|async|class|const|delegate|enum|event|explicit|extern|get|implicit|in|internal|interface|namespace|operator|out|override|params|partial|private|protected|public|readonly|ref|sealed|set|sizeof|stackalloc|static|struct|typeof|unsafe|using|value|virtual|volatile|yield)\>"
|
|
# LINQ-only keywords (ones that cannot be used outside of a LINQ query - lots others can)
|
|
color red "\<(from|where|select|group|info|orderby|join|let|in|on|equals|by|ascending|descending)\>"
|
|
color red "\<(break|continue)\>"
|
|
color brightwhite "\<(true|false)\>"
|
|
color yellow "[-+/*=<>?:!~%&|]"
|
|
color brightwhite "\<([0-9._]+|0x[A-Fa-f0-9_]+|0b[0-1_]+)[FL]?\>"
|
|
color green ""(\\.|[^"])*"|'(\\.|[^'])*'"
|
|
color yellow "\\([btnfr]|'|\"|\\)"
|
|
color yellow "\\u[A-Fa-f0-9]{4}"
|
|
color brightblack "(^|[[:space:]])//.*"
|
|
color brightblack start="/\*" end="\*/"
|
|
comment "//"
|
|
color brightwhite,cyan "\<TODO\>:?"
|
|
color brightwhite,cyan "\<FIXME\>:?"
|
|
color ,red "[[:space:]]+$"
|
|
color brightyellow " + +| + +"
|
|
|
|
# rainbow indent
|
|
color ,brightblack "^[[:space:]]{32}"
|
|
color ,black "^[[:space:]]{30}"
|
|
color ,brightblack "^[[:space:]]{28}"
|
|
color ,black "^[[:space:]]{26}"
|
|
color ,brightblack "^[[:space:]]{24}"
|
|
color ,black "^[[:space:]]{22}"
|
|
color ,brightblack "^[[:space:]]{20}"
|
|
color ,black "^[[:space:]]{18}"
|
|
color ,brightblack "^[[:space:]]{16}"
|
|
color ,black "^[[:space:]]{14}"
|
|
color ,brightblack "^[[:space:]]{12}"
|
|
color ,black "^[[:space:]]{10}"
|
|
color ,brightblack "^[[:space:]]{8}"
|
|
color ,black "^[[:space:]]{6}"
|
|
color ,brightblack "^[[:space:]]{4}"
|
|
color ,black "^[[:space:]]{2}"
|