Re: [O] Visibility cycling at end of headline

2015-04-25 Thread Nicolas Goaziou
Hello, "Charles C. Berry" writes: > This change in org-cycle line 131 seems to have the desired effect: > > --- 128,134 Original > > ;; At an item/headline: delegate to `org-cycle-internal-local'. > ((and (or (and org-cycle-include-plain-lists (org-at-item-p)) > !

Re: [O] Marking/highlighting text temporarily

2015-04-25 Thread Eric Abrahamsen
Vikas Rawal writes: > On 25-Apr-2015, at 6:22 am, John Kitchin > wrote: > > Inspired by this conversation, I hacked up this functional comment > link: > > http://kitchingroup.cheme.cmu.edu/blog/2015/04/24/Commenting-in-org-files/ > > > It has a custom link type that

Re: [O] [PATCH, take 2] Processing language support in Babel

2015-04-25 Thread Nicolas Goaziou
Hello, Jarmo Hurri writes: > Greetings. > > Please find two files attached to this message. > > 1. A patch implementing Processing programming language support in >Babel. The commit message of the patch is the following: Thank you. Applied, with minor stylistic tweaks. I also removed the

Re: [O] [bug, org] footnote-action broken with narrowed buffer

2015-04-25 Thread Nicolas Goaziou
Rasmus writes: > Nicolas Goaziou writes: > Point is moved, though. If narrow shouldn't be "broken" then point > shouldn't be moved. I.e. no move when the definition is not within the > buffer. Fixed in 5954f6aa25b51a3a9a8f258fb0f15ef51be31366. Thank you. >> Outside of the most trivial case

Re: [O] Marking/highlighting text temporarily

2015-04-25 Thread Eric S Fraga
John, thanks for this. Very nice. And I can use my preferred LaTeX annotation with it easily. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.1, Org release_8.3beta-1062-gce4e64

Re: [O] Visibility cycling at end of headline

2015-04-25 Thread Eric S Fraga
On Friday, 24 Apr 2015 at 10:37, Charles C. Berry wrote: [...] > This change in org-cycle line 131 seems to have the desired effect: Looks good. Thanks! -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.1, Org release_8.3beta-1062-gce4e64

Re: [O] Marking/highlighting text temporarily

2015-04-25 Thread Eric Abrahamsen
Eric Abrahamsen writes: > Vikas Rawal writes: > >> On 25-Apr-2015, at 6:22 am, John Kitchin >> wrote: >> >> Inspired by this conversation, I hacked up this functional comment >> link: >> >> >> http://kitchingroup.cheme.cmu.edu/blog/2015/04/24/Commenting-in-org-files/ >>

Re: [O] [bug, ox-latex] footnotes with math in narrowed buffer

2015-04-25 Thread Nicolas Goaziou
Rasmus writes: > Nicolas Goaziou writes: >> >> `org-html--build-mathjax-config' needs to check, in addition to parse >> tree, cdr of all associations in (plist-get >> info :footnote-definition-alist), and values of all parsed keywords. > > It seems you did not do this. I will add this over the

Re: [O] [bug, ox-latex] footnotes with math in narrowed buffer

2015-04-25 Thread Rasmus
Nicolas Goaziou writes: > Rasmus writes: > >> Nicolas Goaziou writes: >>> >>> `org-html--build-mathjax-config' needs to check, in addition to parse >>> tree, cdr of all associations in (plist-get >>> info :footnote-definition-alist), and values of all parsed keywords. >> >> It seems you did not

Re: [O] [bug, org] footnote-action broken with narrowed buffer

2015-04-25 Thread Rasmus
Nicolas Goaziou writes: > Rasmus writes: > >> Nicolas Goaziou writes: > >> Point is moved, though. If narrow shouldn't be "broken" then point >> shouldn't be moved. I.e. no move when the definition is not within the >> buffer. > > Fixed in 5954f6aa25b51a3a9a8f258fb0f15ef51be31366. Thank you.

Re: [O] [bug, org] footnote-action broken with narrowed buffer

2015-04-25 Thread Rasmus
Rasmus writes: >1. Retrieve the footnote in the minibuffer. E.g. org-footnote-action > shows the footnote-definition if it is outside of the narrow (and > known) in the minibuffer? E.g. 2. when using prefix. >2. Show the definition in the minibuffer as editable text (read in

Re: [O] [bug, org] footnote-action broken with narrowed buffer

2015-04-25 Thread Nicolas Goaziou
Rasmus writes: > If it covers x%, for x large, of the realized usecases when working with a > narrowed buffer it's still "worth" it. Please do not mess with user's narrowing. There's no valid reason to do this, no matter how large x is. > In any case, how about some of these alternative approac

[O] Source code evaluation problem

2015-04-25 Thread Damian Bernardini
I'm trying to use ledger blocks inside org with babel: Babel language config: (org-babel-do-load-languages 'org-babel-load-languages '((R . t) (emacs-lisp . t) (ledger . t))) Ledger lisp path: (autoload 'ledger-mode "ledger-mode" "A major mode for Ledger" t) (add-to-list 'load-path

Re: [O] Source code evaluation problem

2015-04-25 Thread Bob Newell
On Sat, Apr 25, 2015 at 5:47 AM, Damian Bernardini wrote: > I'm trying to use ledger blocks inside org with babel: <> > I can evaluate and get results from income and expenses blocks, but when I > try to run C-c C-c on balance block I get: > Symbol's function definition is void: org-id-find-id-fil

Re: [O] Source code evaluation problem

2015-04-25 Thread Eric S Fraga
On Saturday, 25 Apr 2015 at 15:47, Damian Bernardini wrote: > I'm trying to use ledger blocks inside org with babel: [...] > I'm trying the noweb example from: > http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-ledger.html > > I can evaluate and get results from income and expenses bloc

Re: [O] Source code evaluation problem

2015-04-25 Thread Damian Bernardini
You were right. If I do M-x org-version it says: Org-mode version 8.3beta (release_8.3beta-1062-gce4e64-git @ mixed installation! /usr/share/emacs/24.5/lisp/org/ and /home/damian/git/org-mode/lisp/) I've downloaded org from git and loaded it with: (add-to-list 'load-path "~/git/org-mode/lisp") (ad

Re: [O] [bug, org] footnote-action broken with narrowed buffer

2015-04-25 Thread Rasmus
Nicolas Goaziou writes: >> In any case, how about some of these alternative approaches to the issue >> of handling footnotes from a narrowed buffer. >> >>1. Retrieve the footnote in the minibuffer. E.g. org-footnote-action >> shows the footnote-definition if it is outside of the narrow

Re: [O] Source code evaluation problem

2015-04-25 Thread Eric S Fraga
On Saturday, 25 Apr 2015 at 17:55, Damian Bernardini wrote: > You were right. > If I do M-x org-version it says: > Org-mode version 8.3beta (release_8.3beta-1062-gce4e64-git @ mixed > installation! /usr/share/emacs/24.5/lisp/org/ and > /home/damian/git/org-mode/lisp/) > > I've downloaded org from g

Re: [O] Visibility cycling at end of headline

2015-04-25 Thread Charles C. Berry
On Sat, 25 Apr 2015, Nicolas Goaziou wrote: Hello, "Charles C. Berry" writes: This change in org-cycle line 131 seems to have the desired effect: [snip] It should work indeed. Can you wrap it into an appropriate patch and commit it? Regards, -- Nicolas Goaziou Done. Chuck

Re: [O] Source code evaluation problem

2015-04-25 Thread Damian Bernardini
After a reinstallation I forgot to do make autoloads. Now, it's working perfectly. It was my mistake, sorry and thank you for your help. 2015-04-25 18:26 GMT+00:00 Eric S Fraga : > On Saturday, 25 Apr 2015 at 17:55, Damian Bernardini wrote: > > You were right. > > If I do M-x org-version it says:

Re: [O] Visibility cycling at end of headline

2015-04-25 Thread Nicolas Goaziou
"Charles C. Berry" writes: > Done. Thank you. Regards,