[O] export of src block ignores :results

2016-09-28 Thread Thomas Alexander Gerds
Hi org's development version (I am using the one updated yesterday: 2b22d50 Nicolas Go 2016-09-28) seems to ignore the :results setting of a src block. more specifically, the export of this #+BEGIN_SRC R :results output :exports code :session *R* :cache yes 2+2 #+END_SRC #+RESULTS[<2016-09-29

[O] export of src block ignores :results

2016-09-28 Thread Thomas Alexander Gerds
Hi org's development version (I am using the one updated yesterday: 2b22d50 Nicolas Go 2016-09-28) seems to ignore the :results setting of a src block. more specifically, the export of this #+BEGIN_SRC R :results output :exports code :session *R* :cache yes 2+2 #+END_SRC #+RESULTS[<2016-09-29

[O] Use headings in sitemap

2016-09-28 Thread Thibault Marin
Hi list, I would like to generate a sitemap for a published website and use it to extract the last few entries in a specific folder to put on the main page. The site structure looks like: . ├── index.org ├── posts │ ├── A.org │ ├── B.org │ └── C.org ├── misc │ ├── page.org │ └── other-

Re: [O] Cask-initialize messes up org table manipulation commands

2016-09-28 Thread Adam Porter
Heikki Lehvaslaiho writes: > The cell content disappears but to my surprise the cursor jumped out > of the table! Trying with different tables, it came clear that the > cursor always jumped one line down and left of the table). (Under the > left border if you have a box cursor.) That should not h

Re: [O] SyncOrg mention in Org manual ?

2016-09-28 Thread Eric Abrahamsen
Benoît Coste writes: > Hi, > > Last week I published SyncOrg, a fork of MobileOrg for Android. It is > an open-source app for reading org notes from your Android phone > (sources are on GitHub). It still needs work but is already up and > running. The main differences with MobileOrg are a modern

Re: [O] Count words under subtrees

2016-09-28 Thread Adam Porter
Forgive the triple-posting; one of these days I'll learn to wait a bit longer before sharing. Anyway, this updated function will avoid counting the words in drawers and keyword-time lines (e.g. "SCHEDULED:"). Let me know if you find anything else it needs to handle. Skipping source blocks is an

Re: [O] Bug: Feature request: more automatic updating of cookies [8.3.6 (8.3.6-4-g4835be-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20160926/)]

2016-09-28 Thread Adam Porter
Jorge writes: > I request the feature of Org automatically updating cookies when using > structure editing commands such as C-c C-x C-w, C-c C-x C-y, , > and friends. This could be governed by a user option. > > The point is that C-u C-c # (to update cookies in the entire buffer) takes > long e

Re: [O] SyncOrg mention in Org manual ?

2016-09-28 Thread Adam Porter
Probably the first place to put it would be on Worg. :)

Re: [O] Count words under subtrees

2016-09-28 Thread Adam Porter
You might find this useful as well: #+BEGIN_SRC elisp (defun count-words-in-subtree-or-region () (interactive) (call-interactively (if (region-active-p) 'count-words-region 'count-words-in-subtree))) #+END_SRC I bound that to M-= in or

Re: [O] Count words under subtrees

2016-09-28 Thread Adam Porter
I think this should do it: #+BEGIN_SRC elisp (defun count-words-in-subtree () "Count words in current node and child nodes, excluding heading text." (interactive) (save-excursion (save-restriction (widen) (message "%s words" (-sum (org-map-ent

[O] SyncOrg mention in Org manual ?

2016-09-28 Thread Benoît Coste
Hi, Last week I published SyncOrg , a fork of MobileOrg for Android. It is an open-source app for reading org notes from your Android phone (sources are on GitHub ). It still needs work but is alrea

Re: [O] inlinetask with :noexport: seems to be exported?

2016-09-28 Thread Eric S Fraga
On Wednesday, 28 Sep 2016 at 14:03, Rainer M Krug wrote: > Hi > > I wanted to define some inlinetask (works - love it) but want to keep > most of them in the org file and not export them. Adding :noexport: does > not work. What version of org? It works fine for me with a fairly recent (but not up

Re: [O] bug with special entities and (setq org-catch-invisible-edits t)?

2016-09-28 Thread Kaushal Modi
On Wed, Sep 28, 2016 at 3:06 PM John Kitchin wrote: > Hi all, > > If I have (setq org-catch-invisible-edits t) and run > (org-toggle-pretty-entities), then I get an error if I type: F_{A} and > try to continue typing. > > user-error: Edit in invisible region aborted, repeat to confirm with text >

[O] bug with special entities and (setq org-catch-invisible-edits t)?

2016-09-28 Thread John Kitchin
Hi all, If I have (setq org-catch-invisible-edits t) and run (org-toggle-pretty-entities), then I get an error if I type: F_{A} and try to continue typing. user-error: Edit in invisible region aborted, repeat to confirm with text visible If I set that variable to nil, it works fine, and it also

[O] Bug: org-refile, org-archive-subtree and footnotes [8.3.6 (8.3.6-4-g4835be-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20160926/)]

2016-09-28 Thread Jorge
Start Emacs with an empty init file and make the following customizations: - org-log-refile :: 'time - org-refile-targets :: (("/tmp/b.org" :maxlevel . 1)) - org-refile-use-outline-path :: 'file Create an Org buffer named a.org with the following content: --8<---cut here--

[O] strange fontification problem with octave src block

2016-09-28 Thread Eric S Fraga
I have a strange problem (which is only a minor annoyance so not deal breaking): the fontification of src blocks differs from what it looks like when editing the src block. See attached image and, specifically, the "The" immediately after the single quote in the first line. It is correctly colour

Re: [O] How to report more than two dozen small problems with Org's documentation?

2016-09-28 Thread Nicolas Goaziou
Hello, Jorge writes: > Hello. I have noted a number (more than two dozen) of small problems with > Org's documentation. For example, the docstring of org-cut-special mentions > `org-table-copy' where the correct would be `org-table-cut-region'. This one was fixed recently. > Should I report

Re: [O] inlinetask with :noexport: seems to be exported?

2016-09-28 Thread Nicolas Goaziou
Hello, Rainer M Krug writes: > I wanted to define some inlinetask (works - love it) but want to keep > most of them in the org file and not export them. Adding :noexport: does > not work. FWIW, I cannot reproduce it. I tested with the following document, after evaluating (require 'org-inlinetas

[O] inlinetask with :noexport: seems to be exported?

2016-09-28 Thread Rainer M Krug
Hi I wanted to define some inlinetask (works - love it) but want to keep most of them in the org file and not export them. Adding :noexport: does not work. Is there a way of not exporting selected inlinetasks? Thanks Rainer -- Rainer M. Krug email: Rainerkrugsde PGP: 0x0F52F982 signature.a

[O] How to report more than two dozen small problems with Org's documentation?

2016-09-28 Thread Jorge
Hello. I have noted a number (more than two dozen) of small problems with Org's documentation. For example, the docstring of org-cut-special mentions `org-table-copy' where the correct would be `org-table-cut-region'. Should I report one bug for all the documentation problems, or one bug for eac