1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

[Emacs] Properly highlight Sass stuff with underscores.

This commit is contained in:
Nathan Weizenbaum 2009-05-27 11:38:40 -07:00
parent 1c88719ead
commit e1817a03bf

View file

@ -72,6 +72,7 @@ text nested beneath them.")
(defconst sass-syntax-table
(let ((st (make-syntax-table)))
(modify-syntax-entry ?- "w" st)
(modify-syntax-entry ?_ "w" st)
st))
(defconst sass-script-syntax-table