Skip to content

Commit

Permalink
fix: patch 1.5.1
Browse files Browse the repository at this point in the history
This fixes a minor issue that was only visible in Monaco-based editors
  • Loading branch information
novusnota committed Oct 2, 2024
1 parent 3b63bdf commit 2f4f34e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package/Tact.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
</dict>
<dict>
<key>match</key>
<string>\b([0-9]*)\b</string>
<string>\b([0-9]+)\b</string>
<key>name</key>
<string>constant.numeric.decimal.tact</string>
</dict>
Expand Down Expand Up @@ -919,4 +919,4 @@
</dict>
</dict>
</dict>
</plist>
</plist>
2 changes: 1 addition & 1 deletion package/Tact.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
"name": "keyword.operator.mapsto.tact"
},
{
"match": "\\b([0-9]*)\\b",
"match": "\\b([0-9]+)\\b",
"name": "constant.numeric.decimal.tact"
}
],
Expand Down

0 comments on commit 2f4f34e

Please sign in to comment.