Skip to content

Commit

Permalink
Fix PHP arrow case that can break bracket highlighting (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Mar 31, 2024
1 parent 724ace9 commit 8b6bdb2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
@@ -1,5 +1,9 @@
# BracketHighlighter

## 2.31.4

- **FIX**: Fix PHP arrow case that could break bracket highlighting.

## 2.31.3

- **FIX**: Fix some Bash cases.
Expand Down
3 changes: 2 additions & 1 deletion bh_core.sublime-settings
Expand Up @@ -447,7 +447,8 @@
"embedding.php punctuation.separator.key-value.php",
"source.php meta.embedded.html punctuation.section.embedded.begin.php",
"source.php meta.embedded.js punctuation.section.embedded.begin.php",
"source.php meta.embedded.css punctuation.section.embedded.begin.php"
"source.php meta.embedded.css punctuation.section.embedded.begin.php",
"keyword.declaration.function.arrow.php "
],
"language_filter": "allowlist",
"language_list": [
Expand Down
2 changes: 1 addition & 1 deletion support.py
Expand Up @@ -5,7 +5,7 @@
import webbrowser
import re

__version__ = "2.31.3"
__version__ = "2.31.4"
__pc_name__ = 'BracketHighlighter'

CSS = '''
Expand Down

0 comments on commit 8b6bdb2

Please sign in to comment.