emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] ECB and org-mode


From: Eric S Fraga
Subject: Re: [Orgmode] ECB and org-mode
Date: Wed, 14 Oct 2009 18:18:08 +0100
User-agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (Gojō) APEL/10.7 Emacs/23.1 (i486-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)

At Tue, 13 Oct 2009 10:00:29 +0200, Carsten Dominik wrote:
> 
> [snipped: messages regarding jumping into org file from ECB tree buffer and
>  having the hierarchy displayed]
> 
> If you find a solution, please post, maybe I can install it in org.el,
> using eval-after-load (I'm doing this already for a couple
> of other packages that let you jump right in the middle of an Org file).

Carsten,

The following seems to work:

--8<---------------cut here---------------start------------->8---
(defadvice ecb-method-clicked (after esf/org-show-context)
  "Make sure hierarchy is visible when jumping into location from ECB tree 
buffer"
  (if (string= major-mode "org-mode")
      (org-show-context)
    )
  )
--8<---------------cut here---------------end--------------->8---

I have tested this but not exhaustively and so maybe it depends on
some of my specific org-mode settings.  I don't know if anybody else
uses ECB extensively but, if so, it would be great if they tried it.
I don't specifically (require 'ecb) anywhere so I don't think this is
required; I am, however, using emacs 23.1.  

Again, apologies for my minimal (yet increasing) elisp knowledge!

You're welcome to use this in any way you wish (and, before you ask
(;-), I am still awaiting a response from the FSF re: copyright
assignment as I posted the signed page several weeks ago now).

On a related note, I have not managed to figure out why the ECB tree
buffer shows only up to two levels of the org-mode heading hierarchy.
Ideally, I would like it to show all levels.  Is there a variable in
org-mode that may be affecting this?

Thanks,
eric




reply via email to

[Prev in Thread] Current Thread [Next in Thread]