branch: elpa/j-mode commit 91fa4d9d97ffea980281900d0aaf0f6c6ca452f3 Author: LdBeth <andp...@foxmail.com> Commit: LdBeth <andp...@foxmail.com>
update README --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f189630de..732ee715c8 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,8 @@ place in your load path and load / require normally. (autoload 'j-mode "j-mode.el" "Major mode for editing J files" t) ;; Add for detection of j source files if the auto-load fails -(add-to-list 'auto-mode-alist '("\\.ij[rstp]$" . j-mode)) +(add-to-list 'auto-mode-alist '("\\.ij[rsp]$" . j-mode)) +(add-to-list 'auto-mode-alist '("\\.ijt$" . j-lab-mode)) ``` ## J Font Lock @@ -28,7 +29,7 @@ various parts of speech. Those faces are `j-verb-face` `j-adverb-face` standard built in faces to help meet your need. ```lisp -(custom-set-face +(custom-set-faces '(j-verb-face ((t (:foreground "Red")))) '(j-adverb-face ((t (:foreground "Green")))) '(j-conjunction-face ((t (:foreground "Blue"))))