diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2022-06-08 13:54:36 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2022-06-08 13:54:36 +0300 |
commit | f20c12dd9f920eee1f50f99c8a4c86730e40432c (patch) | |
tree | 368589dced3bd8ccace010d423d514494e4d32ab /emacs/recipe-mode.el | |
parent | d8ac772cb5217df8fce435307524242a50153a07 (diff) | |
download | foodtools-f20c12dd9f920eee1f50f99c8a4c86730e40432c.tar.gz foodtools-f20c12dd9f920eee1f50f99c8a4c86730e40432c.tar.bz2 foodtools-f20c12dd9f920eee1f50f99c8a4c86730e40432c.zip |
Update emacs mode and tests for empty ingredients
Diffstat (limited to 'emacs/recipe-mode.el')
-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" |