Tagged Questions
The font-lock tag has no wiki summary.
12
votes
4answers
3k views
Set Emacs defaut font face per-buffer/mode
How do you change the default face which Emacs uses to style text on a per-mode basis?
For example, say that I am already happy with the face customizations that I have, which include a default ...
6
votes
3answers
598 views
Updating font-lock keywords in emacs without major mode reload
I am doing small modification to SLIME, so that I can get all currently loaded symbols from Lisp, analyze them and make font-lock fontify them.
I managed to do all these steps, but I have a small ...
3
votes
1answer
166 views
In Emacs, how do I display a message in the minibuffer with font face properties?
I want to display a colored string of text in the minibuffer, but when I use the 'message' function, the text-properties of are stripped.
3
votes
2answers
563 views
Fontifying variable references within string literals in Emacs font-lock-mode
When I type the following code in Emacs ruby-mode, the "#{foo}" is fontified in a different color than the enclosing string. How do I do this in my own Emacs mode? I tried to decipher the ruby-mode ...
1
vote
1answer
107 views
highlight “” in strings for emacs
I am a bit of an emacs noob, but not quite sure how to even find this. I use solarized light color theme, which is a low contrast theme with intelligent accents to keep things readable. One thing they ...
1
vote
1answer
56 views
Defining new keywords with font-lock-add-keywords breaks/overrides variable-name coloring (emacs)
I was trying to get emacs to color some additional keywords in C. In particular, I to add RESTRICT. I did:
(add-hook 'c-mode-common-hook
(lambda ()
(font-lock-add-keywords nil
...
1
vote
1answer
105 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
1answer
90 views
Emacs regexp and syntax highlighting
I want to highlight some words (ex. "true", "false"), but only when they are between the tags <?= and ?>.
In the example below I only want to highlight the second "true" keyword:
<input ...
1
vote
1answer
481 views
How do I set Org Mode Agenda default formatting in Emacs?
I want the Org Mode Agenda to have very different formatting to the rest of Emacs. How can I make this happen every time the Agenda is generated?
(N.b. this is not the same question as this because ...
0
votes
1answer
52 views
Emacs php-mode font-lock properties are not applied to certain chars
For example variable dollar signs.
php-mode.el line 1087:
'("\\$\\(\\(?:\\sw\\|\\s_\\)+\\)" (1 font-lock-variable-name-face)) ; $variable
If I'm not mistaken the regexp should match $variable ...
0
votes
2answers
116 views
Unknown number of matches in regex and font-lock
I am trying to use font-lock and elisp's regex to highlight something like this:
class Foo implements A, B, C, D { }
The problem is unknown length of comma separated list after implements. I've ...
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 ...