Provides Emacs font-lock and basic syntax tables for the JAPE (Java Annotation Pattern Engine) files for the GATE (General Architecture for Text Engineering).
Work to be done yet, contributions welcome:
- Indentation
- Embedded Java code
Available on MELPA. To setup MELPA do:
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
And then you can install either through
M-x package-refresh-contents
M-x package-install [RET] jape-mode [RET]
or keep it in your dotfiles:
(unless (package-installed-p 'clojure-mode)
(package-refresh-contents)
(package-install 'clojure-mode))
Place in a location where emacs knows to read emacs-lisp files (such as in .emacs.d/
) and require with (require 'jape-mode)
.
Copyright © 2005 Ilya Goldin Copyright © 2014 Ryan Smith
Distributed under the GNU General Public License; type C-h C-c to view it.