Skip to content

Commit c82a02a

Browse files
committed
Fix broken highlighting of <= and >= operators
1 parent 6bfcfb4 commit c82a02a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org).
1414
* __Fixed:__ Duplication warning shown when evaluating Lisp expressions
1515
* __Fixed:__ Duplicated output when `language-emacs-lisp:run-selection`
1616
evaluates an expression which is already enclosed by `(message "%s" …)`
17+
* __Fixed:__ Incomplete highlighting of `<=` and `>=` as function names
1718

1819

1920
[v1.1.1]

grammars/emacs-lisp.cson

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ repository:
456456

457457
# Comparison operators
458458
name: "keyword.operator.comparison.emacs.lisp"
459-
match: "(?<=\\(|\\s|^)[=<>]|[/<>]=(?=\\s|\\)|$)"
459+
match: "(?<=\\(|\\s|^)[/<>]=|[=<>](?=\\s|\\)|$)"
460460
},{
461461

462462
# Pair separator

0 commit comments

Comments
 (0)