Skip to content

Commit

Permalink
Fix two bugs, bump bugfix version
Browse files Browse the repository at this point in the history
  • Loading branch information
snomos committed May 4, 2021
1 parent a4f0133 commit 52030be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions LexC.seemode/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>NSHumanReadableCopyright</key>
<string>2.5.0, ©The Divvun Group at UiT 2007-2021, http://divvun.no/</string>
<string>2.5.1, ©The Divvun Group at UiT 2007-2021, http://divvun.no/</string>
<key>CFBundleIdentifier</key>
<string>SEEMode.LexC</string>
<key>CFBundleInfoDictionaryVersion</key>
Expand All @@ -13,9 +13,9 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.5.0</string>
<string>2.5.1</string>
<key>CFBundleVersion</key>
<string>2.5.0</string>
<string>2.5.1</string>
<key>SEEMinimumEngineVersion</key>
<string>4.0</string>
</dict>
Expand Down
4 changes: 4 additions & 0 deletions LexC.seemode/Contents/Resources/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Changes with Version 2.5.1
*) Bugfix: allow no space between CONTLEX and ; for colouring the lemma
*) Bugfix: stop comment colouring at the end of the line even when ! is the only comment char

Changes with Version 2.5.0
*) New feature: rudimentary support for Markdown syntax in doccomments
*) Improvement: better/more distinct colours
Expand Down
6 changes: 3 additions & 3 deletions LexC.seemode/Contents/Resources/SyntaxDefinition.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

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

<keywords id="UpperLower" scope="language.constant">
Expand Down Expand Up @@ -144,7 +144,7 @@
</keywords>

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

<state id="CommentInMC" scope="comment.line">
<begin><regex>![^!]</regex></begin>
<begin><regex>![^!\n\r]?</regex></begin>
<end><regex>[\n\r]</regex></end>
</state>

Expand Down

0 comments on commit 52030be

Please sign in to comment.