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

2011-09-05 Thread Stefan Reichör
Tassilo Horn tass...@member.fsf.org writes: Stefan Reichör ste...@xsteve.at writes: +(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

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

2011-09-05 Thread Tassilo Horn
Stefan Reichör ste...@xsteve.at 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'

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

2011-09-05 Thread Giovanni Ridolfi
Kelly Dean kellydea...@yahoo.com 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,

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 giovanni.rido...@yahoo.it 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

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 schulte.e...@gmail.com 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

[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

[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] 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

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 the

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

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

2011-09-05 Thread Thomas S. Dye
Christophe Pouzat christophe.pou...@parisdescartes.fr 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:

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

[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

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

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

2011-09-05 Thread Eric Schulte
Martyn Jago martyn.j...@btinternet.com 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 )} ^