From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: =?UTF-8?B?UmU6ICBSZTogcmVxdWVzdDogZmFjZSBmb3Ig4oCeLi4u4oCcIGF0?= =?UTF-8?B?IGNvbGxhcHNlZCBzZWN0aW9ucw==?= Date: Mon, 27 Aug 2007 06:13:50 +0200 Message-ID: References: <876432gh8k.fsf@baldur.tsdh.de> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IPVz8-0006qx-Ie for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 00:13:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IPVz7-0006qc-Tk for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 00:13:54 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IPVz7-0006qZ-Qk for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 00:13:53 -0400 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IPVz7-00011H-F8 for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 00:13:53 -0400 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Daniel Clemente Cc: Tassilo Horn , emacs-orgmode@gnu.org On Aug 26, 2007, at 23:14, Daniel Clemente wrote: > Hi, >> >> I have this in my emacs: >> >> ,---- >> | ;;; Making fold markers ("...") more visible >> | >> | (defface selective-display >> | '((default :background "lightgrey") >> | (((supports :underline "red")) :underline "red")) >> | "Face used for fold markers like ...") >> | >> | (unless standard-display-table >> | (setq standard-display-table (make-display-table))) >> | >> | (set-display-table-slot standard-display-table 'selective-display >> | (vconcat (mapcar >> | (lambda (c) >> | (make-glyph-code c >> 'selective-display)) >> | "..."))) >> `---- >> Ah, this is how to change the font! Thanks! > Wow, that seems a very low-level solution, but it works. I think it > would be better if org-mode would set the =84..." directly with = another > face. The difference is that this hack works globally, not only in org-mode. So if you use outline-minor-mode, for example, it will also work there. Org-mode can modify the ellipsis (currently only with a different string, not with a different face) using the variable `org-ellipsis'. However, I do recommend using Tassilo's global solution over an org-mode specific one. - Carsten