chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] EOF syntax as Emacs comment?


From: Graham Fawcett
Subject: Re: [Chicken-users] EOF syntax as Emacs comment?
Date: Thu, 9 Feb 2006 09:38:14 -0500

On 2/9/06, Reed Sheridan <address@hidden> wrote:
> Having just given up on this myself, I thought I'd ask if anyone out there
> has managed to make Emacs think that #<<EOF .. EOF is a comment?  Or failing
> that, is there at least a way to "comment out" a region so that Emacs thinks
> it's a comment, but Chicken doesn't?   The EOF syntax doesn't play nicely
> with paredit mode as is.

Have you tried about mmm-mode? I'm not an mmm-mode expert, but it
should allow you to tread the EOF block with a different mode.

Here's a sample config from my .emacs file. I use it to add CSS and JS
handling within XHTML files.

(require 'mmm-mode)
(mmm-add-mode-ext-class nil "\\.xml" 'xhtml-css)
(mmm-add-mode-ext-class nil "\\.xml" 'xhtml-js)
(mmm-add-classes
 '((xhtml-css
    :submode css-mode
    :front "type=\"text/css\">"
    :back "</style>")
   (xhtml-js
    :submode c-mode
    :front "type=\"text/javascript\">"
    :back "</script>")))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]