Re: [O] org babel, ess, R

2017-07-01 Thread Vikas Rawal
> >> When I press C-c' in an R code block to open an edit buffer with ess, on my >> computer, it splits the screen into two side-by-side windows, with the new >> window on the right showing the edit buffer, and the window on the left >> showing the original file. >> >> I would like to change this

Re: [O] Bug: Org loses data if the user types C-u C-c C-c while composing a state change note [9.0.9 (9.0.9-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20170622/)]

2017-07-01 Thread Samuel Wales
random observations/ideas to be ignored or possibly considered: - iirc note taking uses after command hook or so, which felt bug-inviting to me - note taking is like capture - could use similar or same mechanism, with indirect buffer and user settings [i favor c-c c-c :]] is it possible to

Re: [O] org-protocol documentation

2017-07-01 Thread Mario Martelli
>> I’m not happy with that there is so much information - although >> outdated - in the old Worg documentation which might be hidden to the >> reader. > > Note that most of this documentation is available through other > means, AFAIU. Ok, what I meant are the readers who are not able to use Goog

Re: [O] Bug: Org loses data if the user types C-u C-c C-c while composing a state change note [9.0.9 (9.0.9-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20170622/)]

2017-07-01 Thread Kyle Meyer
Nicolas Goaziou writes: [...] > FWIW, long ago, I added > > (defun ngz-org-capture-hook-handler () > (define-key org-capture-mode-map "\C-x\C-s" 'org-capture-finalize) > (define-key org-capture-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)) > (add-hook 'org-capture-mode-hook 'ngz-org-captu

Re: [O] Org mode version 9.0.9 (9.0.9-elpaplus @ /home/jorge/.emacs.d/elpa/org-plus-contrib-20170622/); Org lost my state change note during idle clock resolution

2017-07-01 Thread Nicolas Goaziou
Hello, Jorge Morais Neto writes: > I changed the TODO state and started composing a state change note. > Later I clocked in a certain task (automatically clocking out of the > previous) and left the computer. When I returned, some 32 min later, > Org was showing clock idle time resolution. I t

Re: [O] org-protocol documentation

2017-07-01 Thread Nicolas Goaziou
Nicolas Goaziou writes: > Mario Martelli writes: >> outdated - in the old Worg documentation which might be hidden to the >> reader. > > Note that Ahem. Note that most of this documentation is available through other means, AFAIU.

Re: [O] org-protocol documentation

2017-07-01 Thread Nicolas Goaziou
Mario Martelli writes: >> Genuine question: is this documentation actually complete enough to use >> the feature? > > I suppose so, if one knows how to configure URL handlers on their OS. > Of course there are some things missing from the documentation. But > it’s more than we have at the moment

Re: [O] [Chris Kauffman] Re: include org-table-move-single-cell.el in org mode

2017-07-01 Thread Nicolas Goaziou
Uwe Brauer writes: > Before I contact Chris, what additional documentation (besides doc > strings) entries in info files? Docstrings, org.texi, and an entry in ORG-NEWS. That's about it. > and what sort of tests? See "test-org-table.el" in testing/lisp/ directory. In particular, see `test-org-

Re: [O] causing work by pasting links

2017-07-01 Thread Mario Martelli
Hi, > * before i paste a link i type [[ > * [[|]] this leaves the point right there. > > then i paste and now i want to press [ to write my notes. > Did you try ‘org-insert-link’? Should be less typing. rgrds Mario — smime.p7s Description: S/MIME cryptographic signature

Re: [O] Parsing property drawers in subtree scope exports

2017-07-01 Thread Nicolas Goaziou
Kaushal Modi writes: > I didn't follow that. Do you mean that the "EXPORT_" is a special > prefix? I do. See (info "(org) Export settings"). > Should that be added to these? > > = > :options-alist '((:hugo-front-matter-format "HUGO_FRONT_MATTER_FORMAT" nil > org-hugo-front-matter-format) >

Re: [O] [Chris Kauffman] Re: include org-table-move-single-cell.el in org mode

2017-07-01 Thread Uwe Brauer
> Hello, > Uwe Brauer writes: > Thank you for the heads-up. > I see no objection to this. I can be useful sometimes. > However, the feature would require documentation and a couple of simple > tests. Would Chris, or someone else, be willing to do that? Before I contact Chri

Re: [O] :noweb from external file

2017-07-01 Thread edgar
On 2017-06-24 06:03, ed...@openmail.cc wrote: On 2017-06-22 22:08, ed...@openmail.cc wrote: Right now, I can only do it like this: ../dir2/file3.org == #+INCLUDE: ../dir1/file1.org::py-numpy #+NAME: py-noweb #+CAPTION: Loading Numpy and Matplotlib onto Python. #+BEG

Re: [O] :noweb from external file

2017-07-01 Thread edgar
On 2017-07-01 06:53, ed...@openmail.cc wrote: * Contribution: Script to convert directory with source to an org-file So, by now, everybody knows that I don't understand squat about lisp. Yet, I created a little bash script (for which there may be an alternative already) to convert a directory wit

Re: [O] org-protocol documentation

2017-07-01 Thread Mario Martelli
Hi, >> Any comments? > > Always ;) :-) > Are there really two functions? You only > document one. Hope it’s clearer now. > Genuine question: is this documentation actually complete enough to use > the feature? I suppose so, if one knows how to configure URL handlers on their OS. Of course t

Re: [O] Parsing property drawers in subtree scope exports

2017-07-01 Thread Kaushal Modi
Hello, On Sat, Jul 1, 2017, 3:48 AM Nicolas Goaziou wrote: > > You can write it :EXPORT_FOO: and define it in the back-end options. > I didn't follow that. Do you mean that the "EXPORT_" is a special prefix? Or "EXPORT" is any backend prefix I choose? Should that be added to these? = :opt

Re: [O] org babel, ess, R

2017-07-01 Thread Nicolas Goaziou
Hello, Vikas Rawal writes: > When I press C-c' in an R code block to open an edit buffer with ess, on my > computer, it splits the screen into two side-by-side windows, with the new > window on the right showing the edit buffer, and the window on the left > showing the original file. > > I would

Re: [O] Controlling new line characters during tangle

2017-07-01 Thread Nicolas Goaziou
Hello, Giacomo M writes: > Ok, rudimentary elisp knowledge seems to help here: > > #+BEGIN_SRC emacs-lisp > (defun jack/dos2unix-post-tangle-hook () > (set-buffer-file-coding-system 'unix 't) > (save-buffer) > ) > (add-hook 'org-babel-post-tangle-hook 'jack/dos2unix-post-tangle-hook) > #+END_SRC

Re: [O] bug?

2017-07-01 Thread Nicolas Goaziou
Hello, John Kitchin writes: > All I thought should happen is that the invisible text adjacent to the > point would be edited (except for the {}). Other than the edge case > where there is no first headline, it seems to work ok as far as I can > tell. Oops. I thought I had fixed it, but it wasn'

Re: [O] Android sync client

2017-07-01 Thread Eric S Fraga
On Friday, 30 Jun 2017 at 15:07, Gour wrote: > Mostly/only tasks (TODO/NEXT items) appearing in my Agenda view…I’ll try > to make org-caldav working for calendar entries… Do you need full 2-way synchronisation or would you want more one way versus the other? I ask because I am more concerned abou

Re: [O] org-protocol documentation

2017-07-01 Thread Nicolas Goaziou
Hello, Mario Martelli writes: > I created a pretty short documentation of org-protocol. It’s still > mainly copied from the old documentation. But distilled :) Thank you. > It might be an idea to link to the old documentation at worg. I'd rather not do that. Ideally, Org internal documentatio

Re: [O] [rows?]

2017-07-01 Thread Nicolas Goaziou
Hello, Uwe Brauer writes: > I tested it quite a bit yesterday. There was only one problem concerning > pabbrev mode which scans the buffer periodically and this scanning did > widen the columns at some point. One can try this out by running > (pabbrev-scavenge-buffer) in an org buffer with colum

Re: [O] [Chris Kauffman] Re: include org-table-move-single-cell.el in org mode

2017-07-01 Thread Nicolas Goaziou
Uwe Brauer writes: > Thanks for your answer. I will ask him, if he does not want to do it, I > might volunteer. What's about signing FSF copyright papers? Good question. We will need them from both Chris and the person writing the documentation. Regards,

Re: [O] [Chris Kauffman] Re: include org-table-move-single-cell.el in org mode

2017-07-01 Thread Uwe Brauer
> Hello, > Uwe Brauer writes: > Thank you for the heads-up. > I see no objection to this. I can be useful sometimes. > However, the feature would require documentation and a couple of simple > tests. Would Chris, or someone else, be willing to do that? Thanks for your answe

Re: [O] Capture template stopped working: nil

2017-07-01 Thread Nicolas Goaziou
Hello, Bastien writes: > Nicolas Goaziou writes: > >> Bastien Guerry writes: >> >>> May I ask you why `eval' in the code base is problematic? >> >> Because 1. it is hideous, 2. it doesn't cope well with lexical >> binding. > > Can you provide with an example on how `eval' can lead to trouble >

Re: [O] minitocs not displaying in latex export

2017-07-01 Thread Sharon Kimble
Rasmus writes: > Sharon Kimble writes: > >> I'm having great difficulties in getting minitocs appearing in my chapters. >> This is my preamble - > > Not quite answering your question, but did you try to use titletoc? > > * Chapter > > #+TOC: headlines 1 local > > Note that the packag

Re: [O] [Chris Kauffman] Re: include org-table-move-single-cell.el in org mode

2017-07-01 Thread Nicolas Goaziou
Hello, Uwe Brauer writes: > I found swapping of cells very useful and came across some code written > by Chris Kauffman, which proved to be very helpful and considerably > shorted by workflow. > > https://cs.gmu.edu/~kauffman/software/org-table-move-single-cell.el > > > Chris agreed that his co

Re: [O] Parsing property drawers in subtree scope exports

2017-07-01 Thread Nicolas Goaziou
Hello, Kaushal Modi writes: > I have this test Org file: > > = > * Title > :PROPERTIES: > :FOO: 123 > :END: > Something > = > > I am working on an exporter back-end, and I need to get the value of the > :FOO property > - During *subtree* export (C-c C-e C-s ..) > - In the body filter fn.

[O] Parsing property drawers in subtree scope exports

2017-07-01 Thread Kaushal Modi
Hello, I have this test Org file: = * Title :PROPERTIES: :FOO: 123 :END: Something = I am working on an exporter back-end, and I need to get the value of the :FOO property - During *subtree* export (C-c C-e C-s ..) - In the body filter fn. So I have only info and body at my access. I lo