File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 212
212
(defvar elixir-key-label-offset 0 )
213
213
(defvar elixir-match-label-offset 2 )
214
214
215
- (defvar font-lock-operator-face 'font-lock-operator-face )
216
- (defface font-lock-operator-face
217
- '((((type tty ) (class color )) nil )
218
- (((class color ) (background light ))
219
- (:foreground " darkred" ))
215
+ (defvar elixir-operator-face 'elixir-operator-face )
216
+ (defface elixir-operator-face
217
+ '((((class color ) (min-colors 88 ) (background light ))
218
+ :foreground " darkred" )
219
+ (((class color ) (background dark ))
220
+ (:foreground " lemonchiffon1" ))
220
221
(t nil ))
221
222
" For use with operators."
222
223
:group 'font-lock-faces )
361
362
362
363
; ; Operators
363
364
(,(elixir-rx (group operators))
364
- 1 font-lock -operator-face)
365
+ 1 elixir -operator-face)
365
366
366
367
; ; Atoms and singleton-like words like true/false/nil.
367
368
(,(elixir-rx (group (or atoms bool-and-nil)))
You can’t perform that action at this time.
0 commit comments