Re: [O] [PATCH] Fixes to inline src block execution

2011-09-05 Thread Eric Schulte
Martyn Jago writes: > Hi > > Some fixes to inline src block execution via org-ctrl-c-ctrl-c > where point is beyond white-space in the inline src block body... > > * Start Pomodoro > #src_emacs-lisp[:results silent]{( org-timer-set-timer 25 )} > ^ > ,---

Re: [O] [calfw] Better use of space

2011-09-05 Thread SAKURAI Masashi
Hi Rasmus, I implemented simple multi line breaking. Here is a screenshot. http://twitpic.com/6gpgz7/full I pushed the multiline branch on the github. https://github.com/kiwanami/emacs-calfw/tree/multiline (including some minor updating) I have studied some line breaking algorithms. - Word wrap

[O] [PATCH] Fixes to inline src block execution

2011-09-05 Thread Martyn Jago
Hi Some fixes to inline src block execution via org-ctrl-c-ctrl-c where point is beyond white-space in the inline src block body... * Start Pomodoro #src_emacs-lisp[:results silent]{( org-timer-set-timer 25 )} ^ ,' | C-c C-c execution | was brok

Re: [O] wrong python version when using :session

2011-09-05 Thread Myles English
Eric, >> On Mon, 05 Sep 2011 11:35:37 -0600, Eric Schulte said: > Hi Myles, The `org-babel-python-command' variable is used to decide > which python executable is used to run non-interactive python code. > Session evaluation is performed using the interactive python mode > defined in the

Re: [O] A manuscript on "reproducible research" introducing org-mode

2011-09-05 Thread Thomas S. Dye
Christophe Pouzat writes: > Dear all, > > M. Delescluse, R. Franconville, S. Joucla, T. Lieury and myself (C. > Pouzat) have just put a manuscript entitled: "Making > neurophysiological data analysis reproducible. Why and how?" on a > pre-print server: http://hal.archives-ouvertes.fr/hal-00591455

Re: [O] wrong python version when using :session

2011-09-05 Thread Eric Schulte
Hi Myles, The `org-babel-python-command' variable is used to decide which python executable is used to run non-interactive python code. Session evaluation is performed using the interactive python mode defined in the `org-babel-python-mode' variable. , | org-babel-python-mode is a variable d

Re: [O] [babel] Collection of code block snippets

2011-09-05 Thread Eric Schulte
Hi Rainer, > Just as a sideline: would it be possible, to use this file to test babel (on > a high level)?, i.e. collect all results and compare them with previous sets > of results? > Two problems I see with running these examples in a single large block 1. I'm not sure how to collect all of th

[O] wrong python version when using :session

2011-09-05 Thread Myles English
Hello, When a python source block has a :session header argument, the python version selected does not appear to respect the value of the variable org-babel-python-command. Starting emacs with this in the init file (.emacs): (require 'org-install) (org-babel-do-load-languages 'org-babel-load-

[O] A manuscript on "reproducible research" introducing org-mode

2011-09-05 Thread Christophe Pouzat
Dear all, M. Delescluse, R. Franconville, S. Joucla, T. Lieury and myself (C. Pouzat) have just put a manuscript entitled: "Making neurophysiological data analysis reproducible. Why and how?" on a pre-print server: http://hal.archives-ouvertes.fr/hal-00591455/fr/ Although the paper has been

[O] [bug] curious interaction between beamer and odd levels only

2011-09-05 Thread Eric S Fraga
Hello, I've not really tracked down where the problem is but I thought I'd mention something strange that happened to me today. I am preparing my lecture slides for the coming term so I went back to my org file, which uses beamer, last edited in March. I started working on the slides and found t

Re: [O] [babel] Collection of code block snippets

2011-09-05 Thread Rainer M Krug
On Sun, Sep 4, 2011 at 6:35 PM, Eric Schulte wrote: > Hi, > > As I fix bugs and address concerns raised on the mailing list I often > write small snippets of Org-mode text to demonstrate features and > exercise specific behaviors. I've been compiling these examples into a > single massive scraps

Re: [O] Outline and org-mode don't insert text into folded sections logically

2011-09-05 Thread suvayu ali
Hi, On Mon, Sep 5, 2011 at 9:52 AM, Giovanni Ridolfi wrote: > Hi, Kelly, > > I can understand that this seems to be illogical from your point of > view, but  folded subtrees are meant for a faster and cleaner > organization of the text, not for editing. > > Once you've decided to edit a subtree y

Re: [O] Outline and org-mode don't insert text into folded sections logically

2011-09-05 Thread Giovanni Ridolfi
Kelly Dean writes: > Using Emacs 23.2.1, make a buffer in outline mode and enter this: > *1A > Body of 1A > **2A > Body of 2A > ***3A > Body of 3A > Org-mode exhibits the same problem which outline mode does. Put spaces > after the asterisks as org-mode requires, switch to org-mode, and > cycle

Re: [O] [PATCH]: New Add defun org-mode-or-derived-mode-p

2011-09-05 Thread Tassilo Horn
Stefan Reichör writes: Hi Stefan, >>> +(defun org-mode-or-derived-mode-p () >>> + "Check if the current buffer is in Org-mode or a derived mode." >>> + (if (derived-mode-p 'org-mode) t nil)) >> >> The if is superfluous. And instead of a new function, I'd rather add an >> optional `derived' pa