Skip to content

Commit

Permalink
[Lisp] Rewrite Syntax (#3896)
Browse files Browse the repository at this point in the history
Resolves #1968 

Supersedes #2387
Supersedes #2312

Inspired by #2387 

This PR actually started with #2387 but ended up being a complete rewrite. 
Hence opening a new PR seems more reasonable.

It uses rules from https://www.lispworks.com/documentation/common-lisp.html
  • Loading branch information
deathaxe authored Apr 19, 2024
1 parent 9f66969 commit 2cbefb2
Show file tree
Hide file tree
Showing 7 changed files with 5,153 additions and 307 deletions.
22 changes: 20 additions & 2 deletions Lisp/Fold.tmPreferences
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,27 @@
<array>
<dict>
<key>begin</key>
<string>punctuation.definition.group.begin</string>
<string>punctuation.definition.comment.begin</string>
<key>end</key>
<string>punctuation.definition.group.end</string>
<string>punctuation.definition.comment.end</string>
<key>excludeTrailingNewlines</key>
<false/>
</dict>
<dict>
<key>begin</key>
<string>punctuation.definition.string.begin</string>
<key>end</key>
<string>punctuation.definition.string.end</string>
<key>excludeTrailingNewlines</key>
<false/>
</dict>
<dict>
<key>begin</key>
<string>punctuation.section.parens.begin</string>
<key>end</key>
<string>punctuation.section.parens.end</string>
<key>excludeTrailingNewlines</key>
<false/>
</dict>
</array>
</dict>
Expand Down
Loading

0 comments on commit 2cbefb2

Please sign in to comment.