From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Breadcrumbs? Date: Tue, 25 Sep 2012 03:16:46 +0200 Message-ID: <87ehlqq4u9.fsf@bzg.ath.cx> References: <21A5E1E970CD46459ECBE86D6CC4B28C676DD94D@spexch01.WindLogics.local> <87lifysyr6.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51091) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGJlW-0004Xw-Rl for emacs-orgmode@gnu.org; Mon, 24 Sep 2012 21:16:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TGJlT-0000U9-KF for emacs-orgmode@gnu.org; Mon, 24 Sep 2012 21:16:46 -0400 Received: from mail-wg0-f49.google.com ([74.125.82.49]:48301) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGJlT-0000U5-Cm for emacs-orgmode@gnu.org; Mon, 24 Sep 2012 21:16:43 -0400 Received: by wgbdt14 with SMTP id dt14so4050274wgb.30 for ; Mon, 24 Sep 2012 18:16:42 -0700 (PDT) In-Reply-To: <87lifysyr6.fsf@bzg.ath.cx> (Bastien's message of "Tue, 25 Sep 2012 02:59: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: Ken Williams Cc: "emacs-orgmode@gnu.org" Bastien writes: > What about this? Or, inspired by Anthony's use of `org-get-outline-path': (defun org-show-olpath () "Show the outline path." (org-no-properties (mapconcat 'identity (append (ignore-errors (org-get-outline-path)) (ignore-errors (list (org-get-heading t t)))) "/"))) (add-hook 'org-mode-hook (lambda() (add-to-list 'mode-line-format '(:eval (org-show-olpath)) t))) -- Bastien