Skip to content

Commit 2cbefb2

Browse files
authored
[Lisp] Rewrite Syntax (sublimehq#3896)
Resolves sublimehq#1968 Supersedes sublimehq#2387 Supersedes sublimehq#2312 Inspired by sublimehq#2387 This PR actually started with sublimehq#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
1 parent 9f66969 commit 2cbefb2

File tree

7 files changed

+5153
-307
lines changed

7 files changed

+5153
-307
lines changed

Lisp/Fold.tmPreferences

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,27 @@
1111
<array>
1212
<dict>
1313
<key>begin</key>
14-
<string>punctuation.definition.group.begin</string>
14+
<string>punctuation.definition.comment.begin</string>
1515
<key>end</key>
16-
<string>punctuation.definition.group.end</string>
16+
<string>punctuation.definition.comment.end</string>
17+
<key>excludeTrailingNewlines</key>
18+
<false/>
19+
</dict>
20+
<dict>
21+
<key>begin</key>
22+
<string>punctuation.definition.string.begin</string>
23+
<key>end</key>
24+
<string>punctuation.definition.string.end</string>
25+
<key>excludeTrailingNewlines</key>
26+
<false/>
27+
</dict>
28+
<dict>
29+
<key>begin</key>
30+
<string>punctuation.section.parens.begin</string>
31+
<key>end</key>
32+
<string>punctuation.section.parens.end</string>
33+
<key>excludeTrailingNewlines</key>
34+
<false/>
1735
</dict>
1836
</array>
1937
</dict>

0 commit comments

Comments
 (0)