Re: [O] Fontification in Org tables

2012-12-28 Thread François Pinard
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

Re: [O] Fontification in Org tables

2012-12-28 Thread François Pinard
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

Re: [O] Fontification in Org tables

2012-12-28 Thread Jambunathan K
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

Re: [O] Fontification in Org tables

2012-12-28 Thread Bastien
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

[O] Fontification in Org tables

2012-12-28 Thread François Pinard
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