2020-04-20 17:15:43 +00:00
|
|
|
## Syntax highlighting for Ruby.
|
2014-05-16 20:21:34 +00:00
|
|
|
|
2018-02-07 10:25:46 +00:00
|
|
|
syntax ruby "\.rb$"
|
2018-08-28 17:47:40 +00:00
|
|
|
header "^#!.*ruby"
|
2017-11-19 10:10:53 +00:00
|
|
|
magic "Ruby script"
|
2016-05-25 20:13:50 +00:00
|
|
|
comment "#"
|
2014-05-16 20:21:34 +00:00
|
|
|
|
2020-04-20 17:15:43 +00:00
|
|
|
linter ruby -w -c
|
|
|
|
|
2019-10-27 15:34:06 +00:00
|
|
|
# Constants.
|
|
|
|
color brightblue "\<[A-Z]+[0-9A-Z_a-z]*|(\$|@|@@)[0-9A-Z_a-z]+"
|
2015-02-21 10:34:15 +00:00
|
|
|
# Reserved words.
|
|
|
|
color yellow "\<(BEGIN|END|alias|and|begin|break|case|class|def|defined\?|do|else|elsif|end|ensure|false|for|if|in|module)\>"
|
|
|
|
color yellow "\<(next|nil|not|or|redo|rescue|retry|return|self|super|then|true|undef|unless|until|when|while|yield)\>"
|
2014-05-16 20:21:34 +00:00
|
|
|
# Ruby "symbols".
|
2019-08-17 15:01:19 +00:00
|
|
|
color magenta "([ ]|^):[0-9A-Za-z_]+\>"
|
2014-05-16 20:21:34 +00:00
|
|
|
# Some unique things we want to stand out.
|
2006-06-01 17:23:28 +00:00
|
|
|
color brightyellow "\<(__FILE__|__LINE__)\>"
|
2021-10-25 10:31:02 +00:00
|
|
|
|
2014-05-16 20:21:34 +00:00
|
|
|
# Regular expressions.
|
2021-10-25 10:31:02 +00:00
|
|
|
color brightmagenta "(/([^/]|\\/)*/|%r\{([^}]|\\\})*\})[iomx]*"
|
|
|
|
# Shell command expansion is in `backticks` or like %x{this}.
|
|
|
|
color brightblue "`[^`]*`|%x\{[^}]*\}"
|
|
|
|
|
2014-05-16 20:21:34 +00:00
|
|
|
# Strings, double-quoted.
|
2021-10-25 10:31:02 +00:00
|
|
|
color green ""([^"]|\\")*"" "%[QW]?(\{[^}]*\}|\([^)]*\)|<[^>]*>|\[[^]]*\]|\$[^$]*\$|\^[^^]*\^|![^!]*!)"
|
|
|
|
# Expression substitution for inside double-quoted strings, "like #{this}".
|
2006-06-01 17:23:28 +00:00
|
|
|
color brightgreen "#\{[^}]*\}"
|
2014-05-16 20:21:34 +00:00
|
|
|
# Strings, single-quoted.
|
2021-10-25 10:31:02 +00:00
|
|
|
color green "'([^']|\\')*'" "%[qw](\{[^}]*\}|\([^)]*\)|<[^>]*>|\[[^]]*\]|\$[^$]*\$|\^[^^]*\^|![^!]*!)"
|
|
|
|
|
2014-05-16 20:21:34 +00:00
|
|
|
# Comments.
|
2021-10-25 11:32:10 +00:00
|
|
|
color cyan "#([^{#].*|$)"
|
2021-10-25 10:31:02 +00:00
|
|
|
color brightcyan "##([^{].*|$)"
|
2021-10-25 11:32:10 +00:00
|
|
|
color cyan start="^=begin\>" end="^=end\>"
|
2021-10-25 10:31:02 +00:00
|
|
|
|
2014-05-16 20:21:34 +00:00
|
|
|
# Some common markers.
|
2020-04-21 10:47:08 +00:00
|
|
|
color brightcyan "XXX|TODO|FIXME|\?\?\?"
|