File tree 1 file changed +27
-2
lines changed
1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change 86
86
:group 'php-faces
87
87
:tag " PHP Variable Sigil" )
88
88
89
- (defface php-object-op '((t (:inherit default )))
89
+ (defface php-operator '((t (:inherit default )))
90
+ " PHP Mode face used to operators."
91
+ :group 'php-faces
92
+ :tag " PHP Operator" )
93
+
94
+ (defface php-assignment-op '((t (:inherit php-operator)))
95
+ " PHP Mode face used to assignment operators (=, +=, ...)."
96
+ :group 'php-faces
97
+ :tag " PHP Object Op" )
98
+
99
+ (defface php-comparison-op '((t (:inherit php-operator)))
100
+ " PHP Mode face used to comparison operators (==, !=, ===, ...)."
101
+ :group 'php-faces
102
+ :tag " PHP Comparison Op" )
103
+
104
+ (defface php-logical-op '((t (:inherit php-operator)))
105
+ " PHP Mode face used to logical operators (&&, ||, ?:)."
106
+ :group 'php-faces
107
+ :tag " PHP Logical Op" )
108
+
109
+ (defface php-string-op '((t (:inherit php-operator)))
110
+ " PHP Mode face used to logical operators (.)."
111
+ :group 'php-faces
112
+ :tag " PHP String Op" )
113
+
114
+ (defface php-object-op '((t (:inherit php-operator)))
90
115
" PHP Mode face used to object operators (->)."
91
116
:group 'php-faces
92
117
:tag " PHP Object Op" )
131
156
:group 'php-faces
132
157
:tag " PHP $this Sigil" )
133
158
134
- (defface php-errorcontrol-op '((t (:inherit font-lock-type-face )))
159
+ (defface php-errorcontrol-op '((t (:inherit font-lock-type-face )))
135
160
" PHP Mode face used to highlight errorcontrol operators (@).."
136
161
:group 'php-faces
137
162
:tag " PHP ErrorControl Op" )
You can’t perform that action at this time.
0 commit comments