vote up 4 vote down star

I want to write a syntax highlighting extension for Emacs, but I Googling of variations on "emacs syntax highlight tutorial" have all failed. How do I go about learning how to write an Emacs highlighter? What good resources are there for learning how to do such things?

flag

5 Answers

vote up 10 vote down check

You're looking in the wrong place. Look at "font-lock-mode".

link|flag
This looks awesome. I will definitely investigate this further when it's not 1:40 in the morning. – Chris Lutz May 15 at 5:42
vote up 4 vote down

There's a related question, on how to define a major mode with syntax highlighting using 'define-generic-mode. The question focuses on figuring out how to get the syntax highlighting working.

link|flag
vote up 1 vote down

Hi,

unfortunately you were searching for the wrong terms, "syntax highlighting" is not emacs vocabulary :). You should have searched for something like "write emacs mode".

There was already a question for this: "How to write an emacs mode for a new language" with some good pointers.

link|flag
vote up 0 vote down

If you are interested in writing your own highlighting, another question covered this and may be of value to you. It included this code snippet:

(defun django-highlight-comments ()
  (interactive "p")
  (highlight-regexp "{%.*?%}" 'hi-orange))
(add-hook 'html-mode-hook 'django-highlight-comments)

Code courtesy of Ashutosh Mehra's answer.

link|flag
vote up 0 vote down

http://a-kat.com/Emacs%5FMajor%5FModes.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.