Jambunathan K writes:
> 2. Turn on Hi-lock mode
Wow, Jambunathan, thanks as well! I was not aware of this mode, which
announces to be useful and handsome, especially when some often visited
files would benefit from some very specific highlighting. How nice!
François
Bastien writes:
> (defun fp-fontify-fixme ()
> (font-lock-add-keywords
>nil '(("\\" 0 font-lock-warning-face t)) t))
> HTH,
IDHITAL = it did help indeed, thanks a lot! :-)
I had more fontification to do in some tables, and succeeded because of
your good hint. Joy! :-)
François
François Pinard writes:
> Hi, Org people.
>
> Let me report an old problem of mine about missing fontification in Org
> tables. In my .emacs file, I have:
>
>
> (defun fp-fontify-fixme ()
> (font-lock-add-keywords
>nil '(("\\" 0 font-lock-warning-face t
>
> (let ((hooks '(c-mode-common
Hi François,
François Pinard writes:
> (defun fp-fontify-fixme ()
> (font-lock-add-keywords
>nil '(("\\" 0 font-lock-warning-face t
Use this instead:
(defun fp-fontify-fixme ()
(font-lock-add-keywords
nil '(("\\" 0 font-lock-warning-face t)) t))
HTH,
--
Bastien
Hi, Org people.
Let me report an old problem of mine about missing fontification in Org
tables. In my .emacs file, I have:
(defun fp-fontify-fixme ()
(font-lock-add-keywords
nil '(("\\" 0 font-lock-warning-face t
(let ((hooks '(c-mode-common-hook change-log-mode-hook
cp