Skip to content
This repository has been archived by the owner on Dec 18, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from cpbotha/cpb-fix-misc-bugs
Browse files Browse the repository at this point in the history
Fix two orgmode parsing bugs
  • Loading branch information
jezcope committed Apr 13, 2019
2 parents 224ace0 + 271b4d6 commit 4976d8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Syntaxes/Org.tmLanguage
Expand Up @@ -17,7 +17,7 @@
^(\*+) # leading stars
\s*([A-Z_]{2,})? # todo keywords
\s*(\[\#[A-Ca-c]\])? # priority
\s*(?=\s+[A-Za-z]+) # expected heading text
\s*(?=\s+[A-Za-z0-9]+) # expected heading text
</string>
<key>beginCaptures</key>
<dict>
Expand Down Expand Up @@ -581,7 +581,7 @@
</dict>
</dict>
<key>match</key>
<string>:([^:]*)(?=:)</string>
<string>:([^:^\s]*)(?=:)</string>
<key>name</key>
<string>meta.keyword.orgmode</string>
</dict>
Expand Down

0 comments on commit 4976d8f

Please sign in to comment.