Skip to content

Commit

Permalink
Fixes for heredocs.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Feb 20, 2012
1 parent 6c7bf81 commit fc2fafe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Syntaxes/Elixir.tmLanguage
Expand Up @@ -213,9 +213,9 @@ This bundle was based on the Ruby bundle by James Edward Gray II and there is a
</dict>
</dict>
<key>comment</key>
<string>heredoc with indented terminator</string>
<string>Single-quoted heredocs</string>
<key>end</key>
<string>\s*'''$</string>
<string>^\s*'''$</string>
<key>endCaptures</key>
<dict>
<key>0</key>
Expand Down Expand Up @@ -287,9 +287,9 @@ This bundle was based on the Ruby bundle by James Edward Gray II and there is a
</dict>
</dict>
<key>comment</key>
<string>heredoc with indented terminator</string>
<string>Double-quoted heredocs</string>
<key>end</key>
<string>\s*"""$</string>
<string>^\s*"""$</string>
<key>endCaptures</key>
<dict>
<key>0</key>
Expand Down

0 comments on commit fc2fafe

Please sign in to comment.