Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-17 Thread Thomas S. Dye
William Henney writes: >> Cool, I did not find this parameter yet. >> >> Is this undocumented? http://orgmode.org/org.html does not contain >> the string ":python:" and >> http://orgmode.org/org.html#Language_002dspecific-header-arguments >> also does not mention this parameter. >> >> > It is

Re: [O] Agenda filter by any tag seems to be broken

2016-05-17 Thread Eric Abrahamsen
Kaushal Modi writes: > On Mon, May 16, 2016 at 8:38 PM Eric Abrahamsen > wrote: > > Starting with emacs -Q, then adding the org-plus-contrib directory > to > load-path: > > Are you installing both the git master version and

Re: [O] Agenda filter by any tag seems to be broken

2016-05-17 Thread Kaushal Modi
On Mon, May 16, 2016 at 8:38 PM Eric Abrahamsen wrote: > Starting with emacs -Q, then adding the org-plus-contrib directory to > load-path: > Are you installing both the git master version and org-plus-contrib? I do not have org-plus-contrib in my load-path. The only

[O] Bug: XML entities in the ox-rss exporter

2016-05-17 Thread Arun Isaac
The ox-rss exporter does not replace characters (such as < , > , etc.) by their corresponding XML entities ( , , etc.) in the field of the generated XML. For example, the following org file, when exported, will produce invalid XML where the field still contains the disallowed "<" character.

[O] "global" variables in a babel document...

2016-05-17 Thread Allen S. Rout
org-version org "8.2.10" emacs-version "24.5.1" I'm seeing what seems to be some inconsistent treatment of :var header args. Or maybe I'm just missing something. I'm trying to follow:

Re: [O] Best way of including tikz into latex (pdf and beamer) export with preview?

2016-05-17 Thread briangpowell .
* ImageMagick is great for shrinking images and/or making thumbnails for previews and/or maybe the emacs elisp program "thumbs.el" will help: ;;; thumbs.el --- Thumbnails previewer for images files ;;; ;; Author: Jean-Philippe Theberge ... On Thu, May 12, 2016 at

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-17 Thread William Henney
Hi Karl On Tue, May 17, 2016 at 9:54 AM, Karl Voit wrote: > Hi William > > * William Henney wrote: > > > > On Sun, May 8, 2016 at 3:31 AM, Karl Voit wrote: > > > > Python2 and Python3 are two different languages. Unfortunately, >

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Charles C. Berry
On Tue, 17 May 2016, Thomas S. Dye wrote: Aloha Nicolas, Nicolas Goaziou writes: "Thomas S. Dye" writes: Nicolas Goaziou writes: Once the manual is up-to-date, we might consider moving it to doc/ in main distribution. IIRC, Bastien doesn't like this idea. Really? I

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Nick Dokos
"Thomas S. Dye" writes: > Aloha Nicolas, > > Nicolas Goaziou writes: > >> "Thomas S. Dye" writes: >> >>> Nicolas Goaziou writes: Once the manual is up-to-date, we might consider moving it to doc/ in main distribution. >>> >>> IIRC, Bastien doesn't

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Thomas S. Dye
Aloha Nicolas, Nicolas Goaziou writes: > "Thomas S. Dye" writes: > >> Nicolas Goaziou writes: >>> >>> Once the manual is up-to-date, we might consider moving it to doc/ in >>> main distribution. >> >> IIRC, Bastien doesn't like this idea. > > Really? I admit I would be

[O] bug#2409: bug#2409: 23.0.90; org-mode + viper-mode + ns make typing unresponsive

2016-05-17 Thread Michael Brand
Hi all I did some trials in lisp/org/org.el with - Emacs on OS X built with configure --with-ns, 24.5 and today's master - Org from today's master 1) Removing the line containing org-self-insert-command from (org-remap org-mode-map 'self-insert-command

[O] org-tag-alist - fullscreen problem when adding tags

2016-05-17 Thread Peter Sterner
Hi, I'm trying out org-mode's tagging-system. In my init.el file I added (setq org-tag-alist '((:startgroup . nil) ("@work" . ?w) ("@home" . ?h) ("@tennisclub" . ?t) (:endgroup . nil) ("laptop" . ?l) ("pc" .

Re: [O] speed keys for plain lists?

2016-05-17 Thread Bill White
On Mon May 16 2016 at 13:17, Grant Rettke wrote: > On Thu, May 12, 2016 at 12:12 PM, Bill White wrote: >> But I'm open to suggestions & discussion - now's the time to play around >> with formats to find the right balance between playing with words

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Nicolas Goaziou
"Thomas S. Dye" writes: > Nicolas Goaziou writes: >> >> Once the manual is up-to-date, we might consider moving it to doc/ in >> main distribution. > > IIRC, Bastien doesn't like this idea. Really? I admit I would be surprised. Do you recall why so, or do you have any reference

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-17 Thread John Kitchin
You can hack this to work: #+BEGIN_SRC emacs-lisp (defun org-babel-execute:python2 (body params) (let ((org-babel-python-command "/Users/jkitchin/Library/Enthought/Canopy_64bit/User/bin/python2")) (org-babel-execute:python body params))) #+END_SRC #+BEGIN_SRC python2 print 'Hello'

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-17 Thread Karl Voit
Hi William * William Henney wrote: > > On Sun, May 8, 2016 at 3:31 AM, Karl Voit wrote: > > Python2 and Python3 are two different languages. Unfortunately, >> Org-mode only uses ~#+BEGIN_SRC python~ for both and uses >> python-shell-interpreter to

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Thomas S. Dye
Aloha Nicolas, Nicolas Goaziou writes: > > Once the manual is up-to-date, we might consider moving it to doc/ in > main distribution. IIRC, Bastien doesn't like this idea. All the best, Tom -- Thomas S. Dye http://www.tsdye.com

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-17 Thread William Henney
Hi Karl On Sun, May 8, 2016 at 3:31 AM, Karl Voit wrote: Python2 and Python3 are two different languages. Unfortunately, > Org-mode only uses ~#+BEGIN_SRC python~ for both and uses > python-shell-interpreter to choose/switch the compiler. > > Shouldn't Org-mode introduce

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Phillip Lord
Eric Abrahamsen writes: > "Thomas S. Dye" writes: > >> Aloha Eric, >> >> Eric Abrahamsen writes: >> >>> "Thomas S. Dye" writes: >>> Rasmus writes: > Once upon a time Tom ported the Org manual. It's on his github, probably

Re: [O] Tags management strategies

2016-05-17 Thread Karl Voit
* Martin Leduc wrote: > Hi ! Hi! > Tags are a very useful feature to filter information in org-mode. Not only in org-mode ;-)[1][2] > After few years of developing a system to organize my life with > org-mode, I realize that tags can become rather difficult to deal > with

Re: [O] speed keys for plain lists?

2016-05-17 Thread Karl Voit
* Grant Rettke wrote: > On Thu, May 12, 2016 at 12:12 PM, Bill White wrote: >> But I'm open to suggestions & discussion - now's the time to play around >> with formats to find the right balance between playing with words and >> slogging through

Re: [O] Best way of including tikz into latex (pdf and beamer) export with preview?

2016-05-17 Thread Rasmus
Rainer M Krug writes: > What is the best way of including tikz into org for latex export (beamer > and pdf), I typically create tikz images with R tikzDevice or matplotlib. In this case, it’s useful to refer to the generated file: file:link/to/pix.tikz > and to have

[O] Best way of including tikz into latex (pdf and beamer) export with preview?

2016-05-17 Thread Rainer M Krug
Hi What is the best way of including tikz into org for latex export (beamer and pdf), and to have preview as well? Thanks, Rainer -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology Stellenbosch

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Eric Abrahamsen
Rasmus writes: > Eric Abrahamsen writes: > >> What might be nice to have in contrib is an exporter derived from the >> current texinfo exporter, but specifically set up for Gnu project >> manuals: so it does the copyright header, and index macros, and

Re: [O] template for writing Emacs manuals in Org

2016-05-17 Thread Rasmus
Eric Abrahamsen writes: > What might be nice to have in contrib is an exporter derived from the > current texinfo exporter, but specifically set up for Gnu project > manuals: so it does the copyright header, and index macros, and maybe > even the proper DIR integration