Re: [O] [bug] Alignment bug in clock tables

2014-10-16 Thread Francesco Pizzolante
Hi Joost, > I reported this on September 2nd too. Hitting C-c C-c inside the table > fixes the formatting. Also moving to a position inside the table and > doing: M-x org-table-align fixes the formatting. Hence > I tried to create a new formatter function in order to re-align after > writing the t

Re: [O] Text above first headline is being exported, despite :export: tag being used.

2014-10-16 Thread Charles Berry
Brady Trainor uw.edu> writes: > > I read > > , > | ‘SELECT_TAGS’ > | The tags that select a tree for export (org-export-select-tags). The > | default value is :export:. Within a subtree tagged with :export:, > | you can still exclude entries with :noexport: (see below). When >

[O] Text above first headline is being exported, despite :export: tag being used.

2014-10-16 Thread Brady Trainor
At http://orgmode.org/manual/Export-settings.html I read , | ‘SELECT_TAGS’ | The tags that select a tree for export (org-export-select-tags). The | default value is :export:. Within a subtree tagged with :export:, | you can still exclude entries with :noexport: (see below). Whe

Re: [O] after-todo-statistics hook for checkboxes

2014-10-16 Thread James Harkins
At Thu, 16 Oct 2014 18:39:46 +0200, Nicolas Goaziou wrote: > `org-todo-statistics-hook' is used for TODO (i.e. headlines) and > `org-checkbox-statistics-hook' is used for checkboxes (i.e. lists). > I see no bug here (although they aren't called with the same arguments, > but that's another story).

Re: [O] [PATCH] org-clock: Fix CLOCK_INTO_DRAWER property check

2014-10-16 Thread Nicolas Goaziou
Kyle Meyer writes: > Nice. Thanks for fixing my fixes. Patch applied. Thank you. Regards,

Re: [O] How to change a link?

2014-10-16 Thread Thorsten Jolitz
Marcin Borkowski writes: > On 2014-10-15, at 23:52, Nicolas Goaziou wrote: > >> Marcin Borkowski writes: >> >>> I have one more question. What I'm about to do is (basically) put >>> "file:some-file-name::" in front of the link, without changing the >>> description. I could use `org-element-put

Re: [O] How to change a link?

2014-10-16 Thread Marcin Borkowski
On 2014-10-16, at 22:10, Nicolas Goaziou wrote: > Marcin Borkowski writes: > >> OK, so what is the canonical way of doing this? I don't want to use >> org-dp, since it is another dependency. > > There is no canonical way. I would personally collect a reverse list of > internal links and proceed

Re: [O] [PATCH] org-clock: Fix CLOCK_INTO_DRAWER property check

2014-10-16 Thread Kyle Meyer
Nicolas Goaziou wrote: > Kyle Meyer writes: > Actually, it doesn't work either. Under some circumstances (e.g, when > p is a drawer name and q is "t"), q will have precedence over p, which > is not desirable. Good point. > What about this? > > (cond ((equal p "nil") nil) > ((equal p "

Re: [O] [PATCH] org-clock: Fix CLOCK_INTO_DRAWER property check

2014-10-16 Thread Nicolas Goaziou
Kyle Meyer writes: > This new patch should handle that correctly. Thanks. > (cond > - ((or (not (or p q)) (equal p "nil") (equal q "nil")) > org-clock-into-drawer) > - ((or (equal p "t") (equal q "t")) "LOGBOOK") > - ((not p) q) > - (t p > + ((not (or p q)) org-clo

Re: [O] [PATCH] org-clock: Fix CLOCK_INTO_DRAWER property check

2014-10-16 Thread Kyle Meyer
Kyle Meyer wrote: > Nicolas Goaziou wrote: >> This is wrong. >> >> If p is a string, e.g. "FOO", return value should be "FOO". Ditto if >> q contains a string. > > Right. Thanks for pointing that out. I'll update the patch. This new patch should handle that correctly. >From 84799f9b9f4a2e89b3e7

Re: [O] [PATCH] org-clock: Fix CLOCK_INTO_DRAWER property check

2014-10-16 Thread Kyle Meyer
Nicolas Goaziou wrote: > This is wrong. > > If p is a string, e.g. "FOO", return value should be "FOO". Ditto if > q contains a string. Right. Thanks for pointing that out. I'll update the patch.

Re: [O] [PATCH] org-clock: Fix CLOCK_INTO_DRAWER property check

2014-10-16 Thread Nicolas Goaziou
Hello, Kyle Meyer writes: > A question on Stack Overflow [1] reported an issue overriding > `org-clock-into-drawer' with properties (specifically, overriding a > global value of t with a property value nil). Looking into the function > `org-clock-into-drawer', the actual behavior did not match t

Re: [O] How to change a link?

2014-10-16 Thread Nicolas Goaziou
Marcin Borkowski writes: > OK, so what is the canonical way of doing this? I don't want to use > org-dp, since it is another dependency. There is no canonical way. I would personally collect a reverse list of internal links and proceed from there. Regards,

Re: [O] org-export-format-source-code-or-example: End of Buffer

2014-10-16 Thread Nicolas Goaziou
Mishal Awadah writes: > So if I update org-mode this should work again? I don't know, but I can guarantee no bug will come from `org-export-format-source-code-or-example'. Regards,

[O] [PATCH] org-clock: Fix CLOCK_INTO_DRAWER property check

2014-10-16 Thread Kyle Meyer
Hello, A question on Stack Overflow [1] reported an issue overriding `org-clock-into-drawer' with properties (specifically, overriding a global value of t with a property value nil). Looking into the function `org-clock-into-drawer', the actual behavior did not match the documented behavior. The a

Re: [O] org-export-format-source-code-or-example: End of Buffer

2014-10-16 Thread Mishal Awadah
So if I update org-mode this should work again? Thanks, Mish > On Oct 16, 2014, at 10:04 AM, Nicolas Goaziou wrote: > > Hello, > > Mishal Awadah writes: > >> According to Andreas, this is an org-mode issue: >> https://answers.launchpad.net/python-mode/+question/248031 > > The function `org

Re: [O] electric-indent-mode in Emacs 25 not indenting in Org

2014-10-16 Thread Grant Rettke
Two people are interested so let me share with you that you may easily have lots of symbols in this current release of Emacs immediately with http://melpa.milkbox.net/#/pretty-mode On Thu, Oct 16, 2014 at 3:11 AM, Marco Wahl wrote: > Hello William, > >> I got tired of waiting for prettify-symbol

Re: [O] How to change a link?

2014-10-16 Thread Marcin Borkowski
On 2014-10-15, at 23:52, Nicolas Goaziou wrote: > Marcin Borkowski writes: > >> I have one more question. What I'm about to do is (basically) put >> "file:some-file-name::" in front of the link, without changing the >> description. I could use `org-element-put-property' and (AFAIU) >> org-elem

Re: [O] org-export-format-source-code-or-example: End of Buffer

2014-10-16 Thread Nicolas Goaziou
Hello, Mishal Awadah writes: > According to Andreas, this is an org-mode issue: > https://answers.launchpad.net/python-mode/+question/248031 The function `org-export-format-source-code-or-example' doesn't exist anymore, so I think this bug should be closed. Regards, -- Nicolas Goaziou

Re: [O] [PATCH RFC] subtree archive hook?

2014-10-16 Thread Nicolas Goaziou
Hello, Eric Abrahamsen writes: > Thanks for the review! Particularly the concision of this last. I'm > afraid I may never get used to two spaces at the end of a sentence, > though... Patch applied. Thank you. Regards, -- Nicolas Goaziou

Re: [O] after-todo-statistics hook for checkboxes

2014-10-16 Thread Nicolas Goaziou
James Harkins writes: > I do think this issue qualifies as a bug (albeit minor). The real > behavior deviates from the documentation (in a way that's difficult to > justify logically). IMO it should be fixed, or the documentation > should explain that the after todo statistics hook doesn't work f

Re: [O] Turn subscript off by default?

2014-10-16 Thread Sebastien Vauban
Christopher Allan Webber wrote: > In more documents than not, it seems I see someone do something like > > foo_bar > > Common, of course, because most orgmode users are programmers. > > Of course this results in the super awkward rendering of > foo(subscripted:bar). > > I can't remember *ever* ma

[O] Turn subscript off by default?

2014-10-16 Thread Christopher Allan Webber
Hello all, In more documents than not, it seems I see someone do something like foo_bar Common, of course, because most orgmode users are programmers. Of course this results in the super awkward rendering of foo(subscripted:bar). I can't remember *ever* making use of subscript in an orgmode

[O] Getting "org-mobile-sync" to work.

2014-10-16 Thread Sharon Kimble
I'm trying to get mobileorg set up and working, which has worked. But I also want to use "org-mobile-sync.el" from ELPA, the actual package being "org-mobile-sync-20131118.1116". Looking at the source file it says - --8<---cut here---start->8--- ;;; Commentary:

Re: [O] [ob-R] table variable passing broken

2014-10-16 Thread Andreas Leha
Andreas Leha writes: > Charles Berry writes: >> Andreas Leha med.uni-goettingen.de> writes: >> >>> >>> Hi all, >>> >>> There seems to be a bug in table passing as variables now using the >>> tangle-friendly version of passing variables. >>> >>> Here is an example (I get an error also with ema

[O] Can't accomplish agenda sorting '(priority-down category-keep)

2014-10-16 Thread yurkobb
Dear org-mode community, I have a problem sorting my agenda in the following way: group by priority descending, and withing each priority (A, B or C), sort by category as configured in org-agenda-files. My org-agenda-sorting-strategy is set to '(priority-down category-keep). What I see in the ag

Re: [O] electric-indent-mode in Emacs 25 not indenting in Org

2014-10-16 Thread Marco Wahl
Hello William, > I got tired of waiting for prettify-symbols-mode so I compiled Emacs > from source, which gives me version 25.0.50.1 (25 being next after > 24.4). This looks like a nice mode. Thanks for the hint. > I noticed something odd with electric-indent-mode, which I had > enabled, and w

Re: [O] Sharing: Agenda skip function to remove future-scheduled items

2014-10-16 Thread Sebastien Vauban
James Harkins wrote: > Sebastien Vauban writes: > >> I use the following (tricky) settings, which should > do what you have in >> mind, if I'm not mistaken: >> >> #+begin_src emacs-lisp >> ;; Don't show scheduled entries in the global `todo' list. >> (setq org-agenda-todo-ignore-scheduled 'f

Re: [O] beamer and changing font size for example environment

2014-10-16 Thread Eric S Fraga
On Wednesday, 15 Oct 2014 at 21:52, Marcin Borkowski wrote: > On 2014-10-13, at 09:50, Eric S Fraga wrote: > >> You can also /shrink/ individual frames in beamer. > > Please note that "can" does *not* imply "should". Indeed but it's nice to know that it is possible for those cases where it can be