The font-lock-mode tag has no wiki summary.
2
votes
1answer
155 views
Is it possible to change an emacs syntax table based on context?
I'm working on improving an emacs major mode for UnrealScript. One of the (many) quirks is that it allows syntax like this for specifying tooltips in the Unreal editor:
var() int MyEditorVar ...
3
votes
2answers
753 views
Emacs: font-lock explanation
I'm using Emacs since a long time and I've customized it quite a lot. I've even written simple ELisp functions and now I'm starting to use macros more and more. I'm not anywhere near a knowledgable ...
1
vote
1answer
268 views
Emacs: font-lock-fontify-region and multiline
I am writing a minor mode for php/html files. I use a function (cf. font-lock-keywords) to fontify <?php ?> blocs.
In order to fontify multilined blocs, I need to set font-lock-multiline to t.
...
2
votes
1answer
182 views
How do I make emacs render mathematical combining characters in font-lock mode?
I am trying to get emacs to properly render mathematical combining characters such the diaeresis, over bar, etc in font-lock mode. The goal is to be able to write something mathematical like x_dot and ...
1
vote
2answers
845 views
What's the font-lock-mode for in emacs?
I have font-lock mode on by putting (global-font-lock-mode 1) in .emacs. And, with font-lock mode "your program certainly look different" as explained in page 274 of Learning GNU emacs.
What I found ...
3
votes
1answer
195 views
Font-lock-keywords: highlighting multiple sub-expression
When setting up font-lock-keywords for a GNU/Emacs mode, is it possible to highlight multiple sub-expressions of a regular expression with a single matcher? What I'd like to do is something along the ...
22
votes
3answers
29k views
Change Emacs syntax highlighting colors
I'm running Emacs, editing files in C++ mode and PHP mode. I love syntax highlighting as a concept, but the default colors are a travesty. I can barely read some of them: way too dark. What is the ...