[O] org-log-into-drawer should behave similarly to org-clock-into-drawer

2015-12-14 Thread Nikolay Kudryavtsev
Hello. Currently when org-clock-into-drawer is set to t, it moves all old drawer-less clock records to a new drawer. But org-log-into-drawer does not do the same for log entries. I think it's logical for those two variables to follow the same convention. -- Best Regards, Nikolay Kudryavtsev

[O] [PATCH] New version of org-velocity

2015-12-14 Thread Paul Rodriguez
This updates the version of org-velocity in contrib to the latest version. The new version supports an Ido-like style of refining searches interactively, and changes the default behavior to better accommodate users who use org-velocity for navigation instead of note-taking. Paul Rodriguez From 6b

Re: [O] ox-html, top-row-p

2015-12-14 Thread Nicolas Goaziou
Fabrice Popineau writes: > I am not fond of eval at all, at least not in this specific case. > So yes, your way is at least as good as what I did. Fine. Would you want to provide a patch along these lines? It may require an entry in ORG-NEWS. -- Nicolas

Re: [O] fix bug in ascii plot

2015-12-14 Thread Nicolas Goaziou
Hello, Thierry Banel writes: > The 16c7594 commit (found by bisecting) revealeda bug in ascii-plot. > Attached is a fix. > > To test, consider this table: > | 1 | > | 2 | > | 3 | > > The cursor being in the table, type C-c " a > > > Result with the bug: > | 1 | | > | 2 | | > | 3 | | > #+TB

Re: [O] ox-html, top-row-p

2015-12-14 Thread Fabrice Popineau
2015-12-14 23:49 GMT+01:00 Nicolas Goaziou : > Hello, > > Fabrice Popineau writes: > > > So the problem is due to lexical binding (I am using emacs 25 devel > branch). > > The following variables can't be dynamically bound anymore in ox-html: > > row-number, rowgroup-number, start-rowgroup-p, end

Re: [O] Reference cannot be resolved without publishing

2015-12-14 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > It almost works: the generated html uses two '#' instead of one: > > Mac OS X Fixed. Thank you. Regards, -- Nicolas Goaziou

Re: [O] ox-html, top-row-p

2015-12-14 Thread Nicolas Goaziou
Hello, Fabrice Popineau writes: > So the problem is due to lexical binding (I am using emacs 25 devel branch). > The following variables can't be dynamically bound anymore in ox-html: > row-number, rowgroup-number, start-rowgroup-p, end-rowgroup-p, > top-row-p, bottom-row-p > . > There are 2 opt

Re: [O] [babel] noweb reference with default values

2015-12-14 Thread Andreas Leha
Hi Chuck, "Charles C. Berry" writes: > On Mon, 14 Dec 2015, Andreas Leha wrote: > >> Hi all, >> >> I'd like to hear your ideas on how to include noweb references to code >> blocks in a way that the default values are used as parameter values. >> >> Here is a little example: >> >> #+PROPERTY: head

[O] fix bug in ascii plot

2015-12-14 Thread Thierry Banel
The 16c7594 commit (found by bisecting) revealeda bug in ascii-plot. Attached is a fix. To test, consider this table: | 1 | | 2 | | 3 | The cursor being in the table, type C-c " a Result with the bug: | 1 | | | 2 | | | 3 | | #+TBLFM: 2='(orgtbl-ascii-draw $1 1 3 12) Result with the fix

[O] Which app was John Wegley referring to when he talked about opening Org-mode on IOS?

2015-12-14 Thread Chris Patti
In his "emacs Chat" with Sacha Chau, Mr. Wegley mentions being able to open Org-mode files on IOS. This would be awesome for me and I'm wondering if anyone knows what he was referring to. (I'm guessing it's not MobileOrg because that program on IOS seems to want a rather odd method involving push

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

2015-12-14 Thread Nick Dokos
Marcin Borkowski writes: >> On 2015-12-12, at 09:53, Nicolas Goaziou wrote: >> >>> You can use a dedicated function in `org-agenda-skip-function' for that >>> (e.g., ignore task if one of its parents is a done task). > > OK, so it doesn't work (probably because I'm doing something wrong...) > >

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

2015-12-14 Thread Marcin Borkowski
> On 2015-12-12, at 09:53, Nicolas Goaziou wrote: > >> You can use a dedicated function in `org-agenda-skip-function' for that >> (e.g., ignore task if one of its parents is a done task). OK, so it doesn't work (probably because I'm doing something wrong...) I did this: --8<---cut

[O] [PATCH] Add Support for Evernote in Org-Mac Link

2015-12-14 Thread Mike McLean
The attached patch adds support for Evernote Note links in contrib/org-mac-link.el Commit Message: org-mac-link.el: Add support for Evernote Note Links (org-mac-grab-Evernote-app-p, org-mac-evernote-path): New custom variables to control Evernote grabbing (org-mac-evernote-note-open): New functi

Re: [O] [PATCH] - Org Mac Outlook - Fix Call to Outlook in some cases

2015-12-14 Thread Mike McLean
Updated to fix a typo in the defcustom’s documentation string. On Mon, Dec 14, 2015 at 11:22 AM, Mike McLean wrote: > Earlier in this thread, Rasmus suggested “Perhaps it should be a > defcustom?” > > With a new version (2016) of Microsoft Outlook for Mac that does not > install inside of a "M

Re: [O] [babel] noweb reference with default values

2015-12-14 Thread Charles C. Berry
On Mon, 14 Dec 2015, Andreas Leha wrote: Hi all, I'd like to hear your ideas on how to include noweb references to code blocks in a way that the default values are used as parameter values. Here is a little example: #+PROPERTY: header-args:R :session *testR* The background is that I like to

Re: [O] Fwd: Patch - Org Mac Outlook - Fix Call to Outlook in some cases

2015-12-14 Thread Mike McLean
Earlier in this thread, Rasmus suggested “Perhaps it should be a defcustom?” With a new version (2016) of Microsoft Outlook for Mac that does not install inside of a "Microsoft Office 2011" directory, this indeed should be a defcustom. This patch accomplishes that change. (It also changes the def

[O] [babel] noweb reference with default values

2015-12-14 Thread Andreas Leha
Hi all, I'd like to hear your ideas on how to include noweb references to code blocks in a way that the default values are used as parameter values. Here is a little example: #+PROPERTY: header-args:R :session *testR* The background is that I like to use Org mode table to record small data. #+

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

2015-12-14 Thread Alan Schmitt
Hello, I could use some help to debug this. Could someone please tell me how to debug a macro (I would like to step through it using edebug)? Thanks, Alan On 2015-12-08 10:14, Alan Schmitt writes: > Hello, > > I have found that commit f0bf77e82a3d37ba7548aa40198bc982e9875f1b breaks > evaluati

Re: [O] Reference cannot be resolved without publishing

2015-12-14 Thread Alan Schmitt
Hello Nicolas, On 2015-12-12 10:01, Nicolas Goaziou writes: > Hello, > > Alan Schmitt writes: > >> I have the following files I want to export to html: >> >> common.org: >> #+TITLE: Unison Binaries >> #+OPTIONS: toc:nil num:nil >> #+HTML_HEAD: >> >> * sidebar >> :PROPERTIES: >> :CUSTOM_ID:

Re: [O] Wrapping section within LaTeX environment

2015-12-14 Thread John Kitchin
Cool. You might want to change your string match to :correction: so you don't inadvertently wrap a section with the word correction in the body though. That seems like a possibility here. Xavier Garrido writes: > Le 14/12/2015 02:39, John Kitchin a écrit : >> could you provide a brief example of