diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/recipe-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/recipe-mode.el b/emacs/recipe-mode.el index 320d017..d88f8cf 100644 --- a/emacs/recipe-mode.el +++ b/emacs/recipe-mode.el @@ -39,6 +39,7 @@ ("=>\\(.*\\)" . (1 'font-lock-variable-name-face)) ;; step result ("^[ [:digit:]]*!" . 'font-lock-constant-face) ;; include ("@\\|-\\|>\\|+\\|=>" . 'font-lock-constant-face) ;; symbols + ("^\\(.+?\\)$" . (1 'font-lock-variable-name-face)) ;; variable in assignment (no qty) )) (define-derived-mode recipe-mode prog-mode "rcp" |