Re: [O] python sessions

2013-03-30 Thread Andreas Röhler
Am 27.03.2013 07:19, schrieb Andreas Röhler: Am 26.03.2013 22:41, schrieb Gary Oberbrunner: I did some further testing. With my patch, my real org-mode python file is now actually working. There were a few gotchas I didn't understand about session mode and python and matplotlib: 1. In

Re: [O] Export of superscripts in LaTeX (e.g. ^1)

2013-03-30 Thread Christian Moe
John Hendy writes: - ^1 this is a note about something #+end_src I'm copying/pasting from a previous Org document, so I know this used to work. Now, instead of a superscripted 1, it exports as 1 with a hat (accented one with tiny caret above the 1). Indeed, and not just in latex (tested

Re: [O] org-check.org confusion

2013-03-30 Thread Sebastien Vauban
Hi David, Loyall, David wrote: But how do I, also an Emacs newbie, know that? Well, lock files aren't peculiar to Emacs. Have a look: http://en.wikipedia.org/wiki/File_locking#Lock_files :) How do you remove the lock? Well, first close all your Emacs buffers (on any machine, anywhere)

Re: [O] [BUG] [ODT] Subtree export gives wrong footnote style

2013-03-30 Thread Christian Moe
Nicolas Goaziou writes: I understood your problem, but I needed to know how deep I had to change paragraph styles. Pardon the noise. Would you mind testing the following patch? I added two new styles. Feel free to correct them if needed. * The patch fixes the announced bug. Thank you! All

Re: [O] phone links...

2013-03-30 Thread Karl Voit
* Robert Goldman rpgold...@sift.info wrote: Since I keep my todo tasks in my org files, and some of them involve phone calls, I made a rudimentary handler for phone: links that I would like to contribute. It features a link declaration (in org-phone.el) and an ancillary script (currently only

[O] [PATCH] replace function name in org-bbdb

2013-03-30 Thread Rasmus
Hi, org-bbdb-anniversary was not working on my system before using bbdb3 from package.el (probably from MELPA...). This fixes this by renaming a function which has been changed upstream. I hope the patch is OK. –Rasmus -- Dung makes an excellent fertilizer From

Re: [O] Proposal for new/updated exporter tutorials on Worg

2013-03-30 Thread Bastien
Hi John, thanks for the great work so far! This is of huge help. John Hendy jw.he...@gmail.com writes: My thinking on this is that Org-8.0 is a significant step, however it would be nice to write documentation as it pertains to Org 8.0 and not constantly in reference to how it's different

Re: [O] org-capture equivalent of org-remember's % ?

2013-03-30 Thread Bastien
Hi Adam, Adam Spiers orgm...@adamspiers.org writes: I'm finally switching from org-remember to org-capture. M-x org-capture-import-remember-templates works fine except that it doesn't know how to translate %, which causes a jump to the target location immediately after storing the note. Is

Re: [O] [PATCH] replace function name in org-bbdb

2013-03-30 Thread Bastien
Hi Rasmus, Rasmus ras...@gmx.us writes: org-bbdb-anniversary was not working on my system before using bbdb3 from package.el (probably from MELPA...). This fixes this by renaming a function which has been changed upstream. Looks good. Is there any versioning we can check in order to know

Re: [O] Bug: Command org-toggle-pretty-entities does not display x_{i}^{j} correctly [7.9.4 (7.9.4-elpa @ /home/jae/.emacs.d/elpa/org-20130325/)]

2013-03-30 Thread Bastien
Jae Hee Lee dscha...@googlemail.com writes: Command org-toggle-pretty-entities does not display x_{i}^{j} correctly. When subscript and supersript _{i} and ^{j} are combined, _{i} is displayed correctly as subscript, but ^{j} is not displayed as superscript. Fixed, thanks for reporting this.

Re: [O] org-babel header documentation

2013-03-30 Thread Eric Schulte
Eric Abrahamsen e...@ericabrahamsen.net writes: Eric Schulte schulte.e...@gmail.com writes: Exists on Worg? Sorry for my obtuseness, but I'm not finding it. http://orgmode.org/worg/org-contrib/babel/header-args.html Great! I just saw mention of the wrap header argument in another thread

Re: [O] [PATCH] replace function name in org-bbdb

2013-03-30 Thread Rasmus
Bastien, org-bbdb-anniversary was not working on my system before using bbdb3 from package.el (probably from MELPA...). This fixes this by renaming a function which has been changed upstream. Looks good. Is there any versioning we can check in order to know what function's name will the

Re: [O] org-capture equivalent of org-remember's % ?

2013-03-30 Thread Adam Spiers
Bastien, You are amazing. That is all. :) Greetings from the awesome #emacsconf, Adam On 30 March 2013 14:44, Bastien b...@altern.org wrote: Hi Adam, Adam Spiers orgm...@adamspiers.org writes: I'm finally switching from org-remember to org-capture. M-x

[O] Export problem with source code blocks

2013-03-30 Thread Thomas S. Dye
Aloha all, The following code block executes fine in the Org buffer, and it exported cleanly on January 18th, but fails on export to LaTeX with a recent version of Org from the git repo. Here is the error message: executing Emacs-Lisp code block (plos-one-start)... Debugger entered--Lisp

Re: [O] Export problem with source code blocks

2013-03-30 Thread Eric Schulte
Hi Tom, The `first' function is provided by the cl package. I'd either replace `first' with `car' in your code block, or add (require 'cl) to your personal Emacs configuration. Cheers, t...@tsdye.com (Thomas S. Dye) writes: Aloha all, The following code block executes fine in the Org

Re: [O] org-babel header documentation

2013-03-30 Thread Charles Berry
Eric Schulte schulte.eric at gmail.com writes: Eric Abrahamsen eric at ericabrahamsen.net writes: [snip] Great! I just saw mention of the wrap header argument in another thread but that doesn't appear on this page, could we trouble you to add it? It would be *great* to have one

Re: [O] Export problem with source code blocks

2013-03-30 Thread Thomas S. Dye
Hi Eric, Yes, that fixes it. The cl package wasn't loaded for asynchronous export. The code executes in the buffer without an explicit (require 'cl). It's a mystery to me where it gets loaded in my setup, though. I don't do it explicitly--perhaps it tags along with some other package that I

Re: [O] [PATCH] Process hlines in imported tables

2013-03-30 Thread Rick Frankel
On Fri, Mar 29, 2013 at 06:01:21PM -0600, Eric Schulte wrote: Yes and no. :colnames works, but often the header comes from the processing, so they may not be static (I use a lot of call:s). Also, I've been having trouble using the output from raw results as input -- it seems that unless

Re: [O] [PATCH] Process hlines in imported tables

2013-03-30 Thread Eric Schulte
Rick Frankel r...@rickster.com writes: On Fri, Mar 29, 2013 at 06:01:21PM -0600, Eric Schulte wrote: Yes and no. :colnames works, but often the header comes from the processing, so they may not be static (I use a lot of call:s). Also, I've been having trouble using the output from raw

Re: [O] org-babel header documentation

2013-03-30 Thread Eric Abrahamsen
Charles Berry ccbe...@ucsd.edu writes: Eric Schulte schulte.eric at gmail.com writes: Eric Abrahamsen eric at ericabrahamsen.net writes: [snip] Great! I just saw mention of the wrap header argument in another thread but that doesn't appear on this page, could we trouble you to add