pin...@iro.umontreal.ca (François Pinard) writes:

> I notice in org.el that [X] is hard-wired, while I would have liked the
> possibility of changing it by [✓] in my things, which I find both softer
> and cleaner.

How about a variation of this

#+begin_src emacs-lisp
  (font-lock-add-keywords
   'org-mode `(("\\[X\\]"
                (0 (progn (compose-region (match-beginning 0) (match-end 0)
                                          "✓")
                          nil)))))
#+end_src

along the lines of http://www.emacswiki.org/emacs/PrettyLambda

-- 

Reply via email to