Skip to content

Commit

Permalink
Fix handling of nil? predicate.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcgrana committed Apr 5, 2010
1 parent d1f5cbc commit d50d7d2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Syntaxes/Clojure.tmLanguage
Expand Up @@ -57,6 +57,10 @@
<key>include</key>
<string>#regexp</string>
</dict>
<dict>
<key>include</key>
<string>#var</string>
</dict>
<dict>
<key>include</key>
<string>#constants</string>
Expand Down Expand Up @@ -93,7 +97,7 @@
<array>
<dict>
<key>match</key>
<string>(nil)</string>
<string>(nil)(?=(\s|\)|\]|\}))</string>
<key>name</key>
<string>constant.language.nil.clojure</string>
</dict>
Expand Down Expand Up @@ -377,6 +381,13 @@
</dict>
</array>
</dict>
<key>var</key>
<dict>
<key>match</key>
<string>(?&lt;=(\s|\(|\[|\{)\#)'[a-zA-Z0-9\.\-\_\:\+\=\&gt;\&lt;\/\!\?\*]+(?=(\s|\)|\]|\}))</string>
<key>name</key>
<string>meta.var.clojure</string>
</dict>
<key>vector</key>
<dict>
<key>begin</key>
Expand Down

0 comments on commit d50d7d2

Please sign in to comment.