Elixir allows 8 different delimiters for regex: ``` elixir ~r/hello/ ~r|hello| ~r"hello" ~r'hello' ~r(hello) ~r[hello] ~r{hello} ~r<hello> ``` We should support proper highlighting for each of these.