Re: [O] [RFC/PATCH] Fixes for org-timer

2014-12-13 Thread Achim Gratz
Nicolas Goaziou writes: Applied (with a minor change in `org-timer--get-timer-title'). Thank you. The new tests don't work on Emacs23, mainly due to the use of cl-letf. Regards, Achim. -- +[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+ Waldorf MIDI Implementation

Re: [O] Emulating list functionality from traditional GUI editors

2014-12-13 Thread Calvin Young
No problem, I've gone ahead and packaged my changes here: https://github.com/calvinwyoung/org-autolist I'll also submit this to melpa to make it easier to install. I'd love hear how other Org'ers on this list feel about it. If folks find it useful, I'd be happy to publish it on Worg as well.

Re: [O] Evaluating R source code line by line

2014-12-13 Thread Daniele Pizzolli
Hello, Vikas Rawal writes: I have an R source code blocks called with the :results value” option. I evaluate the code with C-c. When I do that, in my R session buffer, I get to see several + + + until the final value is obtained, and then the final value is shown, and inserted in my Org

Re: [O] demoting a heading inserts spaces in column-0 text

2014-12-13 Thread Daniel Clemente
El Fri, 12 Dec 2014 19:25:25 +0100 Nicolas Goaziou va escriure: Of course everything's text, but if there's no distinction between drawers/headers and text, that's the problem. Those headers are metadata written and managed by org and must follow some rules, This is incorrect.

Re: [O] demoting a heading inserts spaces in column-0 text

2014-12-13 Thread Nicolas Goaziou
Daniel Clemente n142...@gmail.com writes: But these are technical details, not relevant to a non-programmer. Which basically means nothing, because everything ultimately boils down to technical details. What a new user sees with the default settings as of today is: Aren't you confusing

Re: [O] doc patch: move footnote in external links

2014-12-13 Thread Alan Schmitt
Hello, On 2014-12-12 18:29, Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Alan Schmitt alan.schm...@polytechnique.org writes: I think the footnote in http://orgmode.org/manual/External-links.html#fn-1 is in the wrong place, it should be on the next line. Here is a patch to fix

Re: [O] can I refile or archive from the agenda without rebuilding?

2014-12-13 Thread Alan Schmitt
On 2014-12-12 12:01, Kyle Meyer k...@kyleam.com writes: Alan Schmitt alan.schm...@polytechnique.org wrote: My agenda is fairly big, and it takes a few minutes to generate it. Wow. I meant seconds (about 20 seconds). But is feels like minutes ;) When I need to refile many items to different

Re: [O] /emsp in clock tables

2014-12-13 Thread Joost Helberg
Nicolas et al, I'm sure the choice for \emsp was a valid one. \emsp is not the bug, it triggers a bug in the alignment routine which screws up somehow. If alignment takes place after displaying the blanks, things turn out OK. I tried to install a custom formatter (Cutomizable: Org Clock

Re: [O] Evaluating R source code line by line

2014-12-13 Thread Vikas Rawal
On 13-Dec-2014, at 3:42 pm, Daniele Pizzolli d...@toel.it wrote: Look at: http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-R.html Use ESS to step through evaluation line-by-line Use C-c ' to visit the edit buffer for your code block Use ess-eval-line-and-step to evaluate

Re: [O] demoting a heading inserts spaces in column-0 text

2014-12-13 Thread Daniel Clemente
El Sat, 13 Dec 2014 12:33:16 +0100 Nicolas Goaziou va escriure: But these are technical details, not relevant to a non-programmer. Which basically means nothing, because everything ultimately boils down to technical details. That's always true. But UIs still need to be simple. No

Re: [O] demoting a heading inserts spaces in column-0 text

2014-12-13 Thread Nicolas Goaziou
Daniel Clemente n142...@gmail.com writes: No need to teach the user the differences of a :CLOCK: vs a :PROPERTIES: or drawer vs. metadata. The difference is important, e.g., wrt export. Users who type can do a simpler distinction: 1. things you type yourself 2. things that

Re: [O] doc patch: move footnote in external links

2014-12-13 Thread Nicolas Goaziou
Alan Schmitt alan.schm...@polytechnique.org writes: So you are correct the footnote applies to the text search. However, I think is also applies to the headline search (as suggested by the second line of the snippet). In other words, if I search for file:projects.org::*Headline with

Re: [O] Patch to implement sorting Org tables by IP address

2014-12-13 Thread Jon Snader
On Dec 12, 2014, at 5:58 PM, Nicolas Goaziou m...@nicolasgoaziou.fr wrote: However I think the feature implemented is too specific. Instead, `org-do-sort' could provide a way to pass an arbitrary predicate, like ?f and ?F in `org-sort-list'. WDYT? Actually, when I originally looked at

Re: [O] [PATCH] Selectively archive by timestamp

2014-12-13 Thread Nicolas Goaziou
Hello, Toby Cubitt ts...@cantab.net writes: Did this patch get lost in the noise? Probably. It's a fairly straightforward one, which simply adds a useful new archiving function without touching much else. Archiving by date seems such an obvious omission from the existing archiving

Re: [O] Patch to implement sorting Org tables by IP address

2014-12-13 Thread Nicolas Goaziou
Jon Snader jsna...@mac.com writes: My idea for making it table driven is to add an alist whose elements look something like (prompt-char prompt extraction-function compare-function reverse-compare-function with-case-extraction-function) The alist would be initialized with the built-in

Re: [O] Patch to implement sorting Org tables by IP address

2014-12-13 Thread Jon Snader
On Dec 13, 2014, at 9:29 AM, Nicolas Goaziou m...@nicolasgoaziou.fr wrote: I think my proposal is simpler: add ?f and ?F to built-in options, in which case user is prompted for a custom sorting function (in your case, `org-ip-lessp'). It is also more consistent with `org-sort-list’. The

Re: [O] Patch to implement sorting Org tables by IP address

2014-12-13 Thread Nicolas Goaziou
Jon Snader jsna...@mac.com writes: The problem with that solution is that the user has to answer the additional prompts every time he calls org-table-sort-lines with a custom sort. Imagine, for example, a networking researcher who often builds tables that he or she wants to sort by IP address

Re: [O] [RFC/PATCH] Fixes for org-timer

2014-12-13 Thread Nicolas Goaziou
Hello, Achim Gratz strom...@nexgo.de writes: The new tests don't work on Emacs23, mainly due to the use of cl-letf. I fixed the `cl-letf' issue, thank you. Is there anything else to do? Regards, -- Nicolas Goaziou

Re: [O] [RFC/PATCH] Fixes for org-timer

2014-12-13 Thread Achim Gratz
Nicolas Goaziou writes: The new tests don't work on Emacs23, mainly due to the use of cl-letf. I fixed the `cl-letf' issue, thank you. Is there anything else to do? Not with respect to this change, the tests are now all passing. However, Emacs master seems to have changed the signature for

Re: [O] table formula help...

2014-12-13 Thread Michael Brand
Hi Thierry On Fri, Dec 12, 2014 at 10:04 PM, Thierry Banel tbanelweb...@free.fr wrote: Le 12/12/2014 18:15, Michael Brand a écrit : Seems doable. Would tie the spreadsheet and orgaggregate seamlessly. Very appealing! Are you willing to help me implement those steps? Where necessary I try

Re: [O] Patch to implement sorting Org tables by IP address

2014-12-13 Thread Jon Snader
On Dec 13, 2014, at 11:01 AM, Nicolas Goaziou m...@nicolasgoaziou.fr wrote: `org-do-sort' is an internal function, which isn't meant to be used publicly. It really should be named `org-table--do-sort' and be moved within org-table.el. OTOH, we can extend `org-table-sort-lines' to allow

Re: [O] Evaluating R source code line by line

2014-12-13 Thread Aaron Ecay
Hi Vikas, 2014ko abenudak 13an, Vikas Rawal-ek idatzi zuen: On 13-Dec-2014, at 3:42 pm, Daniele Pizzolli d...@toel.it wrote: Look at: http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-R.html Use ESS to step through evaluation line-by-line Use C-c ' to visit the edit buffer for

[O] Bug: Markdown export fails linking footnotes correctly [8.2.10 (8.2.10-elpa @ /home/wasa/.emacs.d/elpa/org-20141020/)]

2014-12-13 Thread Vasilij Schneidermann
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

[O] Bug: Markdown export fails linking footnotes correctly [8.2.10 (8.2.10-elpa @ /home/wasa/.emacs.d/elpa/org-20141020/)]

2014-12-13 Thread webspider
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

[O] Bug: Markdown export fails linking footnotes correctly [8.2.10 (8.2.10-elpa @ /home/wasa/.emacs.d/elpa/org-20141020/)]

2014-12-13 Thread Vasilij Schneidermann
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

[O] LaTeX fragments to deal with character {

2014-12-13 Thread kevin.lemorzadec
Hi, I am trying to do a latex loop in org mode. When I use the latex syntax directly, the character { are exported as\{ as in case 1 below. If I use ‘\(...\)’ it does keep the { characters but the ‘\(...\)' stays in the .tex created (case 2 below) giving me an error when I try to generate the pdf.

Re: [O] [bug, patch, ox] INCLUDE and footnotes

2014-12-13 Thread Rasmus
Hi, Attached is a patch that enables footnotes in INCLUDEd documents when using :lines and friends. It stores the footnotes in a hash-table initialized in `org-export-expand-include-keyword' and updated via `org-export--prepare-file-contents'. The footnotes are then inserted when all include

Re: [O] LaTeX fragments to deal with character {

2014-12-13 Thread Rasmus
Hi Kevin, Org-mode version 6.33x O-o-okay. The current stable version is 8.2 and the export framework changed in v8. If possible, you should upgrade. kevin.lemorzadec kevin.lemorza...@mun.ca writes: I am trying to do a latex loop in org mode. When I use the latex syntax directly, the

Re: [O] Bug: Markdown export fails linking footnotes correctly [8.2.10 (8.2.10-elpa @ /home/wasa/.emacs.d/elpa/org-20141020/)]

2014-12-13 Thread Nicolas Goaziou
Hello, Vasilij Schneidermann v.schneiderm...@gmail.com writes: I'm using the footnote facility in an org document expecting an exported Markdown document to provide hyperlinks between the reference and the footnote. Here's some sample Markdown text: Lots of text[fn:1]. Even more text

Re: [O] Patch to implement sorting Org tables by IP address

2014-12-13 Thread Nicolas Goaziou
Jon Snader jsna...@mac.com writes: The extraction function varies with the type of sort so it has to be specified one way or the other. I don't think it needs to vary. As I suggested already, we can use cells contents (in the appropriate column) as trimmed strings. So, it could be built-in.

Re: [O] Patch to implement sorting Org tables by IP address

2014-12-13 Thread Jon Snader
On Dec 13, 2014, at 5:07 PM, Nicolas Goaziou m...@nicolasgoaziou.fr wrote: I don't think it needs to vary. As I suggested already, we can use cells contents (in the appropriate column) as trimmed strings. So, it could be built-in. Do you see any downside to it? Well, I’m just going by

[O] Tangling does not detect src blocks with capital BEGIN_SRC/END_SRC when case-fold-search nil

2014-12-13 Thread Christopher Genovese
When tangling a file whose source code blocks have capitalized BEGIN_SRC and END_SRC (as produced by s-TAB for instance), org-babel-tangle will not detect the source code blocks when case-fold-search is nil. The variable org-babel-src-block-regexp has the begin_src and end_src in lower case, and

[O] [PATCH] small fix for org-log-beginning

2014-12-13 Thread Eric Abrahamsen
I'm still slowly chewing on making more use of log items, and found a small bug in org-log-beginning. It contains a partial re-implementation of something we already have a function for: org-log-into-drawer. It was causing me occasional bugs, but I only just looked into it. I'm not sure the