Skip to content

Commit

Permalink
Use faces which contrast more with those in attribute regions
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Oct 8, 2013
1 parent 6c32a5c commit a9a23a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions haml-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ For example, this will highlight all of the following:
(while (haml-move "\\([.#%]\\)[a-z0-9_:\\-]*")
(put-text-property (match-beginning 0) (match-end 0) 'face
(case (char-after (match-beginning 1))
(?% font-lock-function-name-face)
(?# font-lock-keyword-face)
(?. font-lock-type-face))))
(?% font-lock-keyword-face)
(?# font-lock-function-name-face)
(?. font-lock-variable-name-face))))

(block loop
(while t
Expand Down

0 comments on commit a9a23a0

Please sign in to comment.