Skip to content

Commit

Permalink
Merge pull request #45 from Porges/patch-1
Browse files Browse the repository at this point in the history
Add support for (some) UnicodeSyntax
  • Loading branch information
JustusAdam authored Aug 24, 2017
2 parents b6f816a + c36b6e6 commit fe24d75
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions syntaxes/haskell.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@
)
(?:\s*,\s*\g<fn>)?
)
\s*(::)</string>
\s*(::|∷)</string>
<key>beginCaptures</key>
<dict>
<key>2</key>
Expand Down Expand Up @@ -565,7 +565,7 @@
</dict>
<dict>
<key>begin</key>
<string>(::)</string>
<string>(::|∷)</string>
<key>beginCaptures</key>
<dict>
<key>1</key>
Expand Down Expand Up @@ -856,7 +856,7 @@
</dict>
<dict>
<key>match</key>
<string>\(\s*([\p{Lu}\p{Lt}][\p{Ll}_\p{Lu}\p{Lt}\p{Nd}']*)\s+([\p{Ll}_][\p{Ll}_\p{Lu}\p{Lt}\p{Nd}']*)\)\s*(=&gt;)</string>
<string>\(\s*([\p{Lu}\p{Lt}][\p{Ll}_\p{Lu}\p{Lt}\p{Nd}']*)\s+([\p{Ll}_][\p{Ll}_\p{Lu}\p{Lt}\p{Nd}']*)\)\s*(=&gt;|⇒)</string>
<key>captures</key>
<dict>
<key>1</key>
Expand Down Expand Up @@ -884,19 +884,19 @@
</dict>
<dict>
<key>match</key>
<string>-&gt;</string>
<string>-&gt;|→</string>
<key>name</key>
<string>keyword.other.arrow.haskell</string>
</dict>
<dict>
<key>match</key>
<string>\b(forall)(\b(?!'))</string>
<string>\b(forall|∀)(\b(?!'))</string>
<key>name</key>
<string>keyword.other.forall.haskell</string>
</dict>
<dict>
<key>match</key>
<string>=&gt;</string>
<string>=&gt;|⇒</string>
<key>name</key>
<string>keyword.other.big-arrow.haskell</string>
</dict>
Expand Down

0 comments on commit fe24d75

Please sign in to comment.