unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* very basic help for writing a new mode
@ 2008-09-05 22:01 what.a.guy
  0 siblings, 0 replies; only message in thread
From: what.a.guy @ 2008-09-05 22:01 UTC (permalink / raw)
  To: Help-gnu-emacs


I have data files which are sexp's of the form:

(version-string
 ("tax name 1" various fields follow)
 ("tax name 2" ...)
 ...
 )

I'd like to have a mode which derives from scheme-mode, but with the "tax
name" strings as entries in a buffer index (imenu or ecb). Here's my
attempt:

(defvar tax-imenu-generic-expression
   '((nil "^\\s-+(\"\\(w+\\)\"" 1)))

(define-derived-mode tax-mode scheme-mode
   "major mode for handling tax files"
   (make-local-variable 'imenu-generic-expression)
   (make-local-variable 'imenu-case-fold-search)
   (setq imenu-generic-expression tax-imenu-generic-expression
   imenu-case-fold-search nil))

(provide 'tax-mode)

This does the right thing with font-locking, but I can't get it to list the
tax names as a buffer index (seems like semantic is still using the
scheme-imenu-generic-expression). I'm very new to elisp, so I'm struggling
even in figuring out how to debug this. Any suggestions?

Wayne
-- 
View this message in context: http://www.nabble.com/very-basic-help-for-writing-a-new-mode-tp19340325p19340325.html
Sent from the Emacs - Help mailing list archive at Nabble.com.





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-09-05 22:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-05 22:01 very basic help for writing a new mode what.a.guy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).