Re: [O] feature request: exporting TBLFM line, formatted or not

2016-04-11 Thread Eric S Fraga
On Monday, 11 Apr 2016 at 13:22, Nick Dokos wrote: > Bastien's table formulas tutorial does it this way: > > * Column formulas and field formulas > > Ok, so now we have this table: > > : | Student | Maths | Physics | Mean | > : |--+---+-+--| > : | Bertrand |13 |

Re: [O] feature request: exporting TBLFM line, formatted or not

2016-04-11 Thread Eric S Fraga
Okay, a start on this using hooks: #+begin_src emacs-lisp (defun esf/process-table-tblfm (backend) "Process the TBLFM line to make it available for export as a verbatim block" (while (re-search-forward "^ *#\\+TBLFM:" (point-max) t) (replace-match ":") (let ((start (point))

Re: [O] [OT] A new web browser‽

2016-04-11 Thread Eric Abrahamsen
Ramon Diaz-Uriarte writes: > On Mon, 11-04-2016, at 10:12, Marcin Borkowski wrote: >> On 2016-04-11, at 06:37, Adam Porter wrote: >> >>> Eric Abrahamsen ericabrahamsen.net> writes: >>> I had no idea Firefox did this... >>> >>>

[O] feature request: exporting TBLFM line, formatted or not

2016-04-11 Thread Eric S Fraga
Hello, For pedagogical reasons, it would be nice to be able, in some case, to export a table (to LaTeX typically) with annotations (i.e. column and row labels) and, more importantly, the equations used to populate the table. Is this possible somehow? Obviously, for the row/column labelling, I

Re: [O] [OT] A new web browser‽

2016-04-11 Thread Peter Davis
On Sat, Apr 9, 2016, at 02:09 PM, Marcin Borkowski wrote: > > eww ;-) > I never played with eww before. It looks interesting, but seriously, is there any way to cancel a large download? My emacs is completely locked up now downloading an image from a site. I assume it's all customized with

Re: [O] [PATCH] expose nrepl's timeout setting in ob-clojure.el

2016-04-11 Thread Frederick Giasson
Hi Nicolas, Some keywords are missing: :version "25.1" :package-version '(Org . "9.0") and perhaps :safe #'wholenump Ok good, added. (defcustom org-babel-clojure-backend (cond ((featurep 'cider) 'cider) (t 'slime)) @@ -94,8 +100,9 @@ (let ((result-params

Re: [O] Generate custom org-agenda

2016-04-11 Thread Karl Voit
* Adam Porter wrote: > I think you just need this: > > (org-agenda ARG ORG-KEYS RESTRICTION) You're right: I was not able to read the help of org-agenda by myself. This is, how it works: (org-agenda nil "n") Thanks! --

Re: [O] feature request: exporting TBLFM line, formatted or not

2016-04-11 Thread Nick Dokos
Eric S Fraga writes: > Hello, > > For pedagogical reasons, it would be nice to be able, in some case, to > export a table (to LaTeX typically) with annotations (i.e. column and > row labels) and, more importantly, the equations used to populate the > table. Is this possible

[O] lisp babel

2016-04-11 Thread Colin Baxter
Common Lisp in babel steems to have stopped working. With slime running and (lisp . t) in my emacs init, I now get the error org-babel-execute:lisp: Cannot open load file: No such file or directory, sly when I C-cc #+name: hello-world #+header: :var message="Hello World!" :exports both

Re: [O] OT: two interesting articles about (non-)reproducible research

2016-04-11 Thread Nick Dokos
Rafael Laboissière writes: > * Nick Dokos [2016-04-08 14:54]: > >> [off-topic: not even a gratuitous org reference. My only excuse is >> the general interest of list members on reproducible research >> (org-babel! OK, that's the requisite gratuitous

Re: [O] lisp babel

2016-04-11 Thread John Kitchin
Maybe a new default has been setup? I recall a recent discussion about sly. Maybe try setting this to your lisp? (setq inferior-lisp-program "/usr/local/bin/sbcl") I am not sure if you also need this: (require 'slime) (slime-setup) (slime) I only have a little experience with other lisps.

Re: [O] lisp babel

2016-04-11 Thread Nick Dokos
Colin Baxter writes: > Common Lisp in babel steems to have stopped working. With slime > running and (lisp . t) in my emacs init, I now get the error > > org-babel-execute:lisp: Cannot open load file: No such file or > directory, sly > > when I C-cc > > #+name: hello-world

Re: [O] Exporting a new markup

2016-04-11 Thread Eric S Fraga
On Saturday, 9 Apr 2016 at 08:22, fredtant...@free.fr wrote: [...] > My setup works great with org versions 8.2.10, but with 8.3.1 (to > 8.3.4), > it doesn't do the job I have tried to edebug, and looked at commits, > but > I can't pinpoint what's the problem. The Release notes doesn't seem

Re: [O] [OT] A new web browser‽

2016-04-11 Thread Ramon Diaz-Uriarte
On Mon, 11-04-2016, at 10:12, Marcin Borkowski wrote: > On 2016-04-11, at 06:37, Adam Porter wrote: > >> Eric Abrahamsen ericabrahamsen.net> writes: >> >>> I had no idea Firefox did this... >> >> ...You're not the only one... > > Me too, thanks for that

Re: [O] the role of org-odt-preferred-output-format etc

2016-04-11 Thread Rasmus
Ken Mankoff writes: > It fails if LibreOffice is running, but works if it is not running. Did you try unoconv? Maybe it's more robust... http://dag.wieers.com/home-made/unoconv Rasmus -- Bang bang

Re: [O] [OT] A new web browser‽

2016-04-11 Thread Marcin Borkowski
On 2016-04-11, at 06:37, Adam Porter wrote: > Eric Abrahamsen ericabrahamsen.net> writes: > >> I had no idea Firefox did this... > > ...You're not the only one... Me too, thanks for that tip!!! Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski

Re: [O] [OT] Emacs on Android

2016-04-11 Thread Ramon Diaz-Uriarte
Thanks! On Sun, 10-04-2016, at 17:15, Scott Randby wrote: > Since there have been discussions on this list about using Org on an > Android phone, I thought some might be interested in this: > http://endlessparentheses.com/running-emacs-on-android.html > > Scott Randby > >

Re: [O] lisp babel

2016-04-11 Thread Nick Dokos
Nick Dokos writes: > Colin Baxter writes: > >> Common Lisp in babel steems to have stopped working. With slime >> running and (lisp . t) in my emacs init, I now get the error >> >> org-babel-execute:lisp: Cannot open load file: No such file or >> directory,

Re: [O] Bug: typo in [[info:org#Tag hierarchy]] [8.3.4 (8.3.4-34-gacfd41-elpa @ /home/jorge/.emacs.d/elpa/org-20160411/)]

2016-04-11 Thread Nick Dokos
> `P@2014_OrgTags'. > > However, the `Project' group tag regex is `P.+', while the first > sentence in the final quoted paragraph cites the regex `P@.+' (with an > `@'). > > Emacs : GNU Emacs 25.0.92.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.18.6) > of 2016-03-05 > Packag

[O] Bug: typo in [[info:org#Tag hierarchy]] [8.3.4 (8.3.4-34-gacfd41-elpa @ /home/jorge/.emacs.d/elpa/org-20160411/)]

2016-04-11 Thread Jorge
the final quoted paragraph cites the regex `P@.+' (with an `@'). Emacs : GNU Emacs 25.0.92.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.18.6) of 2016-03-05 Package: Org-mode version 8.3.4 (8.3.4-34-gacfd41-elpa @ /home/jorge/.emacs.d/elpa/org-20160411/) I run Ubuntu 15.10 with PPAs gnome3-team/gnome3 and gnome3-t

Re: [O] OT: two interesting articles about (non-)reproducible research

2016-04-11 Thread Christian Moe
Rafael Laboissière writes: > * Nick Dokos [2016-04-08 14:54]: (...) >> 538.com has published a couple of interesting articles on some poli-sci >> research: >> >> >>

Re: [O] OT: two interesting articles about (non-)reproducible research

2016-04-11 Thread Rafael Laboissière
* Nick Dokos [2016-04-08 14:54]: [off-topic: not even a gratuitous org reference. My only excuse is the general interest of list members on reproducible research (org-babel! OK, that's the requisite gratuitous reference: I feel better now :-) )] 538.com has published a

Re: [O] [OT] A new web browser‽

2016-04-11 Thread Adam Porter
Eric Abrahamsen ericabrahamsen.net> writes: > I had no idea Firefox did this... ...You're not the only one...

Re: [O] Generate custom org-agenda

2016-04-11 Thread Adam Porter
I think you just need this: (org-agenda ARG ORG-KEYS RESTRICTION)