We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
<=
>=
1 parent 6bfcfb4 commit c82a02aCopy full SHA for c82a02a
CHANGELOG.md
@@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org).
14
* __Fixed:__ Duplication warning shown when evaluating Lisp expressions
15
* __Fixed:__ Duplicated output when `language-emacs-lisp:run-selection`
16
evaluates an expression which is already enclosed by `(message "%s" …)`
17
+* __Fixed:__ Incomplete highlighting of `<=` and `>=` as function names
18
19
20
[v1.1.1]
grammars/emacs-lisp.cson
@@ -456,7 +456,7 @@ repository:
456
457
# Comparison operators
458
name: "keyword.operator.comparison.emacs.lisp"
459
- match: "(?<=\\(|\\s|^)[=<>]|[/<>]=(?=\\s|\\)|$)"
+ match: "(?<=\\(|\\s|^)[/<>]=|[=<>](?=\\s|\\)|$)"
460
},{
461
462
# Pair separator
0 commit comments