dgutov pushed a commit to branch master
in repository elpa.
commit ee1926d24a0bea8a9de4a783037ab0bcde8fb351
Author: Dmitry Gutov <[email protected]>
Date: Sun Oct 19 01:35:40 2014 +0700
Fontify negation operator
Closes #168
---
js2-mode.el | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/js2-mode.el b/js2-mode.el
index 81060d1..0ba16c9 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -5305,6 +5305,7 @@ into temp buffers."
(aset table js2-NULL 'font-lock-constant-face)
(aset table js2-TRUE 'font-lock-constant-face)
(aset table js2-FALSE 'font-lock-constant-face)
+ (aset table js2-NOT 'font-lock-negation-char-face)
table)
"Vector whose values are non-nil for tokens that are keywords.
The values are default faces to use for highlighting the keywords.")