Some tweaking of haml-mode Regexps.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@433 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2007-03-17 22:33:12 +00:00
parent 84029d35d5
commit cfedaaf8b0
1 changed files with 5 additions and 4 deletions

View File

@ -64,11 +64,12 @@
;; Font lock
(defconst haml-font-lock-keywords-1
(list
'("%\\w+" . font-lock-function-name-face)
'("^ *%\\w+" . font-lock-function-name-face)
'("#\\w+" . font-lock-keyword-face)
'("= .*" . font-lock-string-face)
'("[ \t]*- .*" . font-lock-string-face)
'("!!!" . font-lock-constant-face)))
'("\\.\\w+" . font-lock-keyword-face)
'("^ *=.*" . font-lock-string-face)
'("^ *-.*" . font-lock-string-face)
'("^!!!.*" . font-lock-constant-face)))
;; Constants