Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
13k 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 ...
2
votes
1answer
118 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 ...
1
vote
1answer
104 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. ...
1
vote
2answers
329 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 ...
0
votes
1answer
88 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 ...