Skip to content

Commit 52030be

Browse files
committed
Fix two bugs, bump bugfix version
1 parent a4f0133 commit 52030be

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

LexC.seemode/Contents/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>NSHumanReadableCopyright</key>
6-
<string>2.5.0, ©The Divvun Group at UiT 2007-2021, http://divvun.no/</string>
6+
<string>2.5.1, ©The Divvun Group at UiT 2007-2021, http://divvun.no/</string>
77
<key>CFBundleIdentifier</key>
88
<string>SEEMode.LexC</string>
99
<key>CFBundleInfoDictionaryVersion</key>
@@ -13,9 +13,9 @@
1313
<key>CFBundlePackageType</key>
1414
<string>BNDL</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>2.5.0</string>
16+
<string>2.5.1</string>
1717
<key>CFBundleVersion</key>
18-
<string>2.5.0</string>
18+
<string>2.5.1</string>
1919
<key>SEEMinimumEngineVersion</key>
2020
<string>4.0</string>
2121
</dict>

LexC.seemode/Contents/Resources/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Changes with Version 2.5.1
2+
*) Bugfix: allow no space between CONTLEX and ; for colouring the lemma
3+
*) Bugfix: stop comment colouring at the end of the line even when ! is the only comment char
4+
15
Changes with Version 2.5.0
26
*) New feature: rudimentary support for Markdown syntax in doccomments
37
*) Improvement: better/more distinct colours

LexC.seemode/Contents/Resources/SyntaxDefinition.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

9898
<!-- % can be followed by: "*~ etc, add any missing symbol to the lists below: -->
9999
<keywords id="Upper" scope="language.constant">
100-
<regex>^\s*(.+?)[:+].*?\s+\S*(?: ".*")? ;</regex>
100+
<regex>^\s*(.+?)[:+].*?\s+\S*(?: ".*")?\s*;</regex>
101101
</keywords>
102102

103103
<keywords id="UpperLower" scope="language.constant">
@@ -144,7 +144,7 @@
144144
</keywords>
145145

146146
<state id="Comment" scope="comment.line">
147-
<begin><regex>![^!]</regex></begin>
147+
<begin><regex>![^!\n\r]?</regex></begin>
148148
<end><regex>[\n\r]</regex></end>
149149
<import mode="Base" state="EmailAndURLContainerState" keywords-only="yes"/>
150150
</state>
@@ -173,7 +173,7 @@
173173
<end><regex>(((?&lt;!\\)(\\\\)*)|^)LEXICON</regex></end>
174174

175175
<state id="CommentInMC" scope="comment.line">
176-
<begin><regex>![^!]</regex></begin>
176+
<begin><regex>![^!\n\r]?</regex></begin>
177177
<end><regex>[\n\r]</regex></end>
178178
</state>
179179

0 commit comments

Comments
 (0)