Re: [O] evaluation issue with ocaml code (due to changes to org-babel-comint-with-output)

2015-12-16 Thread Alan Schmitt
Hello, I finally found the issue (using the plain debugger): the call to org-babel-comint-with-output was set to remove the echo, but the only time there is an echo of the full body is when a single line function has an error, and this echo is useful to show where the error is. Here is a patch

Re: [O] proposed change of org-gnus-store-link for nnir groups

2015-12-16 Thread Nicolas Goaziou
Hello, Thomas Alexander Gerds writes: > sometimes after searching for mail with notmuch, I want to save a link > to one of the articles shown in the nnir summary. since nnir groups are > temporary I would like org-gnus-store-link to treat nnir groups > differently and to use

Re: [O] ret after link follows the link

2015-12-16 Thread Eric Abrahamsen
Samuel Wales writes: > in recent maint, it seems ret on link follows the link. is this > intended? i thought we fixed that so you could do a ret after a link > and get a newline? Timestamps, too, which can be annoying in Capture buffers...

Re: [O] proposed change of org-gnus-store-link for nnir groups

2015-12-16 Thread Thomas Alexander Gerds
great. the updated patch is attached. for ORG-NEWS: , | *** Links | Links stored by org-gnus-store-link in nnir groups | | Since gnus nnir groups are temporary, org-gnus-store-link | now refers to the article's original group. ` best Nicolas Goaziou

[O] Remaining time in effort estimates

2015-12-16 Thread Michael Gummelt
Hi, I set effort estimates on a list of subtasks. I can sum those estimates as described here: http://orgmode.org/manual/Effort-estimates.html What I'd like to do is see the remaining effort estimate time in the supertask. For example, if I have a supertask with 10 subtasks, and I mark 3 of

[O] ret after link follows the link

2015-12-16 Thread Samuel Wales
in recent maint, it seems ret on link follows the link. is this intended? i thought we fixed that so you could do a ret after a link and get a newline?

Re: [O] Converting paragraph to plain lis

2015-12-16 Thread John Kitchin
Here is a solution that works on your paragraph. #+BEGIN_SRC emacs-lisp (defun explode-paragraph () (interactive) (let (start end) ;; narrow to paragraph (backward-paragraph) (forward-line) (setq start (point)) (forward-paragraph) (previous-line) (setq end (point)) ;;

[O] Fwd: Converting paragraph to plain lis

2015-12-16 Thread Doyley, Marvin M.
Hi John, I really appreciate this. Cheers, M --- Begin forwarded message: From: John Kitchin > Date: December 16, 2015 at 6:38:51 AM EST To: marvin doyley > Cc:

Re: [O] Converting paragraph to plain lis

2015-12-16 Thread Marcin Borkowski
On 2015-12-16, at 01:27, marvin doyley wrote: > Hi there, > > Does anybody know how to convert a paragraph to a plain list, and vice versa. > For example, I would like to convert > > Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse viverra >

Re: [O] Wrapping section within LaTeX environment

2015-12-16 Thread Xavier Garrido
Hi Robert, Le 16/12/2015 04:41, Robert Klein a écrit : Hi On 12/13/2015 03:00 PM, Xavier Garrido wrote: Dear orgers, I would like to wrap a given org section between =\begin,\end= LaTeX environment. These sections are identified by a special tag :correction: and to initiate the =\begin= flag

Re: [O] An issue with org-agenda-todo-list-sublevels

2015-12-16 Thread Marcin Borkowski
On 2015-12-16, at 02:54, Nick Dokos wrote: > Marcin Borkowski writes: > >> On 2015-12-14, at 21:48, Nick Dokos wrote: >> >>> Marcin Borkowski writes: >>> > On 2015-12-12, at 09:53, Nicolas Goaziou