[HOME]: [Mac OS X]: [MacPython]: [Emacs]: [生存報告記]: [MacEmacs JP Project]: [NTEmacs JP Project]:

MMM-mode(sf.net)

ひとつのファイル内にいくつかのモードを保持する場合に利用する。

JSPやJavaScript、PHPで利用する事になる。

JSPの設定

http://mail.gnu.org/pipermail/help-emacs-windows/2002-September/002062.html

この内容はmmm-sample.elに記述がある。

(mmm-add-group 'jsp
      `((jsp-code
       :submode java
       :match-face (("<%!" . mmm-declaration-submode-face)
                    ("<%=" . mmm-output-submode-face)
                    ("<%"  . mmm-code-submode-face))
       :front "<%[!=]?"
       :back "%>"
       :insert ((?% jsp-code nil @ "<%" @ " " _ " " @ "%>" @)
                (?! jsp-declaration nil @ "<%!" @ " " _ " " @ "%>" @)
                (?= jsp-expression nil @ "<%=" @ " " _ " " @ "%>" @))
           )
       (jsp-directive
       :submode text-mode
       :face mmm-special-submode-face
       :front "<%@"
       :back "%>"
       :insert ((?@ jsp-directive nil @ "<%@" @ " " _ " " @ "%>" @))
        )))


CategoryPrograming CategoryEmacs