From mboxrd@z Thu Jan 1 00:00:00 1970 From: Memnon Anon Subject: Re: Breadcrumbs? Date: Tue, 25 Sep 2012 15:04:41 +0000 (UTC) Message-ID: <87mx0em9o9.fsf@mean.albasani.net> References: <21A5E1E970CD46459ECBE86D6CC4B28C676DD94D@spexch01.WindLogics.local> <87r4pqdhjf.fsf@ericabrahamsen.net> <87vcf2zxfr.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:48110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGWh2-0003lz-Kc for emacs-orgmode@gnu.org; Tue, 25 Sep 2012 11:05:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TGWgx-0000Fo-Go for emacs-orgmode@gnu.org; Tue, 25 Sep 2012 11:05:00 -0400 Received: from plane.gmane.org ([80.91.229.3]:50208) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGWgx-0000Fj-AE for emacs-orgmode@gnu.org; Tue, 25 Sep 2012 11:04:55 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TGWgz-0003ro-15 for emacs-orgmode@gnu.org; Tue, 25 Sep 2012 17:04:57 +0200 Received: from e178212056.adsl.alicedsl.de ([85.178.212.56]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Sep 2012 17:04:57 +0200 Received: from gegendosenfleisch by e178212056.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Sep 2012 17:04:57 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Bastien writes: > Indeed! I've updated `org-display-outline-path' so that it can return a > string: > > (org-display-outline-path nil t t) > > So you can now hook it like this: > > (add-hook 'org-mode-hook > (lambda() (add-to-list 'mode-line-format > '(:eval (org-display-outline-path nil t t)) t))) Interesting. But my modeline is already fairly crowded and headlines can be rather long. I am currently trying this: --8<---------------cut here---------------start------------->8--- (add-hook 'org-mode-hook (lambda() (setq header-line-format '(:eval (org-display-outline-path nil t t))))) --8<---------------cut here---------------end--------------->8--- Memnon