language-ruby
language-ruby copied to clipboard
Hash string symbol syntax highlighted wrong.
Given the following:
# --
HTML = {
"text/css": :link,
"application/javascript": :script,
"image/png": :img,
}
language-ruby highlights it as a string

Even though it's a Symbol:
[1] pry(main)> { "text/css": :hello }
# => {
# :"text/css" => :hello
# }