emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] navigation broken in recent maint


From: Charles Berry
Subject: Re: [O] navigation broken in recent maint
Date: Wed, 18 Jun 2014 19:31:00 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

Samuel Wales <samologist <at> gmail.com> writes:

> 
> quick and dirty bug report.  recent org maint.
> 
> 1:
> 
> jumping from magit (maint) to org using RET always goes
> to the wrong location now.
> 
> i don't know that this is org's fault.  i have seen it
> happen once before, which is when i tried
> longlines-mode and similar modes.  i think it was only in org, but i
> am not sure.
> 
> was there a change in org visibility?
> 
> 2:
> 
> id links always go to the wrong location now.  they jump someplace
> near the link.
> 
> dunno if 1 and 2 are related.  i'd guess not but they
> started in the same snapshot.
> 
> can't do ecm at this time.
> 

Here is one I've adapted from the 

  "navigation broken - occur, org-babel-goto-named-src-block, etc fail" 

thread:

   http://article.gmane.org/gmane.emacs.orgmode/87575

Before executing the src block in what follows the custom_id links work.
After executing the src block the links that are far from their target fail.

Anyone who wants to dig into this should see Nicolas Richard's reply at the 
end of that thread:

http://article.gmane.org/gmane.emacs.orgmode/87598

HTH,

Chuck

==============


* headline A
  :PROPERTIES:
  :CUSTOM_ID: idA
  :END:

[[#idB]]

#+NAME: AAA
#+BEGIN_SRC x

#+END_SRC

#+NAME: filler
#+BEGIN_SRC emacs-lisp :results output
  (let ((i ?a))
        (while (< i ?z)
          (princ (format "* %s\n\n\n#+NAME: %s\n\n" 
                         (char-to-string i) 
                         (char-to-string i)))
          (setq i (1+ i))))

#+END_SRC

[[#idA]]
[[#idB]]


#+RESULTS: filler

[[#idA]]
[[#idB]]



* headline B
  :PROPERTIES:
  :CUSTOM_ID: idB
  :END:

[[#idA]]
[[#idB]]

#+NAME: BBB
#+BEGIN_SRC x

#+END_SRC






reply via email to

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