I would like to create only a syntax highlighting minor mode for Emacs. I have the “Writing GNU Emacs Extensions” by O’Reilly, but it does not go into any depth of detail. Is there a simple tutorial for a real or fake programming language highlighting mode?
Thank you
Defining a custom Generic Mode is probably the best place to start. You can define basic syntax highlighting for a language as simply as the following snippet.
It’s great for quickly defining some basic syntax highlighting for obscure languages. I even use it for log files in some cases.