Re: [O] problems while editing in org-columns mode

2014-05-30 Thread Bastien
Hi Andrea, I pushed another fix for the second problem you reported, something along the lines of what you suggested. Let me know if it works for you, and thanks for reporting this, -- Bastien

Re: [O] org-mode + pomodoro

2014-05-30 Thread Arthur Leonard Andersen
Sergey Konoplev gmail.com> writes: > > Hi all, > > Are there ways to use Pomodoro technique > (http://www.pomodorotechnique.com/) with org-mode? If there are what > are the best practices? > > Thank you in advice. > There is the org-pomodoro package. https://github.com/lolownia/org-pomodoro

Re: [O] [RFC] Org Minor Mode?

2014-05-30 Thread Thorsten Jolitz
Bastien writes: Hi Bastien, > Thorsten Jolitz writes: > >> This is quite low level and I haven't done anything on this level yet, >> but it might be a way to stick with performant constant regexp strings, >> but make them more general. > > That's an idea -- but the one I wanted to explore is th

[O] org-agenda-insert-diary-make-new-entry adds entry as first child?

2014-05-30 Thread Nikolai Weibull
Hi! The documentation for org-agenda-insert-diary-make-new-entry says that it adds the entry as the last child, but it seems that it’s adding it as the first child instead. (My org-agenda-insert-diary-strategy is 'date-tree.)

Re: [O] move org line to next superior level

2014-05-30 Thread Thorsten Jolitz
Uwe Ziegenhagen writes: > Thorsten Jolitz gmail.com> writes: > > >> #+begin_src emacs-lisp >> (defun tj/move-entry-to-next-day () >> "Move entry at point to next parent and tag it." >> (unless (org-on-heading-p) >> (outline-previous-heading)) >> (org-mark-subtree) >> (k

Re: [O] still seeing semi-regular lockups

2014-05-30 Thread Nicolas Goaziou
Hello, Daimrod writes: > I've attached part of the traces (the whole traces are way too big) and > the backtraces. Thanks for looking into this. However, you are running a compiled Org, which renders backtraces less useful. Also, you may want to disable cache refresh on idle time with, e.g.,

Re: [O] org-table-copy-down incrementor

2014-05-30 Thread Stacey Marshall
Hi Bastien, I'm late to this party I know, but wanted to confirm all is working well for me too. Best regards, Stacey On 20 May 2014, at 15:11, Bastien wrote: > Hi Michael, > > Michael Brand writes: > >> For me it would be already enough and preferred when the increment >> would be the sa

Re: [O] org-table: Reference *one* cell below a hline?

2014-05-30 Thread Bastien
Hi James, James Harkins writes: > I have this: > > | Section | Seconds | > |--+-| > | Theme| 54 | > | 12/8 | 80 | > | 6/8 | 66 | > | Clarinet | 116 | > | Oboe | 89 | > | Bassoon | 60 | > |--+-| > | |

Re: [O] org-agenda-insert-diary-make-new-entry adds entry as first child?

2014-05-30 Thread Bastien
Hi Nikolai, Nikolai Weibull writes: > The documentation for org-agenda-insert-diary-make-new-entry says that > it adds the entry as the last child, but it seems that it’s adding it > as the first child instead. (My org-agenda-insert-diary-strategy is > 'date-tree.) I fixed the docstring, thank

Re: [O] Filtering org-clock-display

2014-05-30 Thread Bastien
Hi Noah, Noah Slater writes: > That's pretty cool. Any reason it doesn't use the same syntax as the > :tstart param though? I first want to see if the new feature is useful before adding up more subfeatures. So let's wait until 8.3 is released and see if (more) people want more flexibility her

Re: [O] getting directory of org installation in elisp

2014-05-30 Thread Bastien
Hi Rainer, Rainer M Krug writes: > And I want to load this R code into R, controlled from org. Ok, I understand now -- then yes, you can use the etc/ directory for R code that will be loaded. But please anticipate that this new etc/ content needs to be added to Emacs when people install Org --

Re: [O] org-plus-contrib package upgrade fails

2014-05-30 Thread Bastien
Hi Sharon, Sharon Kimble writes: > If it is a failing at my end, where is "hack-local-variables" please > and what should the suffix be? I don't have a fix for this, but I do recommend using the "manual" method of cloning the git repository. ~$ git clone git://orgmode.org/org-mode.git ~$ git c

Re: [O] [RFC] Org Minor Mode?

2014-05-30 Thread Bastien
Hi Thorsten, Thorsten Jolitz writes: > One problem is that more and more Org functions seems to get redefined > in terms of the new parser functionality, and obviously then can't be > used anymore outside org-mode. That's not a problem if we follow the path I suggest: since the tempoary buffer

Re: [O] Moving footnotes

2014-05-30 Thread Bastien
Hi Leonard, from the master branch, you can now use `org-footnote-inline-footnotes' to convert external footnotes into inline ones. This is also accessible from the `C-c C-x f' menu that gets displayed when calling `C-c C-x f' from a location where no sensible footnote action can be done, or from

[O] Escaping again!

2014-05-30 Thread Rustom Mody
I have some pseudo-haskell in slides I am preparing with org and ox-reveal - \(+\):: Int → Int → Int - \(-\):: Int → Int →Int - \(\leq\):: Int → Int → Bool - \(=\):: Int → Int → Bool Those '::' are haskell for has type However putting a space before the '::' makes it into a definition list! Ive

Re: [O] Moving footnotes

2014-05-30 Thread Nicolas Goaziou
Hello, Bastien writes: > from the master branch, you can now use > `org-footnote-inline-footnotes' to convert external footnotes into > inline ones. You didn't ask for it, but here are a few comments about it anyway ;) (concat org-footnote-re "\\]") will fail for numbered footnotes, since th

Re: [O] [RFC] Org Minor Mode?

2014-05-30 Thread Thorsten Jolitz
Bastien writes: Hi Bastien, > Thorsten Jolitz writes: > >> One problem is that more and more Org functions seems to get redefined >> in terms of the new parser functionality, and obviously then can't be >> used anymore outside org-mode. > > That's not a problem if we follow the path I suggest:

Re: [O] BUG in reference by ID to remote table (was Re: org babel question: reference tables in remote file)

2014-05-30 Thread Bastien
Hi William, William Henney writes: > There is an apparent bug when using the ID property to refer to cells > in remote tables, which is currently the only way to refer to a table > in an external file. One way to deal with this is to set (setq org-table-use-standard-references nil) Since the

Re: [O] Moving footnotes

2014-05-30 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > You didn't ask for it, but here are a few comments about it anyway ;) Sure ! I unconsciously asked, I guess. > All in all, I'm not convinced this should be a function provided in Org. Okay. Still, it's useful to have it *somewhere*. If you have a momen

Re: [O] [RFC] Org Minor Mode?

2014-05-30 Thread Bastien
Hi Thorsten, Thorsten Jolitz writes: > I'm still not sure if this path isn't just the outorg path: copy a > subtree or a whole buffer into a temp-buffer, uncomment the comment > sections, enclose the source-code in source-blocks, and put the buffer > in Org-mode - only that the tmp buffer in thi

Re: [O] Escaping again!

2014-05-30 Thread Bastien
Hi Rustom, Rustom Mody writes: > - \(+\):: Int → Int → Int > - \(-\):: Int → Int →Int > - \(\leq\):: Int → Int → Bool > - \(=\):: Int → Int → Bool 1. \(+\) :: Int → Int → Int 2. \(-\) :: Int → Int →Int 3. \(\leq\) :: Int → Int → Bool 4. \(=\) :: Int → Int → Bool would do -- but this is not ent

Re: [O] org-agenda-insert-diary-make-new-entry adds entry as first child?

2014-05-30 Thread Nikolai Weibull
On Fri, May 30, 2014 at 2:10 PM, Bastien wrote: > Nikolai Weibull writes: > >> The documentation for org-agenda-insert-diary-make-new-entry says that >> it adds the entry as the last child, but it seems that it’s adding it >> as the first child instead. (My org-agenda-insert-diary-strategy is >

Re: [O] org-agenda-insert-diary-make-new-entry adds entry as first child?

2014-05-30 Thread Bastien
Hi Nikolai, Nikolai Weibull writes: > Wouldn’t it be better to fix the function? I’m thinking that you > probably want entries added later during the day to appear later in > the file, right? Personally, I prefer to have recent entries added at the top. > (I’m asking before I consider writing

Re: [O] [RFC] Org Minor Mode?

2014-05-30 Thread Thorsten Jolitz
Bastien writes: Hi Bastien, > Thorsten Jolitz writes: >> What will be copied to the temp-buffer? Only the comment-section at >> point? The subtree at point? The (outcommented) element at point? Won't >> some Org functions fail without the subtree/buffer context? What if text >> is inserted as

[O] Printable calendar?

2014-05-30 Thread Peter Davis
I'm trying to make a printable calendar of my bike commuting trips during the month of May. I don't need any fancy calendar functions, so I figured a simple table would do it. I created the ord file whose contents are below, but when I export to HTML, there are some quirks ... 1) Some of the d

Re: [O] [RFC] Org Minor Mode?

2014-05-30 Thread Bastien
Hi Thorsten, Thorsten Jolitz writes: > So maybe I should stop insisting on an org-minor-mode, because outshine > and outorg together already do the trick? Indeed! (Do you have a screencast demonstrating this? It's all a bit abstract when put in words.) > I just thought it would be better, fa

Re: [O] still seeing semi-regular lockups

2014-05-30 Thread Daimrod
Nicolas Goaziou writes: > Hello, > > Daimrod writes: > >> I've attached part of the traces (the whole traces are way too big) and >> the backtraces. > > Thanks for looking into this. However, you are running a compiled Org, > which renders backtraces less useful. Ok, I was wondering why the bac

Re: [O] [RFC] Org Minor Mode?

2014-05-30 Thread Thorsten Jolitz
Bastien writes: Hi Bastien, > Thorsten Jolitz writes: > >> So maybe I should stop insisting on an org-minor-mode, because outshine >> and outorg together already do the trick? > > Indeed! (Do you have a screencast demonstrating this? It's all a bit > abstract when put in words.) Not yet, but

Re: [O] Escaping again!

2014-05-30 Thread Rustom Mody
Hi Bastien On Fri, May 30, 2014 at 7:30 PM, Bastien wrote: > Hi Rustom, > > Rustom Mody writes: > > > - \(+\):: Int → Int → Int > > - \(-\):: Int → Int →Int > > - \(\leq\):: Int → Int → Bool > > - \(=\):: Int → Int → Bool > > 1. \(+\) :: Int → Int → Int > 2. \(-\) :: Int → Int →Int > 3. \(\leq\

Re: [O] org-agenda-insert-diary-make-new-entry adds entry as first child?

2014-05-30 Thread Nikolai Weibull
On Fri, May 30, 2014 at 4:04 PM, Bastien wrote: > Nikolai Weibull writes: > >> Wouldn’t it be better to fix the function? I’m thinking that you >> probably want entries added later during the day to appear later in >> the file, right? > > Personally, I prefer to have recent entries added at the

Re: [O] Escaping again!

2014-05-30 Thread Loyall, David
>[...] if one doesn't have systematic general escaping, there > will always be legitimate uses that will not be addressable. +1 As a lowly user, I have often wished for a hypothetical function called org-escapify-region. (And of course the reverse function.) I've never even looked for one, tho

Re: [O] Printable calendar?

2014-05-30 Thread Peter Davis
Ok, I was able to get the column rules I want. (See below) I'm still puzzled by the right/left alignment. In the org buffer the columns appear correctly aligned, but in HTML output, the left (Sun) and right (Sat) columns are right-aligned, while all the others are left-aligned. Clues? Thanks,

Re: [O] org-agenda-insert-diary-make-new-entry adds entry as first child?

2014-05-30 Thread Bastien
Hi Nikolai, Nikolai Weibull writes: > When set to 'top-level, the documentation mentions that it adds it to > the end of the file and testing confirms this. It thus seems more > consistent to always add entries towards the end of the file. Okay -- please go ahead with a patch if you have time.

Re: [O] Escaping again!

2014-05-30 Thread Bastien
Hi Rustom, Rustom Mody writes: > Anyways… if you are doing this just for me (!) very kind of you! Well, I will make a separate thread asking if other users would be fine with the change -- but glad you found the solution above. -- Bastien

[O] taskjuggler exporter ignores SCHEDULED attribute and requires a space between BLOCKER tasks

2014-05-30 Thread Anakreontas Mentis
The attached file demonstrates two bugs regarding the task juggler exporter. I load the ox-taskjuggler file and export with the key sequence C-c C-e J j 1. SCHEDULED date is not exported as a start attribute. 2. The BLOCKER attribute requires a space between two dependency tasks. For example, Task

Re: [O] getting directory of org installation in elisp

2014-05-30 Thread Rainer M Krug
Bastien writes: > Hi Rainer, Hi Bastien, > > Rainer M Krug writes: > >> And I want to load this R code into R, controlled from org. > > Ok, I understand now -- then yes, you can use the etc/ directory > for R code that will be loaded. But please anticipate that this > new etc/ content needs t

Re: [O] org-agenda-insert-diary-make-new-entry adds entry as first child?

2014-05-30 Thread Nikolai Weibull
On Fri, May 30, 2014 at 5:24 PM, Bastien wrote: > Hi Nikolai, > > Nikolai Weibull writes: > >> When set to 'top-level, the documentation mentions that it adds it to >> the end of the file and testing confirms this. It thus seems more >> consistent to always add entries towards the end of the fil

Re: [O] A version of `show-branches' that doesn't expand archivedsubtreess

2014-05-30 Thread GNRC
Say I've got the following file: --begin-- * Top ** Second *** Third ** Archive :ARCHIVE: *** Thing *** Another thing --end-- I'd like to be able to put the cursor at the beginning of that top heading and press (e.g.) C-u C-c C-k, and have it then fold as this: --begin-- * Top ** Second *** Third *

Re: [O] Escaping again!

2014-05-30 Thread Rustom Mody
David Loyall wrote: > >[...] if one doesn't have systematic general escaping, there > > will always be legitimate uses that will not be addressable. > +1 > > As a lowly user, I have often wished for a hypothetical function called > org-escapify-region. (And of > course the reverse function.) J

Re: [O] A version of `show-branches' that doesn't expand archivedsubtreess

2014-05-30 Thread Alexander Baier
On 2014-05-30 18:27 GNRC wrote: > Say I've got the following file: > --begin-- > * Top > ** Second > *** Third > ** Archive :ARCHIVE: > *** Thing > *** Another thing > --end-- > I'd like to be able to put the cursor at the beginning of that top > heading and press (e.g.) C-u C-c C-k, and have it th

Re: [O] Printable calendar?

2014-05-30 Thread Nick Dokos
Peter Davis writes: > Ok, I was able to get the column rules I want. (See below) > > I'm still puzzled by the right/left alignment. In the org buffer the > columns appear correctly aligned, but in HTML output, the left (Sun) > and right (Sat) columns are right-aligned, > while all the others are

Re: [O] Escaping again!

2014-05-30 Thread Nick Dokos
Rustom Mody writes: > David Loyall wrote: > >> >[...] if one doesn't have systematic general escaping, there >> > will always be legitimate uses that will not be addressable. > >> +1 >> >> As a lowly user, I have often wished for a hypothetical function called >> org-escapify-region. (And of >>

Re: [O] A version of `show-branches' that doesn't expandarchivedsubtreesss

2014-05-30 Thread GNRC
Alexander Baier writes: > On 2014-05-30 18:27 GNRC wrote: >> Say I've got the following file: >> --begin-- >> * Top >> ** Second >> *** Third >> ** Archive :ARCHIVE: >> *** Thing >> *** Another thing >> --end-- >> I'd like to be able to put the cursor at the beginning of that top >> heading and

Re: [O] Escaping again!

2014-05-30 Thread Bastien
Nick Dokos writes: > I usually just do > > # +FOO Well, I do # #+FOO so that uncommenting makes this right again. -- Bastien

Re: [O] taskjuggler exporter ignores SCHEDULED attribute and requires a space between BLOCKER tasks

2014-05-30 Thread Bastien
Hi Anakreontas, Anakreontas Mentis writes: > The attached file demonstrates two bugs regarding the task juggler > exporter. I load the ox-taskjuggler file and export with the key > sequence C-c C-e J j This is the same bug than the one you reported here, right? http://article.gmane.org/gmane

[O] Searching on gmane fails

2014-05-30 Thread Nick Dokos
I get a "Forbidden" error message, either from gnus or from the web. Anybody else seeing that? Nick