[O] [RFC] Change some defcustoms into defcont

2013-10-20 Thread Nicolas Goaziou
Hello, I'd like to suggest changing the following defcustom variables into defconst: - org-deadline-string - org-scheduled-string - org-closed-string - org-clock-string - org-comment-string - org-quote-string - org-effort-property - org-archive-tag There's no fundamental reason t

[O] [RFC] Do not declare drawers to use them

2013-10-20 Thread Nicolas Goaziou
Hello, At the moment, in order to use a drawer, one has to declare its name through `org-drawers' variable or DRAWERS keyword first. I'd like to simplify a bit the process and let the user create drawers on the fly instead. A valid name includes any word constituent, hyphen and underscore charact

Re: [O] Create sub-directories and files from within org

2013-10-20 Thread John Kitchin
I don't understand what you are trying to do here. you could write a lisp function that you run in the ** project name heading that creates a directory by that name. But what would the txt files in that directory be? John --- John Kitchin Associate Professor Dohert

Re: [O] [babel] Commenting out src blocks for tangling

2013-10-20 Thread Alan Schmitt
Hi Eric, schulte.e...@gmail.com writes: >> I see that "hello subtree" is tangled. Does it mean that to comment a >> whole tree I need to comment every subtree (recursively)? >> >> Thanks, >> >> Alan > > I just pushed up a fix, thanks for catching this bug. I'm sorry, but I think there is a bug w

Re: [O] [RFC] Do not declare drawers to use them

2013-10-20 Thread Carsten Dominik
Hello Nicolas, I think one objection agains this patch is that, I think, MobileOrg relies on #+DRAWERS lines to be present to define drawers. Maybe the MobileOrg maintainers for both Android and iOS can chime in here? Otherwise I don't have a significant objection against this change. I am won

[O] Bug dragging lines in tag-restricted agenda

2013-10-20 Thread Thomas Morgan
Hello, Org mode hackers. I'm using Org-mode version 8.2 (`release_8.2-157-g1e018e' @ `/src/org-mode/lisp/') and GNU Emacs 24.3.1 (`x86_64-unknown-linux-gnu', X toolkit, Xaw3d scroll bars) of 2013-09-21. I started Emacs with `emacs -Q -l setup.el' (file attached). This opened a day agenda view.

Re: [O] [RFC] Change some defcustoms into defcont

2013-10-20 Thread Carsten Dominik
Hi Nicolas, I think this change breaks user setups. I don't know how many people do change these keywords, but I know some do, if only for localization purposes. I myself have modified the archive keyword in some cases, if I use this feature for a different purpose. You probably want to do this

[O] rotate tables

2013-10-20 Thread Uwe Brauer
Hi I googled a bit but found no solution to the problem of rotating a table such that | 1 | 2 | 3 | | 4 | 3 | 4 | becomes | 4 | 1 | | 3 | 2 | | 4 | 3 | Thanks Uwe Brauer

Re: [O] rotate tables

2013-10-20 Thread Michael Brand
Hi Uwe On Sun, Oct 20, 2013 at 10:12 PM, Uwe Brauer wrote: > | 1 | 2 | 3 | > | 4 | 3 | 4 | > > becomes > > | 4 | 1 | > | 3 | 2 | > | 4 | 3 | 1) mark table 2) M-x reverse-region 3) with point in the table: M-x org-table-transpose-table-at-point Michael

Re: [O] Drag images from Firefox to org-mode

2013-10-20 Thread Nicolas Richard
Oleh writes: > This can be fixed with a platform-aware function that checks both the > clipboard and the cut-buffer. I suggest to ask for a string with (read-string "URL: " nil nil default), offering the content of the clipboard/kill ring/selections as the DEFAULT. I think it's better to be expli

Re: [O] rotate tables

2013-10-20 Thread Uwe Brauer
>> "Michael" == Michael Brand writes: > Hi Uwe > On Sun, Oct 20, 2013 at 10:12 PM, Uwe Brauer wrote: >> | 1 | 2 | 3 | >> | 4 | 3 | 4 | >> >> becomes >> >> | 4 | 1 | >> | 3 | 2 | >> | 4 | 3 | > 1) mark table > 2) M-x reverse-region > 3) with point in the

[O] src code switches via properties

2013-10-20 Thread MGJT
Dear all, Is there any way to specify src code switches, e.g. #+begin_src maxima +n -r, via a property for the subtree, as one can do for header arguments? I have taken a look at ob-core.el. I found that the function org-babel-params-from-properties makes use of the variable org-babel-common-hea

Re: [O] [babel] Commenting out src blocks for tangling

2013-10-20 Thread Eric Schulte
Alan Schmitt writes: > Hi Eric, > > schulte.e...@gmail.com writes: > >>> I see that "hello subtree" is tangled. Does it mean that to comment a >>> whole tree I need to comment every subtree (recursively)? >>> >>> Thanks, >>> >>> Alan >> >> I just pushed up a fix, thanks for catching this bug. > >

[O] Slight l10n annoyances in Org, switching to Ubuntu 13.10

2013-10-20 Thread François Pinard
Hi, my fellow Orgers. I got annoyances in Org while switching to Ubuntu 13.10, and am sharing there here, in case others would inherit them, to save them some time. English users are not affected. The following problems are not pertaining to Org per se, they just show in there. The strange thing

Re: [O] src code switches via properties

2013-10-20 Thread Eric Schulte
This is addressed by the following section of the manual. http://orgmode.org/manual/Using-header-arguments.html#Using-header-arguments (info "(org)Using header arguments") MGJT writes: > Dear all, > > > Is there any way to specify src code switches, e.g. #+begin_src maxima +n > -r, via a prope

Re: [O] src code switches via properties

2013-10-20 Thread Eric Schulte
My apologies, I misread your email. Please disregard my previous response. Setting switches in the same way as header arguments is not (to my knowledge) possible. Switches are handled seperately from header arguments in org-src.el instead of ob-core.el. Best, Eric Schulte writes: > This is a

Re: [O] [babel] Commenting out src blocks for tangling

2013-10-20 Thread Alan Schmitt
schulte.e...@gmail.com writes: > Alan Schmitt writes: > >> Hi Eric, >> >> schulte.e...@gmail.com writes: >> I see that "hello subtree" is tangled. Does it mean that to comment a whole tree I need to comment every subtree (recursively)? Thanks, Alan >>> >>> I just pus